Skip to content

Commit

Permalink
Update argo-cd.md
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick-hermann-sva authored Jan 11, 2025
1 parent 3f712e0 commit 8fe4fa9
Showing 1 changed file with 49 additions and 1 deletion.
50 changes: 49 additions & 1 deletion argo-cd.md
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ helm template ${ARGOCD_APP_NAME} -n ${ARGOCD_APP_NAMESPACE} -f <(echo "${ARGOCD_

</details>

<details><summary><b>AVP APPLICATION</b></summary>
<details><summary><b>AVP APPLICATION (PATH, MANIFEST)</b></summary>

```yaml
apiVersion: argoproj.io/v1alpha1
Expand All @@ -560,6 +560,54 @@ spec:
</details>
<details><summary><b>AVP APPLICATION (PATH, HELM + VALUES)</b></summary>
```yaml
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: homerun
spec:
destination:
name: ''
namespace: homerun
server: https://kubernetes.default.svc
source:
path: homerun
repoURL: https://codehub.sva.de/Lab/stuttgart-things/homerun/release.git
targetRevision: HEAD
plugin:
name: argocd-vault-plugin-helm
env:
- name: HELM_VALUES
value: |
text-catcher:
enabled: true
redis-stack:
enabled: true
global:
redis:
password: <path:apps/data/homerun#redisPassword>
master:
persistence:
enabled: true
storageClass: nfs4-csi
replica:
persistence:
enabled: true
storageClass: nfs4-csi
sources: []
project: in-cluster
syncPolicy:
syncOptions:
- Replace=true
- Validate=false
- CreateNamespace=true
```
</details>
<details><summary><b>AVP HELM-CHART</b></summary>
```bash
Expand Down

0 comments on commit 8fe4fa9

Please sign in to comment.