From 952e3f7d56b4b5bb0502b7cc3f1b9a667a01f9ef Mon Sep 17 00:00:00 2001 From: Yury Tsarev Date: Thu, 30 Jan 2025 11:54:51 +0100 Subject: [PATCH] Switch back to original network name and region Switch back to original network name and region as Connection issue is fixed Signed-off-by: Yury Tsarev --- examples/mysql-claim.yaml | 4 ++-- examples/network-xr.yaml | 4 ++-- examples/postgres-claim.yaml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/mysql-claim.yaml b/examples/mysql-claim.yaml index 8b6737a..2752d41 100644 --- a/examples/mysql-claim.yaml +++ b/examples/mysql-claim.yaml @@ -10,14 +10,14 @@ spec: parameters: engine: mysql engineVersion: "8_0" - region: europe-central2 + region: us-west2 storageGB: 10 passwordSecretRef: namespace: default name: mysqlsecret key: password networkRef: - id: configuration-gcp-database-eu + id: configuration-gcp-database writeConnectionSecretToRef: name: configuration-gcp-database-mysql-conn --- diff --git a/examples/network-xr.yaml b/examples/network-xr.yaml index ad761c8..0f94127 100644 --- a/examples/network-xr.yaml +++ b/examples/network-xr.yaml @@ -4,5 +4,5 @@ metadata: name: configuration-gcp-database spec: parameters: - id: configuration-gcp-database-eu - region: europe-central2 + id: configuration-gcp-database + region: us-west2 diff --git a/examples/postgres-claim.yaml b/examples/postgres-claim.yaml index 12c17aa..0ff33d7 100644 --- a/examples/postgres-claim.yaml +++ b/examples/postgres-claim.yaml @@ -10,14 +10,14 @@ spec: parameters: engine: postgres engineVersion: "13" - region: europe-central2 + region: us-west2 storageGB: 10 passwordSecretRef: namespace: default name: psqlsecret key: password networkRef: - id: configuration-gcp-database-eu + id: configuration-gcp-database writeConnectionSecretToRef: name: configuration-gcp-database-postgres-conn ---