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 bf6437b commit 768febaCopy full SHA for 768feba
.github/workflows/lint-and-test.yml
@@ -73,6 +73,15 @@ jobs:
73
with:
74
config: .github/configs/kind-config.yaml
75
76
+ - name: Deploy latest ArgoCD CRDs when testing ArgoCD extensions
77
+ if: |
78
+ contains(steps.list-changed.outputs.changed_charts, 'argocd-image-updater') ||
79
+ contains(steps.list-changed.outputs.changed_charts, 'argocd-apps')
80
+ run: |
81
+ helm repo add dandydeveloper https://dandydeveloper.github.io/charts/
82
+ helm dependency build charts/argo-cd/
83
+ helm template charts/argo-cd/ --set server.extensions.enabled=true -s templates/crds/* | kubectl apply -f
84
+
85
- name: Skip HPA tests of ArgoCD
86
if: contains(steps.list-changed.outputs.changed_charts, 'argo-cd')
87
run: |
0 commit comments