You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1.Minikube deployment in offline environment. Where the VM has no access to internet.
2. Trying to make metric-server Addon work.
3. Add cache manually for metric-server image. minikube cache add k8s.gcr.io/metrics-server-amd64:v0.2.1
4. Still metric-server pod is crashing kube-system metrics-server-77fddcc57b-4rvsx 0/1 ImagePullBackOff 0 3m48s
5. Edit deployment and change imagePullPolicy to IfNotPresent. kubectl edit deployments -n kube-system metrics-server
6. Now metrics-server pod is running, kube-system metrics-server-6587bccc78-gqwv6 1/1 Running 0 4s
7. After 10 seconds the deployment metrics-server changes pack to Always kubectl get deployments -n kube-system metrics-server -o yaml | grep imagePullPolicy imagePullPolicy: Always
8. Then the pod is again crashing.. kube-system metrics-server-77fddcc57b-4rvsx 0/1 ImagePullBackOff 0 3m48s
same problems for other addons: e.g. registry
The text was updated successfully, but these errors were encountered:
Steps to reproduce the issue:
1.Minikube deployment in offline environment. Where the VM has no access to internet.
2. Trying to make metric-server Addon work.
3. Add cache manually for metric-server image.
minikube cache add k8s.gcr.io/metrics-server-amd64:v0.2.1
4. Still metric-server pod is crashing
kube-system metrics-server-77fddcc57b-4rvsx 0/1 ImagePullBackOff 0 3m48s
5. Edit deployment and change imagePullPolicy to IfNotPresent.
kubectl edit deployments -n kube-system metrics-server
6. Now metrics-server pod is running,
kube-system metrics-server-6587bccc78-gqwv6 1/1 Running 0 4s
7. After 10 seconds the deployment metrics-server changes pack to Always
kubectl get deployments -n kube-system metrics-server -o yaml | grep imagePullPolicy
imagePullPolicy: Always
8. Then the pod is again crashing..
kube-system metrics-server-77fddcc57b-4rvsx 0/1 ImagePullBackOff 0 3m48s
same problems for other addons: e.g. registry
The text was updated successfully, but these errors were encountered: