Skip to content

Commit

Permalink
ci: Install cert-manager dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
mkilchhofer committed Jul 17, 2023
1 parent 25e9877 commit 1d51b6d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/lint-test-chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,16 @@ jobs:
with:
wait: 120s

- name: Install cert-manager dependency
if: fromJSON(steps.changes.outputs.changed)
run: |
helm repo add jetstack https://charts.jetstack.io
helm install cert-manager jetstack/cert-manager \
--namespace cert-manager \
--create-namespace \
--set installCRDs=true \
--set extraArgs='{--enable-certificate-owner-ref}'
- name: Run chart-testing install
if: fromJSON(steps.changes.outputs.changed)
run: ct install

0 comments on commit 1d51b6d

Please sign in to comment.