I’m trying to implement an automated build/deploy ...
# deployment-kubernetes
a
I’m trying to implement an automated build/deploy triggered by
helm upgrade --install user-code dagster/dagster-user-deployments user_code.yaml
but when I reload the repository information the runs still use the same snapshot ID (which can cause “An exception was thrown during execution that is likely a framework error, rather than an error in user code”). Once I restart the user-code deployment (i.e. scale to 0 then 1) it works. Is it expected to need to restart the deployment as well as running the helm chart upgrade? I’m using a fixed tag for my docker container (i.e.
latest
) as well.
🤖 1
j
It sounds like since you’re using a fixed tag, the user code deployment isn’t picking up the new image
The easiest solution would be to use versioned tags
👍 2