Kubernetes Private Repo Imagepullbackoff 错误

时间:2021-05-20 12:37:27

标签: kubernetes

我关注了这个:https://www.linode.com/docs/guides/how-to-setup-a-private-docker-registry-with-lke-and-object-storage/

repo 工作我可以使用 user/pass 从我的本地推送或拉取。秘密 docker-registry regcred 一次又一次地创建和验证。

    apiVersion: apps/v1
kind: Deployment
metadata:
  name: hello-deployment
  namespace: apps
spec:
  selector:
    matchLabels:
      app: hello
  replicas: 1
  template:
    metadata:
      labels:
        app: hello
    spec:
      containers:
      - name: hello
        image: privatrepo.ddns.net/hello
        ports:
        - containerPort: 3000
      imagePullSecrets:
      - name: regcred

有什么帮助吗?

这里是 pod 日志

Name:         
Namespace:    apps
Priority:     0
Node:         
Start Time:   Thu, 20 May 2021 14:13:27 +0200
Labels:       app=hello
              pod-template-hash=7d6674fdff
Annotations:  cni.projectcalico.org/podIP: 10.2.0.88/32
Status:       Pending
IP:           10.2.0.88
IPs:
  IP:           10.2.0.88
Controlled By:  ReplicaSet/
Containers:
  hello:
    Container ID:   
    Image:          privatrepo.ddns.net/hello
    Image ID:       
    Port:           3000/TCP
    Host Port:      0/TCP
    State:          Waiting
      Reason:       ImagePullBackOff
    Ready:          False
    Restart Count:  0
    Environment:    <none>
    Mounts:
      /var/run/secrets/kubernetes.io/serviceaccount from default-token-jlt9v (ro)
Conditions:
  Type              Status
  Initialized       True 
  Ready             False 
  ContainersReady   False 
  PodScheduled      True 
Volumes:
  default-token-jlt9v:
    Type:        Secret (a volume populated by a Secret)
    SecretName:  default-token-jlt9v
    Optional:    false
QoS Class:       BestEffort
Node-Selectors:  <none>
Tolerations:     node.kubernetes.io/not-ready:NoExecute op=Exists for 300s
                 node.kubernetes.io/unreachable:NoExecute op=Exists for 300s
Events:
  Type     Reason   Age                    From     Message
  ----     ------   ----                   ----     -------
  Normal   BackOff  24m (x680 over 179m)   kubelet  Back-off pulling image "privatrepo.ddns.net/hello"
  Warning  Failed   4m5s (x767 over 179m)  kubelet  Error: ImagePullBackOff

0 个答案:

没有答案
相关问题