Termination
Appears in
.Values.workload.$name.podSpec.containers.$name
termination
Define termination for the container
| Key | workload.$name.podSpec.containers.$name.termination |
| Type | map |
| Required | ❌ |
Helm tpl | ❌ |
| Default | {} |
Example
workload: workload-name: podSpec: containers: container-name: termination: {}termination.messagePath
Define termination message path for the container
| Key | workload.$name.podSpec.containers.$name.termination.messagePath |
| Type | string |
| Required | ❌ |
Helm tpl | ✅ |
| Default | "" |
Example
workload: workload-name: podSpec: containers: container-name: termination: messagePath: /dev/termination-logtermination.messagePolicy
Define termination message policy for the container
| Key | workload.$name.podSpec.containers.$name.termination.messagePolicy |
| Type | string |
| Required | ❌ |
Helm tpl | ✅ |
| Default | "" |
Example
workload: workload-name: podSpec: containers: container-name: termination: messagePolicy: FileFull Examples
workload: workload-name: enabled: true primary: true podSpec: containers: container-name: enabled: true primary: true termination: messagePath: /dev/termination-log messagePolicy: File