FixedEnv
Appears in
.Values.workload.$name.podSpec.containers.$name.Values.workload.$name.podSpec.initContainers.$name
fixedEnv
Override fixedEnv for the container
| Key | workload.$name.podSpec.containers.$name.fixedEnv |
| Type | map |
| Required | ❌ |
Helm tpl | ❌ |
| Default | {} |
Example
workload: workload-name: podSpec: containers: container-name: fixedEnv: {}fixedEnv.TZ
Override the timezone for the container
| Key | workload.$name.podSpec.containers.$name.fixedEnv.TZ |
| Type | string |
| Required | ❌ |
Helm tpl | ❌ |
| Default | See here |
Example
workload: workload-name: podSpec: containers: container-name: fixedEnv: TZ: "America/New_York"fixedEnv.UMASK
Override the umask for the container
| Key | workload.$name.podSpec.containers.$name.fixedEnv.UMASK |
| Type | string |
| Required | ❌ |
Helm tpl | ❌ |
| Default | See here |
Example
workload: workload-name: podSpec: containers: container-name: fixedEnv: UMASK: "003"fixedEnv.PUID
Override the PUID for the container
| Key | workload.$name.podSpec.containers.$name.fixedEnv.PUID |
| Type | string |
| Required | ❌ |
Helm tpl | ❌ |
| Default | See here |
Example
workload: workload-name: podSpec: containers: container-name: fixedEnv: PUID: "0"fixedEnv.NVIDIA_CAPS
Override the NVIDIA_CAPS for the container
| Key | workload.$name.podSpec.containers.$name.fixedEnv.NVIDIA_CAPS |
| Type | list |
| Required | ❌ |
Helm tpl | ❌ |
| Default | See here |
Example
workload: workload-name: podSpec: containers: container-name: fixedEnv: NVIDIA_CAPS: - computeFull Examples
workload: workload-name: enabled: true primary: true podSpec: containers: container-name: enabled: true primary: true fixedEnv: TZ: "America/New_York" NVIDIA_CAPS: - compute UMASK: "003" PUID: "0"