This message was deleted.
# ask-for-help
s
This message was deleted.
a
I tried that:
Copy code
kubectl get secret yatai-regcred -o jsonpath='{.data.*}' | base64 -d
{"auths":{"<https://index.docker.io/v1>":{"auth":"auth"}}}
But I am still getting the same error
The only thing that worked for me is this kaniko image: gcr.io/kaniko-project/executor@sha256:23ae6ccaba2b0f599966dbc5ecf38aa4404f4cd799add224167eaf285696551a and docker config with the following format:
Copy code
{
  "auths": {
    "<https://index.docker.io/v1/>": {
      "username": "xxxx",
      "password": "docker_hub_token",
      "email": "xxxx",
      "auth": "xxxxxx"
    }
  }
}
x
can you show your yatai-image-builder helm release values?
Copy code
helm get values yatai-image-builder -n yatai-image-builder
a
Copy code
dockerRegistry:
  server: '<https://index.docker.io/v1>'
  inClusterServer: ''
  username: 'xxxxxx'
  password: 'xxxxxxx'
internalImages:
  kaniko: <http://gcr.io/kaniko-project/executor:latest|gcr.io/kaniko-project/executor:latest>
bentoImageBuildEngine: kaniko