From bb7ebe1e67f2a6a60e44a681cbc2b1cf025ab78e Mon Sep 17 00:00:00 2001 From: Jonny Ervine Date: Mon, 22 Jan 2024 20:49:18 +0800 Subject: [PATCH] Remove stdin and tty --- cloudflared/charts/common/templates/lib/pod/_container.tpl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cloudflared/charts/common/templates/lib/pod/_container.tpl b/cloudflared/charts/common/templates/lib/pod/_container.tpl index e1ab597..ff5af45 100644 --- a/cloudflared/charts/common/templates/lib/pod/_container.tpl +++ b/cloudflared/charts/common/templates/lib/pod/_container.tpl @@ -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 }}