Skip to content

Commit 56040aa

Browse files
authored
Use -i instead of -I in the helm deployment YAML for best minimal practice.
1 parent 9c8df1a commit 56040aa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/helm/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ spec:
205205
image: {{ template "pgadmin4.image" . }}
206206
imagePullPolicy: {{ .Values.image.pullPolicy }}
207207
command: ["sh", "-x", "-c"]
208-
args: ['ls /usr/bin/python3.* | sort -V -r | head -n 1 | xargs -I {} cp {} python3']
208+
args: ['ls /usr/bin/python3.* | sort -V -r | head -n 1 | xargs -i cp {} python3']
209209
workingDir: /emptyDir
210210
volumeMounts:
211211
- name: empty-dir

pkg/helm/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,5 +153,5 @@ containerSecurityContext:
153153
appArmorProfile:
154154
type: RuntimeDefault
155155
windowsOptions:
156-
157156
hostProcess: false
157+

0 commit comments

Comments
 (0)