Skip to content

Commit

Permalink
fix: use standard helm values
Browse files Browse the repository at this point in the history
Signed-off-by: Vishal Choudhary <[email protected]>
  • Loading branch information
vishal-chdhry committed Dec 18, 2024
1 parent fea7724 commit b1bb06b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/conformance-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ jobs:
set -e
set -e
export HELM=${{ steps.helm.outputs.helm-path }}
helm install kyverno -n kyverno --create-namespace ./kyverno/charts/kyverno --wait --set features.policyExceptions.enabled=true --set features.policyExceptions.namespace="*"
curl https://raw.githubusercontent.com/kyverno/kyverno/refs/heads/main/scripts/config/standard/kyverno.yaml > values.yaml
helm install kyverno -n kyverno --create-namespace ./kyverno/charts/kyverno --wait --values values.yaml
- name: Wait for kyverno ready
run: |
set -e
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/migration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ jobs:
run: |
set -e
export HELM=${{ steps.helm.outputs.helm-path }}
helm install kyverno -n kyverno --create-namespace ./kyverno/charts/kyverno --wait --set features.policyExceptions.enabled=true --set features.policyExceptions.namespace="*"
curl https://raw.githubusercontent.com/kyverno/kyverno/refs/heads/main/scripts/config/standard/kyverno.yaml > values.yaml
helm install kyverno -n kyverno --create-namespace ./kyverno/charts/kyverno --wait --values values.yaml
- name: Wait for kyverno ready
run: |
set -e
Expand Down

0 comments on commit b1bb06b

Please sign in to comment.