plain-whale-39460
08/08/2022, 2:47 PMsecretRef
in fleet.yaml,
secretRef:
name: docker-hub
Using registry-creds to sync the secret named docker-hub
across namespace which has the auth to pull private image.
I'm able to pull the docker image using the registry-cred's docker-hub
secret, but getting this error ImageScan develop is not ready: auth for "<http://index.docker.io|index.docker.io>" not found in secret fleet-default/docker-hub
ambitious-plastic-3551
08/09/2022, 5:19 AMplain-whale-39460
08/09/2022, 5:54 AMkubectl create secret docker-registry regcred --docker-server=<your-registry-server> --docker-username=<your-name> --docker-password=<your-pword> --docker-email=<your-email>
stringData:
.dockerconfigjson: '{"auths":{"<https://index.docker.io/v1/>":{"username":"username","password":"password","email":"email","auth":"auth"}}}'
type: <http://kubernetes.io/dockerconfigjson|kubernetes.io/dockerconfigjson>
ambitious-plastic-3551
08/10/2022, 4:37 AMplain-whale-39460
08/10/2022, 6:39 AMfast-helmet-86447
11/07/2022, 1:56 AM