Error : Failed to pull image "busybox": rpc error: code = Unknown desc = Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit
To fix this I have added the login credentials
apiVersion: v1
data:
.dockerconfigjson: xxxx
kind: Secret
metadata:
creationTimestamp: null
name: pullsecretgeneric
type: kubernetes.io/dockerconfigjson
and also added to the deployment yaml
template:
metadata:
labels:
component: {{ .component }}
spec:
imagePullSecrets:
- name: pullsecretgeneric
- name: pullsecret
Then using helm install to do the installation But still I get this error Do I need to do add somewhere else
Config.json
{
"auths": {
"https://registry.hub.docker.com": {
"auth": "xxxx"
}
}
}
Any pointers to fix this