I’m getting a strange “access denied” error trying...
# deployment-kubernetes
m
I’m getting a strange “access denied” error trying to pull the latest dagster/k8s-dagster docker image. Shouldn’t this be a public image?
Copy code
docker pull dagster/k8s-dagster:latest
Error response from daemon: pull access denied for dagster/k8s-dagster, repository does not exist or may require 'docker login': denied: requested access to the resource is denied
n
hey David, maybe you’re looking for the
k8s-example
image?
m
Hmm. Wierd. It looks like the CronJob in my Helm deploy is trying to use that image.
Have I broken my Helm deploy somehow?
FWIW; I can pull the
dagster/k8s-example
image; so my problem seems to be that my K8s dagster deployment is referencing the wrong image. Thanks for the pointer!
@nate Looks like the Helm chart’s values file refers to k8s-dagster in the scheduler section - https://github.com/dagster-io/dagster/blob/master/helm/dagster/values.yaml#L176
Since I’m not overriding the image in my values.yaml override - https://github.com/mrdavidlaing/software-releases-dwh/blob/main/dagster_instances/gcp_eu-west1/helm_values.yaml#L28 - my deployment must be inheriting the
k8s-dagster
image from the helm chart values.yaml.
c
good catch, i think that’s a bug https://dagster.phacility.com/D5830
thankyou 1
n
thanks for fixing @cat, yeah this is a bug