Use -i instead of -I in the helm deployment YAML for best minimal practice.
parent
9c8df1ad3b
commit
56040aa116
|
|
@ -205,7 +205,7 @@ spec:
|
||||||
image: {{ template "pgadmin4.image" . }}
|
image: {{ template "pgadmin4.image" . }}
|
||||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||||
command: ["sh", "-x", "-c"]
|
command: ["sh", "-x", "-c"]
|
||||||
args: ['ls /usr/bin/python3.* | sort -V -r | head -n 1 | xargs -I {} cp {} python3']
|
args: ['ls /usr/bin/python3.* | sort -V -r | head -n 1 | xargs -i cp {} python3']
|
||||||
workingDir: /emptyDir
|
workingDir: /emptyDir
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: empty-dir
|
- name: empty-dir
|
||||||
|
|
|
||||||
|
|
@ -153,5 +153,5 @@ containerSecurityContext:
|
||||||
appArmorProfile:
|
appArmorProfile:
|
||||||
type: RuntimeDefault
|
type: RuntimeDefault
|
||||||
windowsOptions:
|
windowsOptions:
|
||||||
|
|
||||||
hostProcess: false
|
hostProcess: false
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue