From 56040aa1167f2f406aeeaece5f6c8d793de4ca2b Mon Sep 17 00:00:00 2001 From: Koren Peretz <62677694+KorenP1@users.noreply.github.com> Date: Mon, 1 Dec 2025 12:57:46 +0200 Subject: [PATCH] Use -i instead of -I in the helm deployment YAML for best minimal practice. --- pkg/helm/templates/deployment.yaml | 2 +- pkg/helm/values.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/helm/templates/deployment.yaml b/pkg/helm/templates/deployment.yaml index 017094f23..855115795 100644 --- a/pkg/helm/templates/deployment.yaml +++ b/pkg/helm/templates/deployment.yaml @@ -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 diff --git a/pkg/helm/values.yaml b/pkg/helm/values.yaml index cf9aaf3c1..873841480 100644 --- a/pkg/helm/values.yaml +++ b/pkg/helm/values.yaml @@ -153,5 +153,5 @@ containerSecurityContext: appArmorProfile: type: RuntimeDefault windowsOptions: - hostProcess: false +