Skip to content

Commit

Permalink
Bug Fix: Forcing dependency updates when installing the operator
Browse files Browse the repository at this point in the history
Signed-off-by: Itay Grudev <[email protected]>
  • Loading branch information
itay-grudev committed Mar 22, 2024
1 parent 12240c0 commit 50d1724
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/actions/deploy-operator/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ runs:
- name: Deploy the operator
shell: bash
run: |
helm dependency build charts/cloudnative-pg
helm upgrade --install cnpg --namespace cnpg-system \
--create-namespace charts/cloudnative-pg --wait
helm upgrade \
--install \
--namespace cnpg-system \
--create-namespace \
--wait \
--dependency-update \
cnpg charts/cloudnative-pg

0 comments on commit 50d1724

Please sign in to comment.