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" . }}
|
||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||
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
|
||||
volumeMounts:
|
||||
- name: empty-dir
|
||||
|
|
|
|||
|
|
@ -153,5 +153,5 @@ containerSecurityContext:
|
|||
appArmorProfile:
|
||||
type: RuntimeDefault
|
||||
windowsOptions:
|
||||
|
||||
hostProcess: false
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue