Hi there! How i can pass securityContext to job wh...
# deployment-kubernetes
a
Hi there! How i can pass securityContext to job who dagster will created at runtime? TL;DR; I cannot run any workload inside cluster in privileged mode. All control plane elements of dagster accepts securityContext thru helm chart, but jobs isn’t. AFAIK - there is one of possibilities - pass job config via
job_spec_config
inside of job definition. Is it possible to specify this at the helm chart level?
j
This isn’t currently possible at the helm chart level, though we likely will add it soon. It currently needs to be set in tags on your jobs (and ops if using the
k8s_job_executor
) https://docs.dagster.io/deployment/guides/kubernetes/customizing-your-deployment
a
Thanks a lot