From 062e7c2a2f0e666ba87d4a0337e5774cf841b3f9 Mon Sep 17 00:00:00 2001 From: "rajesh.kumar" Date: Tue, 17 Oct 2023 15:29:20 +0530 Subject: [POSTGRES][COMMON] Add support for postgres operator Add template for the postgres operator instance setup and modifications to use the postgres instance via Operator TBD: Update of documentation and fix for clients (DMaaP, CPS) Issue-ID: OOM-3247 Change-Id: I56c34400dc73c71b936a51260efd231017adaeae Signed-off-by: rajesh.kumar --- kubernetes/common/postgres/templates/service-replica.yaml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'kubernetes/common/postgres/templates/service-replica.yaml') diff --git a/kubernetes/common/postgres/templates/service-replica.yaml b/kubernetes/common/postgres/templates/service-replica.yaml index d92a0833af..68694561bd 100644 --- a/kubernetes/common/postgres/templates/service-replica.yaml +++ b/kubernetes/common/postgres/templates/service-replica.yaml @@ -13,6 +13,7 @@ # # See the License for the specific language governing permissions and # # limitations under the License. */}} +{{- if not .Values.global.postgres.useOperator }} apiVersion: v1 kind: Service metadata: @@ -39,3 +40,4 @@ spec: selector: name: "{{.Values.container.name.replica}}" release: {{ include "common.release" . }} +{{- end }} \ No newline at end of file -- cgit 1.2.3-korg