Help Center> Software Repository for Container> FAQs> Other FAQs> Why Does a CCE Workload Cannot Pull an Image from SWR and an Message "Not Logged In" Is Displayed?
Updated on 2024-06-19 GMT+08:00

Why Does a CCE Workload Cannot Pull an Image from SWR and an Message "Not Logged In" Is Displayed?

If a CCE workload cannot pull an SWR image and an message "Not logged in" is displayed, check whether the YAML file of the workload contains the imagePullSecrets field and whether the value of name is fixed to default-secret.

Example:

apiVersion: extensions/v1beta1
kind: Deployment
metadata:
  name: nginx
spec:
  replicas: 1
  selector:
    matchLabels:
      app: nginx
  strategy:
    type: RollingUpdate
  template:
    metadata:
      labels:
        app: nginx
    spec:
      containers:
      - image: nginx 
        imagePullPolicy: Always
        name: nginx
      imagePullSecrets:
      - name: default-secret

Other FAQs FAQs

more