Skip to content

Commit

Permalink
install argocd on kubepi
Browse files Browse the repository at this point in the history
  • Loading branch information
kmadel authored Oct 13, 2023
1 parent c509249 commit 6b6e317
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/upgrade-install-argocd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,15 @@ jobs:
insecure: true
# Specify your Loft access key here
access-key: ${{ secrets.LOFT_ACCESS_KEY }}
- id: use-cluster

- id: argocd-upgrade-install
run: |
loft use cluster loft-cluster
kubectl get pods -A
helm repo add argo https://argoproj.github.io/argo-helm
helm repo update
helm upgrade --install argocd argo/argo-cd \
-n argocd --create-namespace --version 5.42.2 --wait \
--set configs.secret.githubSecret=${{ secrets.ARGOCD_GITHUB_WEBHOOK_SECRET }} \
--set ingress.hosts[0].host=argocd.${{ vars.BASE_HOST }} \
--set ingress.tls[0].hosts[0]=argocd.${{ vars.BASE_HOST }} \
--values ./argo-cd/values.yaml

0 comments on commit 6b6e317

Please sign in to comment.