Does anyone know if kubernetes supports an offline installation such as a disconnected network? I downloaded all of the pieces, installed a two node cluster, and when I attempted to run an image from a private registry the "kubectl get events" command displayed that the container could not be started since it could not download gcr.io/google_containers/pause:0.8.0. This makes complete sense given the environment but is it possible to configure kubernetes to use a different pause container?
标签:
kubernetes
相关问题
- Microk8s, MetalLB, ingress-nginx - How to route ex
- How do I change the storage class of existing pers
- Use awslogs with kubernetes 'natively'
- Kubernetes coredns readiness probe failed
- Default certificate on Nginx-ingress
相关文章
- k8s 访问Pod 时好时坏
- Override env values defined in container spec
- How do I create a persistent volume claim with Rea
- How to obtain the enable admission controller list
- Difference between API versions v2beta1 and v2beta
- MountVolume.SetUp failed for volume “nfs” : mount
- How to save content of a configmap to a file with
- GKE does not scale to/from 0 when autoscaling enab
The kubelet has a
--pod-infra-container-image=
flag that you can use to change which infra container is used. If you build your own pause container (starting from here, I'd guess), and upload to your private registry, it should work (although I've not tried it).