extraPodConfig values do not get set

I don’t know why

singleuser:
  extraPodConfig
    ...

isn’t working. Does it work with other properties? If you’ve got a test deployment could you try the latest dev Helm chart, and if it’s still not working please open a bug report with your configuration and the dev version you tested.

In addition to that there’s a couple of other way you could set that property. Previously every configuration property had to have it’s own corresponding property in the Helm chart. As the number of properties increased it became difficult to keep everything up to date, so for other properties you can set them either using hub.config or hub.extraConfig.

The full list of KubeSpawner config properties is in KubeSpawner — Kubespawner
For example, you could try

hub:
  config:
    KubeSpawner:
      container_security_context:
        ...
      pod_security_context:
        ...
1 Like