Hi! Is it possible that the Helm chart hasn't been...
# deployment-kubernetes
a
Hi! Is it possible that the Helm chart hasn't been updated for the newly released v0.11.14? I was trying to add the
skip_empty_files
option the S3ComputrLogManager config, but get a Helm schema validation error (the property is also missing in values.schema.json, afaict).
1
r
hey Adrian, looks like we forgot to add this to the Helm chart - we’ll update this for 0.11.15
If you need to get around this, you could
kubectl edit
the
instance
configmap and add
skip_empty_files: true
to the compute logs configuration, and redeploy the dagit/daemon pods to get the new volume mount
a
Cool, thanks for the heads-up! It's definitely not mission critical, since I'm just getting my feet wet with Dagster. Just wanted to make sure I understand the concepts correctly and rule out any stupid errors on my side 😄 I'll keep a look out for the 0.11.15 release then! Cheers!