wiretrack
09/29/2021, 11:49 PMimagePullSecrets
using the Helm chart? I can make it work when I manually write the deployment
and pass the --image-pull-secrets
argument, but I can’t make it work passing the secret argument on the helm chart. Any ideas what I might be doing wrong? I doing something like imagePullSecrets: mysecretname
in the Helm (inside the “job”, inside the “agent” part)wiretrack
09/29/2021, 11:53 PMIMAGE_PULL_SECRETS
in the agent deployment and it works as well. inside the pod, the env is defined as IMAGE_PULL_SECRETS=“mysecret”.
When using the helm is a list:
IMAGE_PULL_SECRETS=“[\“mysecret\“]”
which seems weird, but maybe is just escaping the quotes. passing a string only also does something like this:
IMAGE_PULL_SECRETS=“\”mysecret\“”Kevin Kho
wiretrack
09/30/2021, 3:08 PMKevin Kho
Kevin Kho
wiretrack
10/01/2021, 8:34 PM