Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions components/nautobot/cloudnative-postgres-nautobot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ apiVersion: postgresql.cnpg.io/v1
kind: Cluster
metadata:
name: nautobot-cluster
annotations:
# do not allow ArgoCD to delete our DB
argocd.argoproj.io/sync-options: Delete=false
spec:
imageName: ghcr.io/cloudnative-pg/postgresql:15.5
instances: 3
Expand Down
3 changes: 3 additions & 0 deletions components/nautobot/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ redis:
auth:
existingSecret: nautobot-redis
existingSecretPasswordKey: NAUTOBOT_REDIS_PASSWORD
commonAnnotations:
# do not allow ArgoCD to delete our redis
argocd.argoproj.io/sync-options: Delete=false

ingress:
enabled: true
Expand Down
3 changes: 3 additions & 0 deletions components/openstack/mariadb-instance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ apiVersion: k8s.mariadb.com/v1alpha1
kind: MariaDB
metadata:
name: mariadb # this name is referenced by other resource kinds
annotations:
# do not allow ArgoCD to delete our DB
argocd.argoproj.io/sync-options: Delete=false
spec:
rootPasswordSecretKeyRef:
name: mariadb
Expand Down
6 changes: 6 additions & 0 deletions components/openstack/memcached-values.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
---

commonAnnotations:
# do not allow ArgoCD to delete our memcached
argocd.argoproj.io/sync-options: Delete=false

metrics:
enabled: true
3 changes: 3 additions & 0 deletions components/openstack/openstack-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@ apiVersion: rabbitmq.com/v1beta1
kind: RabbitmqCluster
metadata:
name: rabbitmq
annotations:
# do not allow ArgoCD to delete our cluster
argocd.argoproj.io/sync-options: Delete=false