diff --git a/components/nautobot/kustomization.yaml b/components/nautobot/kustomization.yaml index 8c993f29..4970201f 100644 --- a/components/nautobot/kustomization.yaml +++ b/components/nautobot/kustomization.yaml @@ -3,7 +3,6 @@ apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization resources: - - postgres-nautobot.yaml - cloudnative-postgres-nautobot.yaml - secretstore-nautobot.yaml - external-secret-nautobot-sso.yaml diff --git a/components/nautobot/nautobot-values.yaml b/components/nautobot/nautobot-values.yaml index 7ad0cb91..83198e78 100644 --- a/components/nautobot/nautobot-values.yaml +++ b/components/nautobot/nautobot-values.yaml @@ -5,13 +5,6 @@ nautobot: db: engine: "django.db.backends.postgresql" - # Using Crunchy postgres operator: - # host: "nautobot-primary.nautobot.svc" - # name: "nautobot" - # user: "nautobot" - # existingSecret: "nautobot-pguser-nautobot" - # existingSecretPasswordKey: "password" - # Using CloudNative postgres operator: host: "nautobot-cluster-rw.nautobot.svc" name: "app" diff --git a/components/nautobot/postgres-nautobot.yaml b/components/nautobot/postgres-nautobot.yaml deleted file mode 100644 index 57d83811..00000000 --- a/components/nautobot/postgres-nautobot.yaml +++ /dev/null @@ -1,32 +0,0 @@ -apiVersion: postgres-operator.crunchydata.com/v1beta1 -kind: PostgresCluster -metadata: - name: nautobot -spec: - image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-15.5-0 - postgresVersion: 15 - instances: - - name: instance1 - dataVolumeClaimSpec: - accessModes: - - "ReadWriteOnce" - resources: - requests: - storage: 1Gi - users: - - name: nautobot - databases: - - nautobot - options: "SUPERUSER" - backups: - pgbackrest: - image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.47-2 - repos: - - name: repo1 - volume: - volumeClaimSpec: - accessModes: - - "ReadWriteOnce" - resources: - requests: - storage: 1Gi diff --git a/operators/postgres-operator/kustomization.yaml b/operators/postgres-operator/kustomization.yaml deleted file mode 100644 index 54bf7612..00000000 --- a/operators/postgres-operator/kustomization.yaml +++ /dev/null @@ -1,21 +0,0 @@ -apiVersion: kustomize.config.k8s.io/v1beta1 -kind: Kustomization - -resources: - - https://github.com/CrunchyData/postgres-operator-examples.git//kustomize/install/namespace/?ref=main - - https://github.com/CrunchyData/postgres-operator-examples.git//kustomize/install/default/?ref=main - -patches: -- patch: |- - apiVersion: apps/v1 - kind: Deployment - metadata: - name: pgo - spec: - template: - spec: - containers: - - name: operator - env: - - name: CRUNCHY_DEBUG - value: "false"