Skip to content

FixedEnv

Appears in

  • .Values.workload.$name.podSpec.containers.$name
  • .Values.workload.$name.podSpec.initContainers.$name

fixedEnv

Override fixedEnv for the container

Keyworkload.$name.podSpec.containers.$name.fixedEnv
Typemap
Required
Helm tpl
Default{}

Example

workload:
workload-name:
podSpec:
containers:
container-name:
fixedEnv: {}

fixedEnv.TZ

Override the timezone for the container

Keyworkload.$name.podSpec.containers.$name.fixedEnv.TZ
Typestring
Required
Helm tpl
DefaultSee here

Example

workload:
workload-name:
podSpec:
containers:
container-name:
fixedEnv:
TZ: "America/New_York"

fixedEnv.UMASK

Override the umask for the container

Keyworkload.$name.podSpec.containers.$name.fixedEnv.UMASK
Typestring
Required
Helm tpl
DefaultSee here

Example

workload:
workload-name:
podSpec:
containers:
container-name:
fixedEnv:
UMASK: "003"

fixedEnv.PUID

Override the PUID for the container

Keyworkload.$name.podSpec.containers.$name.fixedEnv.PUID
Typestring
Required
Helm tpl
DefaultSee here

Example

workload:
workload-name:
podSpec:
containers:
container-name:
fixedEnv:
PUID: "0"

fixedEnv.NVIDIA_CAPS

Override the NVIDIA_CAPS for the container

Keyworkload.$name.podSpec.containers.$name.fixedEnv.NVIDIA_CAPS
Typelist
Required
Helm tpl
DefaultSee here

Example

workload:
workload-name:
podSpec:
containers:
container-name:
fixedEnv:
NVIDIA_CAPS:
- compute

Full 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"