From d50eba157f3371e301583a4da5b3badb36151923 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Sun, 28 Dec 2025 13:38:13 +0000 Subject: [PATCH] add correct key --- db/k8s/postgres/postgres-dev-stripe-to-invoice.yaml | 12 ++++++++++++ db/k8s/secrets/postgres-secret-prod.yaml | 10 ---------- 2 files changed, 12 insertions(+), 10 deletions(-) delete mode 100644 db/k8s/secrets/postgres-secret-prod.yaml diff --git a/db/k8s/postgres/postgres-dev-stripe-to-invoice.yaml b/db/k8s/postgres/postgres-dev-stripe-to-invoice.yaml index 6c33bff..7aff6a5 100644 --- a/db/k8s/postgres/postgres-dev-stripe-to-invoice.yaml +++ b/db/k8s/postgres/postgres-dev-stripe-to-invoice.yaml @@ -93,3 +93,15 @@ spec: ports: - port: 5432 targetPort: 5432 + +--- +apiVersion: v1 +kind: Secret +metadata: + name: postgres-secret + namespace: default +type: Opaque +stringData: + POSTGRES_USER: stripe_invoice + POSTGRES_PASSWORD: averysecretpasswordPersonAppleWinter938 + POSTGRES_DB: stripe_invoice \ No newline at end of file diff --git a/db/k8s/secrets/postgres-secret-prod.yaml b/db/k8s/secrets/postgres-secret-prod.yaml deleted file mode 100644 index 16da2cb..0000000 --- a/db/k8s/secrets/postgres-secret-prod.yaml +++ /dev/null @@ -1,10 +0,0 @@ -apiVersion: v1 -kind: Secret -metadata: - name: postgres-prod-secret - namespace: arc-systems -type: Opaque -stringData: - POSTGRES_USER: postgres - POSTGRES_PASSWORD: productionPassword1142M@ke!tH@rd2Br3akWith$ymb0ls - POSTGRES_DB: stripe_invoice