Add TTY and STDIN into ix-chart

This commit is contained in:
M. Rehan
2021-12-30 21:41:01 +05:00
parent 0bf03f19f2
commit 6aa3a4285d
37 changed files with 43 additions and 5 deletions

View File

@@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 2111.0.1
version: 2201.0.0
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
@@ -25,4 +25,3 @@ dependencies:
- name: common
repository: file://../../../library/common/2112.0.0
version: 2112.0.0

View File

@@ -502,6 +502,22 @@ questions:
- "definitions/gpuConfiguration"
attrs: []
- variable: tty
label: "Enable TTY"
description: "Determines whether containers in a pod runs with TTY enabled. By default pod has it disabled."
group: "Workload Details"
schema:
type: boolean
default: false
- variable: stdin
label: "Enable STDIN"
description: "Determines whether containers in a pod runs with stdin enabled. By default pod has it disabled."
group: "Workload Details"
schema:
type: boolean
default: false
- variable: securityContext
label: "Security Context"
group: "Workload Details"

View File

@@ -55,6 +55,8 @@ hostNetwork: {{ template "hostNetworkingConfiguration" . }}
containers:
- name: {{ .Chart.Name }}
{{- include "volumeMountsConfiguration" . | indent 2}}
tty: {{ .Values.tty }}
stdin: {{ .Values.stdin }}
securityContext:
privileged: {{ .Values.securityContext.privileged }}
{{ if .Values.securityContext.capabilities }}

View File

@@ -40,3 +40,5 @@ gpuConfiguration: {}
securityContext:
privileged: false
capabilities: []
tty: true
stdin: true

View File

@@ -3,4 +3,4 @@ dependencies:
repository: file://../../../library/common/2112.0.0
version: 2112.0.0
digest: sha256:47115d9b91afe42c8537dcf0fd8224f2f7d1c775f9ff860efa68a6b57d17d1c0
generated: "2021-12-06T21:24:36.595653+05:00"
generated: "2021-12-06T21:40:37.023887+05:00"

View File

@@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 2111.0.1
version: 2201.0.0
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
@@ -25,4 +25,3 @@ dependencies:
- name: common
repository: file://../../../library/common/2112.0.0
version: 2112.0.0

Binary file not shown.

View File

@@ -502,6 +502,22 @@ questions:
- "definitions/gpuConfiguration"
attrs: []
- variable: tty
label: "Enable TTY"
description: "Determines whether containers in a pod runs with TTY enabled. By default pod has it disabled."
group: "Workload Details"
schema:
type: boolean
default: false
- variable: stdin
label: "Enable STDIN"
description: "Determines whether containers in a pod runs with stdin enabled. By default pod has it disabled."
group: "Workload Details"
schema:
type: boolean
default: false
- variable: securityContext
label: "Security Context"
group: "Workload Details"

View File

@@ -55,6 +55,8 @@ hostNetwork: {{ template "hostNetworkingConfiguration" . }}
containers:
- name: {{ .Chart.Name }}
{{- include "volumeMountsConfiguration" . | indent 2}}
tty: {{ .Values.tty }}
stdin: {{ .Values.stdin }}
securityContext:
privileged: {{ .Values.securityContext.privileged }}
{{ if .Values.securityContext.capabilities }}

View File

@@ -40,3 +40,5 @@ gpuConfiguration: {}
securityContext:
privileged: false
capabilities: []
tty: true
stdin: true