root@minikube:/var/lib/containerd# ctr i pull docker.io/library/busybox:latest
docker.io/library/busybox:latest: resolved |++++++++++++++++++++++++++++++++++++++|
index-sha256:a8cf7ff6367c2afa2a90acd081b484cbded349a7076e7bdf37a05279f276bc12: done |++++++++++++++++++++++++++++++++++++++|
manifest-sha256:a2490cec4484ee6c1068ba3a05f89934010c85242f736280b35343483b2264b6: done |++++++++++++++++++++++++++++++++++++++|
layer-sha256:e2334dd9fee4b77e48a8f2d793904118a3acf26f1f2e72a3d79c6cae993e07f0: done |++++++++++++++++++++++++++++++++++++++|
config-sha256:be5888e67be651f1fbb59006f0fd791b44ed3fceaa6323ab4e37d5928874345a: done |++++++++++++++++++++++++++++++++++++++|
elapsed: 2.6 s total: 569.0 (218.8 KiB/s)
unpacking linux/amd64 sha256:a8cf7ff6367c2afa2a90acd081b484cbded349a7076e7bdf37a05279f276bc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# simple proxy for oras artifacts | |
import http.server | |
import oras.client | |
import argparse | |
from urllib.parse import urlparse | |
import base64 | |
from collections import namedtuple |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This template requires Lima v0.7.0 or later. | |
arch: "x86_64" | |
images: | |
- location: "http://cloud-images-archive.ubuntu.com/releases/vivid/release-20160203/ubuntu-15.04-server-cloudimg-amd64-disk1.img" | |
arch: "x86_64" | |
digest: "sha256:a348500d04de3352af3944e9dae99a08d60091221e1370941b93bd7a27971568" | |
firmware: | |
legacyBIOS: true | |
mounts: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.vagrant |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Wrapper for using kubectl as "ssh", for rsync and git | |
# - setting either $RSYNC_RSH or $GIT_SSH env variables | |
namespace='' | |
pod=$1 | |
shift | |
# POD[@NAMESPACE]:DEST | |
if [ "X$pod" = "X-l" ]; then | |
pod=$1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# convert go test report JSON into chrome tracing JSON | |
import sys | |
import json | |
import datetime | |
import dateutil.parser | |
def datetime_parser(json_dict): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# pstree | |
systemd-+-dbus-daemon | |
|-dockerd-+-containerd-+-7*[containerd-shim-+-pause] | |
| | | `-9*[{containerd-shim}]] | |
| | |-containerd-shim-+-etcd---10*[{etcd}] | |
| | | `-9*[{containerd-shim}] | |
| | |-containerd-shim-+-kube-apiserver---9*[{kube-apiserver}] | |
| | | `-9*[{containerd-shim}] | |
| | |-containerd-shim-+-kube-scheduler---8*[{kube-scheduler}] | |
| | | `-9*[{containerd-shim}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
command-line-arguments | |
├ flag | |
├ fmt | |
├ os | |
├ github.com/golang/glog | |
├ bufio | |
├ bytes | |
├ errors | |
├ flag | |
├ fmt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23388 github.com/containers/libpod/cmd/podman/cliconfig | |
12308 k8s.io/api/core/v1 | |
4670 github.com/containers/libpod/libpod | |
3833 net/http | |
3436 runtime | |
3081 k8s.io/apimachinery/pkg/apis/meta/v1 | |
2829 github.com/gogo/protobuf/proto | |
2554 github.com/vishvananda/netlink | |
2545 github.com/openshift/api/config/v1 | |
2473 github.com/containers/libpod/cmd/podman/varlink |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
k8s.io/minikube/cmd/minikube | |
├ bytes | |
├ fmt | |
├ log | |
├ os | |
├ strconv | |
├ github.com/golang/glog | |
├ bufio | |
├ bytes | |
├ errors |
NewerOlder