Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
andreyev committed Oct 6, 2024
1 parent d12fc61 commit 35a1452
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions rabbitmq/applicationset.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
apiVersion: argoproj.io/v1alpha1
kind: ApplicationSet
metadata:
name: rabbitmq-applicationset
namespace: argocd
spec:
generators:
- list:
elements:
- cluster: "in-cluster"
template:
metadata:
name: rabbitmq
spec:
project: default
source:
repoURL: https://charts.bitnami.com/bitnami # Community Helm repo URL
chart: rabbitmq # Helm chart name
targetRevision: 12.0.0 # Chart version
helm:
releaseName: rabbitmq-release # Helm release name
values: | # Optional custom values.yaml content
persistence:
enabled: true
size: 8Gi
resources:
requests:
memory: "512Mi"
cpu: "500m"
limits:
memory: "1Gi"
cpu: "1"
destination:
server: https://kubernetes.default.svc
namespace: default # Target namespace
syncPolicy:
automated:
prune: true # Remove obsolete resources
selfHeal: true # Automatically fix drift

0 comments on commit 35a1452

Please sign in to comment.