Skip to content

Commit

Permalink
chore: make sure the dependent repositories are available when chart …
Browse files Browse the repository at this point in the history
…testing and that referrred components are up-to-date.
  • Loading branch information
drcgjung committed May 13, 2024
1 parent 6551459 commit 03ffb12
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/helm-chart-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,10 @@ jobs:
# install the chart to the kind cluster and run helm test
# define charts to test with the --charts parameter
- name: Run chart-testing (install)
run: ct install --charts charts/agent-plane,charts/agent-plane-azure-vault --config charts/config/chart-testing-config.yaml --helm-extra-set-args="--set=imageRegistry=kind-registry:5000/"
run: |
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo add hashicorp https://helm.releases.hashicorp.com
ct install --charts charts/agent-plane,charts/agent-plane-azure-vault --config charts/config/chart-testing-config.yaml --helm-extra-set-args="--set=imageRegistry=kind-registry:5000/"
if: github.event_name != 'pull_request' || env.CHART_CHANGED == 'true'

# Upgrade the released chart version with the locally available chart
Expand Down
2 changes: 1 addition & 1 deletion charts/agent-plane/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ dependencies:
# HashiCorp Vault
- name: vault
alias: vault
version: 0.20.0
version: 0.27.0
repository: https://helm.releases.hashicorp.com
condition: install.vault
# PostgreSQL
Expand Down

0 comments on commit 03ffb12

Please sign in to comment.