We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2757f9 commit 15082ffCopy full SHA for 15082ff
.github/workflows/lint-and-test.yml
@@ -61,6 +61,15 @@ jobs:
61
if: steps.list-changed.outputs.changed == 'true'
62
with:
63
config: .github/configs/kind-config.yaml
64
+
65
+ - name: Deploy latest ArgoCD CRDs when testing ArgoCD extensions
66
+ if: |
67
+ contains(steps.list-changed.outputs.changed_charts, 'argocd-image-updater') ||
68
+ contains(steps.list-changed.outputs.changed_charts, 'argocd-apps')
69
+ run: |
70
+ helm repo add dandydeveloper https://dandydeveloper.github.io/charts/
71
+ helm dependency build charts/argo-cd/
72
+ helm template charts/argo-cd/ --set server.extensions.enabled=true -s templates/crds/* | kubectl apply -f -
73
74
- name: Skip HPA tests of ArgoCD
75
if: contains(steps.list-changed.outputs.changed_charts, 'argo-cd')
0 commit comments