fix(ci): override alpine/helm entrypoint so shell wrapper runs

The alpine/helm:4.1 image has 'helm' as ENTRYPOINT. GitLab CI wraps
step_script in sh, which the container resolves to 'helm sh ...',
failing with 'unknown command sh for helm'. Setting entrypoint: [""]
lets GitLab's sh wrapper execute normally before invoking helm.
This commit is contained in:
2026-04-18 03:57:50 +02:00
parent ad846be2c7
commit cd7ea0b47b

View File

@@ -26,7 +26,9 @@ backend:docker:
backend:deploy:
stage: deploy
image: alpine/helm:4.1
image:
name: alpine/helm:4.1
entrypoint: [""]
before_script:
- mkdir -p ~/.kube
- echo "$KUBECONFIG_DATA" > ~/.kube/config
@@ -74,7 +76,9 @@ web:docker:
web:deploy:
stage: deploy
image: alpine/helm:4.1
image:
name: alpine/helm:4.1
entrypoint: [""]
before_script:
- mkdir -p ~/.kube
- echo "$KUBECONFIG_DATA" > ~/.kube/config