Kirk Stennett
10/08/2021, 4:39 PMnoglob helm install --set deployments[0].image.tag=gh.57,deployments[1].image.tag=gh.57 dagster-code . -ngh-57
and no luck, that includes multiple set commands, set-string, also including my values.yaml and so on. Any idea why that might not work and is this something with my dagster configuration or just helm? No matter what the deployment always has the tag v0.13.0
, included my values yaml reference.rex
10/08/2021, 4:43 PMdagster-user-deployments:
Kirk Stennett
10/08/2021, 4:44 PMrex
10/08/2021, 4:44 PMdagster-user-deployments
chart or the full dagster
chart?Kirk Stennett
10/08/2021, 4:49 PMrex
10/08/2021, 5:01 PMWhen I apply with the values yaml it overrides the tags and everything properly.What applies properly? Your custom deployments and tags, or just the chart with default helm values?
noglob helm install --set dagster-user-deployments.deployments[0].image.tag=gh.57,dagster-user-deployments.deployments[1].image.tag=gh.57 dagster-code . -ngh-57
Kirk Stennett
10/08/2021, 5:12 PMhelm upgrade dagster-code . -f values.yaml -n gh-57
it applies the values from that yaml properlyChart.yaml, charts->user-deployments->values.yaml
, so not everything is top level in this directory. when I renamed the values yaml it threw an error saying:
Error: values don't meet the specifications of the schema(s) in the following chart(s):
user-deployments:
- (root): deployments is required
even though I'm using a set command that sets each of those fieldsvalues.yaml
in that directory for all it's config and because it was a subchart it ignored my "top level" set commands. When I started running all of this from the user deployments directory it started working properly. I just need to update everything on my end to support this now. Thanks @rex