Created
March 9, 2020 20:44
-
-
Save davrodpin/c7885d7cc4498f2475b9ccabe91e90f7 to your computer and use it in GitHub Desktop.
Not able to create 10 single-node k8s cluster with kind
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
for i in $(seq 1 10);do kind create cluster --name kind-${i} | tee -a kind.log; done | |
Creating cluster "kind-1" ... | |
✓ Ensuring node image (kindest/node:v1.17.0) 🖼 | |
✓ Preparing nodes 📦 | |
✓ Writing configuration 📜 | |
✓ Starting control-plane 🕹️ | |
✓ Installing CNI 🔌 | |
✓ Installing StorageClass 💾 | |
Set kubectl context to "kind-kind-1" | |
You can now use your cluster with: | |
kubectl cluster-info --context kind-kind-1 | |
Not sure what to do next? 😅 Check out https://kind.sigs.k8s.io/docs/user/quick-start/ | |
Creating cluster "kind-2" ... | |
✓ Ensuring node image (kindest/node:v1.17.0) 🖼 | |
✓ Preparing nodes 📦 | |
✓ Writing configuration 📜 | |
✓ Starting control-plane 🕹️ | |
✓ Installing CNI 🔌 | |
✓ Installing StorageClass 💾 | |
Set kubectl context to "kind-kind-2" | |
You can now use your cluster with: | |
kubectl cluster-info --context kind-kind-2 | |
Thanks for using kind! 😊 | |
Creating cluster "kind-3" ... | |
✓ Ensuring node image (kindest/node:v1.17.0) 🖼 | |
✓ Preparing nodes 📦 | |
✓ Writing configuration 📜 | |
✓ Starting control-plane 🕹️ | |
✓ Installing CNI 🔌 | |
✓ Installing StorageClass 💾 | |
Set kubectl context to "kind-kind-3" | |
You can now use your cluster with: | |
kubectl cluster-info --context kind-kind-3 | |
Thanks for using kind! 😊 | |
Creating cluster "kind-4" ... | |
✓ Ensuring node image (kindest/node:v1.17.0) 🖼 | |
✓ Preparing nodes 📦 | |
✓ Writing configuration 📜 | |
⠈⡱ Starting control-plane 🕹️ | |
✓ Starting control-plane 🕹️ | |
✓ Installing CNI 🔌 | |
✓ Installing StorageClass 💾 | |
Set kubectl context to "kind-kind-4" | |
You can now use your cluster with: | |
kubectl cluster-info --context kind-kind-4 | |
Have a nice day! 👋 | |
Creating cluster "kind-5" ... | |
✓ Ensuring node image (kindest/node:v1.17.0) 🖼 | |
✓ Preparing nodes 📦 | |
✓ Writing configuration 📜 | |
✓ Starting control-plane 🕹️ | |
✓ Installing CNI 🔌 | |
✓ Installing StorageClass 💾 | |
Set kubectl context to "kind-kind-5" | |
You can now use your cluster with: | |
kubectl cluster-info --context kind-kind-5 | |
Have a question, bug, or feature request? Let us know! https://kind.sigs.k8s.io/#community 🙂 | |
Creating cluster "kind-6" ... | |
✓ Ensuring node image (kindest/node:v1.17.0) 🖼 | |
✓ Preparing nodes 📦 | |
✓ Writing configuration 📜 | |
✓ Starting control-plane 🕹️ | |
✓ Installing CNI 🔌 | |
✓ Installing StorageClass 💾 | |
Set kubectl context to "kind-kind-6" | |
You can now use your cluster with: | |
kubectl cluster-info --context kind-kind-6 | |
Not sure what to do next? 😅 Check out https://kind.sigs.k8s.io/docs/user/quick-start/ | |
Creating cluster "kind-7" ... | |
✓ Ensuring node image (kindest/node:v1.17.0) 🖼 | |
✓ Preparing nodes 📦 | |
✓ Writing configuration 📜 | |
✓ Starting control-plane 🕹️ | |
✓ Installing CNI 🔌 | |
✓ Installing StorageClass 💾 | |
Set kubectl context to "kind-kind-7" | |
You can now use your cluster with: | |
kubectl cluster-info --context kind-kind-7 | |
Thanks for using kind! 😊 | |
Creating cluster "kind-8" ... | |
✓ Ensuring node image (kindest/node:v1.17.0) 🖼 | |
✓ Preparing nodes 📦 | |
✓ Writing configuration 📜 | |
✓ Starting control-plane 🕹️ | |
✓ Installing CNI 🔌 | |
✓ Installing StorageClass 💾 | |
Set kubectl context to "kind-kind-8" | |
You can now use your cluster with: | |
kubectl cluster-info --context kind-kind-8 | |
Have a nice day! 👋 | |
Creating cluster "kind-9" ... | |
✓ Ensuring node image (kindest/node:v1.17.0) 🖼 | |
✓ Preparing nodes 📦 | |
✓ Writing configuration 📜 | |
✓ Starting control-plane 🕹️ | |
✓ Installing CNI 🔌 | |
✓ Installing StorageClass 💾 | |
Set kubectl context to "kind-kind-9" | |
You can now use your cluster with: | |
kubectl cluster-info --context kind-kind-9 | |
Not sure what to do next? 😅 Check out https://kind.sigs.k8s.io/docs/user/quick-start/ | |
Creating cluster "kind-10" ... | |
✓ Ensuring node image (kindest/node:v1.17.0) 🖼 | |
✓ Preparing nodes 📦 | |
✓ Writing configuration 📜 | |
✗ Starting control-plane 🕹️ | |
ERROR: failed to create cluster: failed to init node with kubeadm: command "docker exec --privileged kind-10-control-plane kubeadm init --ignore-preflight-errors=all --config=/kind/kubeadm.conf --skip-token-print --v=6" failed with error: exit status 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
$ kind create cluster --name kind-10 --verbosity 1 | |
Creating cluster "kind-10" ... | |
DEBUG: docker/images.go:61] Image: kindest/node:v1.17.0@sha256:9512edae126da271b66b990b6fff768fbb7cd786c7d39e86bdf55906352fdf62 present locally | |
✓ Ensuring node image (kindest/node:v1.17.0) 🖼 | |
✓ Preparing nodes 📦 | |
✓ Writing configuration 📜 | |
✗ Starting control-plane 🕹️ | |
ERROR: failed to create cluster: failed to init node with kubeadm: command "docker exec --privileged kind-10-control-plane kubeadm init --ignore-preflight-errors=all --config=/kind/kubeadm.conf --skip-token-print --v=6" failed with error: exit status 1 | |
Output: | |
I0309 20:32:43.695377 132 initconfiguration.go:207] loading configuration from "/kind/kubeadm.conf" | |
[config] WARNING: Ignored YAML document with GroupVersionKind kubeadm.k8s.io/v1beta2, Kind=JoinConfiguration | |
W0309 20:32:43.700915 132 validation.go:28] Cannot validate kube-proxy config - no validator is available | |
W0309 20:32:43.700923 132 validation.go:28] Cannot validate kubelet config - no validator is available | |
[init] Using Kubernetes version: v1.17.0 | |
[preflight] Running pre-flight checks | |
I0309 20:32:43.701263 132 checks.go:577] validating Kubernetes and kubeadm version | |
I0309 20:32:43.701276 132 checks.go:166] validating if the firewall is enabled and active | |
I0309 20:32:43.707313 132 checks.go:201] validating availability of port 6443 | |
I0309 20:32:43.707562 132 checks.go:201] validating availability of port 10259 | |
I0309 20:32:43.707582 132 checks.go:201] validating availability of port 10257 | |
I0309 20:32:43.707599 132 checks.go:286] validating the existence of file /etc/kubernetes/manifests/kube-apiserver.yaml | |
I0309 20:32:43.707616 132 checks.go:286] validating the existence of file /etc/kubernetes/manifests/kube-controller-manager.yaml | |
I0309 20:32:43.707627 132 checks.go:286] validating the existence of file /etc/kubernetes/manifests/kube-scheduler.yaml | |
I0309 20:32:43.707632 132 checks.go:286] validating the existence of file /etc/kubernetes/manifests/etcd.yaml | |
I0309 20:32:43.707643 132 checks.go:432] validating if the connectivity type is via proxy or direct | |
I0309 20:32:43.707667 132 checks.go:471] validating http connectivity to first IP address in the CIDR | |
I0309 20:32:43.707678 132 checks.go:471] validating http connectivity to first IP address in the CIDR | |
I0309 20:32:43.707686 132 checks.go:102] validating the container runtime | |
I0309 20:32:43.713465 132 checks.go:376] validating the presence of executable crictl | |
I0309 20:32:43.713493 132 checks.go:335] validating the contents of file /proc/sys/net/bridge/bridge-nf-call-iptables | |
I0309 20:32:43.713526 132 checks.go:335] validating the contents of file /proc/sys/net/ipv4/ip_forward | |
I0309 20:32:43.713544 132 checks.go:649] validating whether swap is enabled or not | |
I0309 20:32:43.713564 132 checks.go:376] validating the presence of executable ip | |
I0309 20:32:43.713594 132 checks.go:376] validating the presence of executable iptables | |
I0309 20:32:43.713627 132 checks.go:376] validating the presence of executable mount | |
I0309 20:32:43.713640 132 checks.go:376] validating the presence of executable nsenter | |
I0309 20:32:43.713662 132 checks.go:376] validating the presence of executable ebtables | |
I0309 20:32:43.713680 132 checks.go:376] validating the presence of executable ethtool | |
I0309 20:32:43.713691 132 checks.go:376] validating the presence of executable socat | |
I0309 20:32:43.713707 132 checks.go:376] validating the presence of executable tc | |
I0309 20:32:43.713720 132 checks.go:376] validating the presence of executable touch | |
I0309 20:32:43.713738 132 checks.go:520] running all checks | |
[WARNING SystemVerification]: failed to parse kernel config: unable to load kernel module: "configs", output: "modprobe: FATAL: Module configs not found in directory /lib/modules/5.3.0-29-generic\n", err: exit status 1 | |
I0309 20:32:43.716014 132 checks.go:406] checking whether the given node name is reachable using net.LookupHost | |
[preflight] The system verification failed. Printing the output from the verification: | |
KERNEL_VERSION: 5.3.0-29-generic | |
OS: Linux | |
CGROUPS_CPU: enabled | |
CGROUPS_CPUACCT: enabled | |
CGROUPS_CPUSET: enabled | |
CGROUPS_DEVICES: enabled | |
CGROUPS_FREEZER: enabled | |
CGROUPS_MEMORY: enabled | |
I0309 20:32:43.716123 132 checks.go:618] validating kubelet version | |
I0309 20:32:43.755062 132 checks.go:128] validating if the service is enabled and active | |
I0309 20:32:43.762385 132 checks.go:201] validating availability of port 10250 | |
I0309 20:32:43.762431 132 checks.go:201] validating availability of port 2379 | |
I0309 20:32:43.762448 132 checks.go:201] validating availability of port 2380 | |
[preflight] Pulling images required for setting up a Kubernetes cluster | |
[preflight] This might take a minute or two, depending on the speed of your internet connection | |
[preflight] You can also perform this action in beforehand using 'kubeadm config images pull' | |
I0309 20:32:43.762465 132 checks.go:249] validating the existence and emptiness of directory /var/lib/etcd | |
I0309 20:32:43.767975 132 checks.go:838] image exists: k8s.gcr.io/kube-apiserver:v1.17.0 | |
I0309 20:32:43.773182 132 checks.go:838] image exists: k8s.gcr.io/kube-controller-manager:v1.17.0 | |
I0309 20:32:43.778512 132 checks.go:838] image exists: k8s.gcr.io/kube-scheduler:v1.17.0 | |
I0309 20:32:43.783863 132 checks.go:838] image exists: k8s.gcr.io/kube-proxy:v1.17.0 | |
I0309 20:32:43.789111 132 checks.go:838] image exists: k8s.gcr.io/pause:3.1 | |
I0309 20:32:43.794234 132 checks.go:838] image exists: k8s.gcr.io/etcd:3.4.3-0 | |
I0309 20:32:43.800157 132 checks.go:838] image exists: k8s.gcr.io/coredns:1.6.5 | |
I0309 20:32:43.800178 132 kubelet.go:63] Stopping the kubelet | |
[kubelet-start] Writing kubelet environment file with flags to file "/var/lib/kubelet/kubeadm-flags.env" | |
[kubelet-start] Writing kubelet configuration to file "/var/lib/kubelet/config.yaml" | |
[kubelet-start] Starting the kubelet | |
[certs] Using certificateDir folder "/etc/kubernetes/pki" | |
I0309 20:32:43.862238 132 certs.go:104] creating a new certificate authority for ca | |
[certs] Generating "ca" certificate and key | |
[certs] Generating "apiserver" certificate and key | |
[certs] apiserver serving cert is signed for DNS names [kind-10-control-plane kubernetes kubernetes.default kubernetes.default.svc kubernetes.default.svc.cluster.local localhost] and IPs [10.96.0.1 172.17.0.12 172.17.0.12 127.0.0.1] | |
[certs] Generating "apiserver-kubelet-client" certificate and key | |
I0309 20:32:44.416384 132 certs.go:104] creating a new certificate authority for front-proxy-ca | |
[certs] Generating "front-proxy-ca" certificate and key | |
[certs] Generating "front-proxy-client" certificate and key | |
I0309 20:32:44.694909 132 certs.go:104] creating a new certificate authority for etcd-ca | |
[certs] Generating "etcd/ca" certificate and key | |
[certs] Generating "etcd/server" certificate and key | |
[certs] etcd/server serving cert is signed for DNS names [kind-10-control-plane localhost] and IPs [172.17.0.12 127.0.0.1 ::1] | |
[certs] Generating "etcd/peer" certificate and key | |
[certs] etcd/peer serving cert is signed for DNS names [kind-10-control-plane localhost] and IPs [172.17.0.12 127.0.0.1 ::1] | |
[certs] Generating "etcd/healthcheck-client" certificate and key | |
[certs] Generating "apiserver-etcd-client" certificate and key | |
I0309 20:32:45.823575 132 certs.go:70] creating a new public/private key files for signing service account users | |
[certs] Generating "sa" key and public key | |
[kubeconfig] Using kubeconfig folder "/etc/kubernetes" | |
I0309 20:32:45.976531 132 kubeconfig.go:79] creating kubeconfig file for admin.conf | |
[kubeconfig] Writing "admin.conf" kubeconfig file | |
I0309 20:32:46.321028 132 kubeconfig.go:79] creating kubeconfig file for kubelet.conf | |
[kubeconfig] Writing "kubelet.conf" kubeconfig file | |
I0309 20:32:46.408005 132 kubeconfig.go:79] creating kubeconfig file for controller-manager.conf | |
[kubeconfig] Writing "controller-manager.conf" kubeconfig file | |
I0309 20:32:46.497157 132 kubeconfig.go:79] creating kubeconfig file for scheduler.conf | |
[kubeconfig] Writing "scheduler.conf" kubeconfig file | |
I0309 20:32:47.026914 132 manifests.go:90] [control-plane] getting StaticPodSpecs | |
[control-plane] Using manifest folder "/etc/kubernetes/manifests" | |
[control-plane] Creating static Pod manifest for "kube-apiserver" | |
I0309 20:32:47.033990 132 manifests.go:115] [control-plane] wrote static Pod manifest for component "kube-apiserver" to "/etc/kubernetes/manifests/kube-apiserver.yaml" | |
I0309 20:32:47.034028 132 manifests.go:90] [control-plane] getting StaticPodSpecs | |
[control-plane] Creating static Pod manifest for "kube-controller-manager" | |
W0309 20:32:47.034120 132 manifests.go:214] the default kube-apiserver authorization-mode is "Node,RBAC"; using "Node,RBAC" | |
I0309 20:32:47.035104 132 manifests.go:115] [control-plane] wrote static Pod manifest for component "kube-controller-manager" to "/etc/kubernetes/manifests/kube-controller-manager.yaml" | |
I0309 20:32:47.035134 132 manifests.go:90] [control-plane] getting StaticPodSpecs | |
[control-plane] Creating static Pod manifest for "kube-scheduler" | |
W0309 20:32:47.035202 132 manifests.go:214] the default kube-apiserver authorization-mode is "Node,RBAC"; using "Node,RBAC" | |
[etcd] Creating static Pod manifest for local etcd in "/etc/kubernetes/manifests" | |
I0309 20:32:47.035700 132 manifests.go:115] [control-plane] wrote static Pod manifest for component "kube-scheduler" to "/etc/kubernetes/manifests/kube-scheduler.yaml" | |
I0309 20:32:47.036297 132 local.go:69] [etcd] wrote Static Pod manifest for a local etcd member to "/etc/kubernetes/manifests/etcd.yaml" | |
I0309 20:32:47.036306 132 waitcontrolplane.go:80] [wait-control-plane] Waiting for the API server to be healthy | |
I0309 20:32:47.037155 132 loader.go:375] Config loaded from file: /etc/kubernetes/admin.conf | |
[wait-control-plane] Waiting for the kubelet to boot up the control plane as static Pods from directory "/etc/kubernetes/manifests". This can take up to 4m0s | |
I0309 20:32:47.038731 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:32:47.539440 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:32:48.039194 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:32:48.539591 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:32:49.039566 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:32:49.539545 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:32:50.039285 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:32:50.539628 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:32:51.039243 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:32:51.539396 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:32:52.039108 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:32:52.539499 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:32:53.039073 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:32:53.539561 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:32:54.039289 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:32:54.539801 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:32:55.039502 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:32:55.539609 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:32:56.039060 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:32:56.539517 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:32:57.039045 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:32:57.539349 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:32:58.039166 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:32:58.539528 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:32:59.039868 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:32:59.539612 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:00.039124 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:00.539237 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:01.039284 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:01.539491 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:02.039101 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:02.539330 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:03.039178 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:03.539417 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:04.039293 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:04.539550 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:05.039170 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:05.539196 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:06.039163 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:06.539540 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:07.039224 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:07.539564 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:08.039462 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:08.539335 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:09.039332 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:09.539180 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:10.039190 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:10.539427 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:11.039210 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:11.539510 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:12.039326 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:12.539515 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:13.039470 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:13.539294 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:14.039187 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:14.539568 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:15.039250 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:15.539416 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:16.039298 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:16.539505 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:17.039325 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:17.539601 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:18.039512 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:18.539671 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:19.039468 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:19.539656 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:20.039058 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:20.539579 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:21.039213 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:21.539427 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:22.039470 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:22.539716 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:23.039317 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:23.539554 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:24.039203 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:24.539449 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:25.039212 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:25.539367 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:26.039290 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:26.539539 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
[kubelet-check] Initial timeout of 40s passed. | |
I0309 20:33:27.039197 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
[kubelet-check] It seems like the kubelet isn't running or healthy. | |
[kubelet-check] The HTTP call equal to 'curl -sSL http://localhost:10248/healthz' failed with error: Get http://localhost:10248/healthz: dial tcp 127.0.0.1:10248: connect: connection refused. | |
I0309 20:33:27.539478 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:28.039241 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:28.539669 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:29.039334 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:29.539423 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:30.039147 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:30.539517 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:31.039574 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:31.539437 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:32.039336 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
[kubelet-check] It seems like the kubelet isn't running or healthy. | |
[kubelet-check] The HTTP call equal to 'curl -sSL http://localhost:10248/healthz' failed with error: Get http://localhost:10248/healthz: dial tcp 127.0.0.1:10248: connect: connection refused. | |
I0309 20:33:32.539467 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:33.039541 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:33.539478 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:34.039507 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:34.539440 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:35.039219 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:35.539350 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:36.039365 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:36.539604 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:37.039163 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:37.539125 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:38.039618 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:38.539551 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:39.039216 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:39.539074 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:40.039139 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:40.539481 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:41.039100 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:41.539788 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:42.039155 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
[kubelet-check] It seems like the kubelet isn't running or healthy. | |
[kubelet-check] The HTTP call equal to 'curl -sSL http://localhost:10248/healthz' failed with error: Get http://localhost:10248/healthz: dial tcp 127.0.0.1:10248: connect: connection refused. | |
I0309 20:33:42.539525 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:43.039376 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:43.539331 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:44.039196 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:44.539481 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:45.039441 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:45.539483 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:46.039274 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:46.539102 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:47.039163 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:47.539669 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:48.039474 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:48.539615 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:49.039328 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:49.539319 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:50.039526 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:50.539469 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:51.039530 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:51.539424 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:52.039429 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:52.539433 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:53.039132 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:53.539430 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:54.039483 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:54.539621 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:55.039277 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:55.539609 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:56.039393 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:56.539071 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:57.039068 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:57.539373 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:58.039224 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:58.539498 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:59.039200 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:33:59.539710 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:00.039492 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:00.539607 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:01.039328 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:01.539375 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:02.039337 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
[kubelet-check] It seems like the kubelet isn't running or healthy. | |
[kubelet-check] The HTTP call equal to 'curl -sSL http://localhost:10248/healthz' failed with error: Get http://localhost:10248/healthz: dial tcp 127.0.0.1:10248: connect: connection refused. | |
I0309 20:34:02.539594 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:03.039249 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:03.539607 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:04.039370 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:04.539490 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:05.039461 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:05.539582 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:06.039236 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:06.539412 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:07.039156 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:07.539568 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:08.039132 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:08.539415 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:09.039184 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:09.539397 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:10.039342 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:10.539557 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:11.039119 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:11.539446 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:12.039693 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:12.539432 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:13.039066 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:13.539104 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:14.039115 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:14.539515 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:15.039374 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:15.539093 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:16.039089 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:16.539457 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:17.039225 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:17.539413 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:18.039075 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:18.539547 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:19.039308 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:19.539382 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:20.039211 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:20.539478 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:21.039146 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:21.539718 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:22.039242 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:22.539578 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:23.039115 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:23.539555 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:24.039286 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:24.539472 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:25.039274 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:25.539485 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:26.039492 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:26.539553 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:27.039123 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:27.539703 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:28.039116 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:28.539230 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:29.039240 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:29.539468 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:30.039074 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:30.539646 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:31.039253 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:31.539528 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:32.039144 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:32.539545 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:33.039184 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:33.539497 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:34.039137 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:34.539608 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:35.039250 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:35.539747 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:36.039179 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:36.539398 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:37.039186 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:37.539559 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:38.039258 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:38.539519 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:39.039118 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:39.539253 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:40.039175 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:40.539500 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:41.039181 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:41.539428 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
I0309 20:34:42.039191 132 round_trippers.go:443] GET https://172.17.0.12:6443/healthz?timeout=10s in 0 milliseconds | |
[kubelet-check] It seems like the kubelet isn't running or healthy. | |
[kubelet-check] The HTTP call equal to 'curl -sSL http://localhost:10248/healthz' failed with error: Get http://localhost:10248/healthz: dial tcp 127.0.0.1:10248: connect: connection refused. | |
Unfortunately, an error has occurred: | |
timed out waiting for the condition | |
This error is likely caused by: | |
- The kubelet is not running | |
- The kubelet is unhealthy due to a misconfiguration of the node in some way (required cgroups disabled) | |
If you are on a systemd-powered system, you can try to troubleshoot the error with the following commands: | |
- 'systemctl status kubelet' | |
- 'journalctl -xeu kubelet' | |
Additionally, a control plane component may have crashed or exited when started by the container runtime. | |
To troubleshoot, list all containers using your preferred container runtimes CLI, e.g. docker. | |
Here is one example how you may list all Kubernetes containers running in docker: | |
- 'docker ps -a | grep kube | grep -v pause' | |
Once you have found the failing container, you can inspect its logs with: | |
- 'docker logs CONTAINERID' | |
couldn't initialize a Kubernetes cluster | |
k8s.io/kubernetes/cmd/kubeadm/app/cmd/phases/init.runWaitControlPlanePhase | |
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/cmd/kubeadm/app/cmd/phases/init/waitcontrolplane.go:100 | |
k8s.io/kubernetes/cmd/kubeadm/app/cmd/phases/workflow.(*Runner).Run.func1 | |
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/cmd/kubeadm/app/cmd/phases/workflow/runner.go:234 | |
k8s.io/kubernetes/cmd/kubeadm/app/cmd/phases/workflow.(*Runner).visitAll | |
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/cmd/kubeadm/app/cmd/phases/workflow/runner.go:422 | |
k8s.io/kubernetes/cmd/kubeadm/app/cmd/phases/workflow.(*Runner).Run | |
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/cmd/kubeadm/app/cmd/phases/workflow/runner.go:207 | |
k8s.io/kubernetes/cmd/kubeadm/app/cmd.NewCmdInit.func1 | |
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/cmd/kubeadm/app/cmd/init.go:147 | |
k8s.io/kubernetes/vendor/github.com/spf13/cobra.(*Command).execute | |
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/vendor/github.com/spf13/cobra/command.go:826 | |
k8s.io/kubernetes/vendor/github.com/spf13/cobra.(*Command).ExecuteC | |
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/vendor/github.com/spf13/cobra/command.go:914 | |
k8s.io/kubernetes/vendor/github.com/spf13/cobra.(*Command).Execute | |
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/vendor/github.com/spf13/cobra/command.go:864 | |
k8s.io/kubernetes/cmd/kubeadm/app.Run | |
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/cmd/kubeadm/app/kubeadm.go:50 | |
main.main | |
_output/dockerized/go/src/k8s.io/kubernetes/cmd/kubeadm/kubeadm.go:25 | |
runtime.main | |
/usr/local/go/src/runtime/proc.go:203 | |
runtime.goexit | |
/usr/local/go/src/runtime/asm_amd64.s:1357 | |
error execution phase wait-control-plane | |
k8s.io/kubernetes/cmd/kubeadm/app/cmd/phases/workflow.(*Runner).Run.func1 | |
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/cmd/kubeadm/app/cmd/phases/workflow/runner.go:235 | |
k8s.io/kubernetes/cmd/kubeadm/app/cmd/phases/workflow.(*Runner).visitAll | |
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/cmd/kubeadm/app/cmd/phases/workflow/runner.go:422 | |
k8s.io/kubernetes/cmd/kubeadm/app/cmd/phases/workflow.(*Runner).Run | |
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/cmd/kubeadm/app/cmd/phases/workflow/runner.go:207 | |
k8s.io/kubernetes/cmd/kubeadm/app/cmd.NewCmdInit.func1 | |
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/cmd/kubeadm/app/cmd/init.go:147 | |
k8s.io/kubernetes/vendor/github.com/spf13/cobra.(*Command).execute | |
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/vendor/github.com/spf13/cobra/command.go:826 | |
k8s.io/kubernetes/vendor/github.com/spf13/cobra.(*Command).ExecuteC | |
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/vendor/github.com/spf13/cobra/command.go:914 | |
k8s.io/kubernetes/vendor/github.com/spf13/cobra.(*Command).Execute | |
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/vendor/github.com/spf13/cobra/command.go:864 | |
k8s.io/kubernetes/cmd/kubeadm/app.Run | |
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/cmd/kubeadm/app/kubeadm.go:50 | |
main.main | |
_output/dockerized/go/src/k8s.io/kubernetes/cmd/kubeadm/kubeadm.go:25 | |
runtime.main | |
/usr/local/go/src/runtime/proc.go:203 | |
runtime.goexit | |
/usr/local/go/src/runtime/asm_amd64.s:1357 | |
Stack Trace: | |
sigs.k8s.io/kind/pkg/errors.WithStack | |
/home/<user>/go/pkg/mod/sigs.k8s.io/[email protected]/pkg/errors/errors.go:51 | |
sigs.k8s.io/kind/pkg/exec.(*LocalCmd).Run | |
/home/<user>/go/pkg/mod/sigs.k8s.io/[email protected]/pkg/exec/local.go:116 | |
sigs.k8s.io/kind/pkg/cluster/internal/providers/docker.(*nodeCmd).Run | |
/home/<user>/go/pkg/mod/sigs.k8s.io/[email protected]/pkg/cluster/internal/providers/docker/node.go:130 | |
sigs.k8s.io/kind/pkg/exec.CombinedOutputLines | |
/home/<user>/go/pkg/mod/sigs.k8s.io/[email protected]/pkg/exec/helpers.go:67 | |
sigs.k8s.io/kind/pkg/cluster/internal/create/actions/kubeadminit.(*action).Execute | |
/home/<user>/go/pkg/mod/sigs.k8s.io/[email protected]/pkg/cluster/internal/create/actions/kubeadminit/init.go:72 | |
sigs.k8s.io/kind/pkg/cluster/internal/create.Cluster | |
/home/<user>/go/pkg/mod/sigs.k8s.io/[email protected]/pkg/cluster/internal/create/create.go:136 | |
sigs.k8s.io/kind/pkg/cluster.(*Provider).Create | |
/home/<user>/go/pkg/mod/sigs.k8s.io/[email protected]/pkg/cluster/provider.go:100 | |
sigs.k8s.io/kind/pkg/cmd/kind/create/cluster.runE | |
/home/<user>/go/pkg/mod/sigs.k8s.io/[email protected]/pkg/cmd/kind/create/cluster/createcluster.go:86 | |
sigs.k8s.io/kind/pkg/cmd/kind/create/cluster.NewCommand.func1 | |
/home/<user>/go/pkg/mod/sigs.k8s.io/[email protected]/pkg/cmd/kind/create/cluster/createcluster.go:52 | |
github.com/spf13/cobra.(*Command).execute | |
/home/<user>/go/pkg/mod/github.com/spf13/[email protected]/command.go:826 | |
github.com/spf13/cobra.(*Command).ExecuteC | |
/home/<user>/go/pkg/mod/github.com/spf13/[email protected]/command.go:914 | |
github.com/spf13/cobra.(*Command).Execute | |
/home/<user>/go/pkg/mod/github.com/spf13/[email protected]/command.go:864 | |
sigs.k8s.io/kind/cmd/kind/app.Run | |
/home/<user>/go/pkg/mod/sigs.k8s.io/[email protected]/cmd/kind/app/main.go:53 | |
sigs.k8s.io/kind/cmd/kind/app.Main | |
/home/<user>/go/pkg/mod/sigs.k8s.io/[email protected]/cmd/kind/app/main.go:35 | |
main.main | |
/home/<user>/go/pkg/mod/sigs.k8s.io/[email protected]/main.go:25 | |
runtime.main | |
/usr/local/go/src/runtime/proc.go:203 | |
runtime.goexit | |
/usr/local/go/src/runtime/asm_amd64.s:1357 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment