Skip to content

Commit 516ac1a

Browse files
committed
fix wrong storage type definition
1 parent 9b72220 commit 516ac1a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

helm-deploy/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,12 @@ runs:
7272
- name: Deploy Helm chart
7373
shell: bash
7474
working-directory: ${{ inputs.working-directory }}
75+
env:
76+
HELM_DRIVER: configmaps
7577
run: |
7678
helm upgrade --wait --install ${{ inputs.release-name }} ./${{ inputs.helm-package }} \
7779
--namespace ${{ inputs.namespace }} \
7880
--history-max 10 \
79-
--storage-type configmaps \
8081
--values ${{ inputs.values-file }} \
8182
--atomic --timeout ${{ inputs.timeout }} \
8283
--set image.tag=${{ inputs.image-tag }}

0 commit comments

Comments
 (0)