James Parker
12/13/2021, 6:02 PMimagePullSecrets:
- name: dhub-ccdevs
which is the same pull secret we use for all of our other k8s deployments, works fine for them, but the user deployment pod is getting this error:
Warning Failed 26m (x4 over 28m) kubelet Failed to pull image "myorg/myrepo:latest": rpc error: code = Unknown desc = Error response from daemon: pull access denied for myorg/myrepo, repository does not exist or may require 'docker login': denied: requested access to the resource is denied
also tried inserting the imagePullSecrets
key directly into the deployments defn on the same level as the image
key and on the same level as the repository
key. nothing seems to help.
can someone confirm that dagster expects this image pull secret in the same format as a typical k8s deployment?rex
12/13/2021, 6:10 PM.Values.dagster-user-deployments.imagePullSecrets
as well, since the Kubernetes user code deployments have a separate service account attached to them.
See https://sourcegraph.com/github.com/dagster-io/dagster/-/blob/helm/dagster/charts/dagster-user-deployments/values.yaml#L138:21James Parker
12/13/2021, 6:10 PM