Remove stdin and tty

This commit is contained in:
Jonny Ervine 2024-01-22 20:49:18 +08:00
parent 599f6b8cac
commit bb7ebe1e67

View File

@ -13,7 +13,8 @@ objectData: The object data to be used to render the Pod.
- name: {{ $objectData.name }}
image: {{ printf "%s:%s" $imageObj.repository $imageObj.tag }}
imagePullPolicy: {{ $imageObj.pullPolicy }}
tty: {{ $objectData.tty | default false }}
stdin: {{ $objectData.stdin }}
tty: {{ $objectData.tty }}
{{- with (include "tc.v1.common.lib.container.command" (dict "rootCtx" $rootCtx "objectData" $objectData) | trim) }}
command:
{{- . | nindent 4 }}