From b00cc3c3968d0251586c8d895b6e989def05fa38 Mon Sep 17 00:00:00 2001 From: Sven Ketelsen Date: Thu, 2 Jun 2022 12:55:57 +0200 Subject: [PATCH] bugfix: wordpress --- .../maria/external-maria-service.yml | 20 ------------------- .../postgres/external-postgres-service.yml | 20 ------------------- 2 files changed, 40 deletions(-) delete mode 100644 smardigo/templates/maria/external-maria-service.yml delete mode 100644 smardigo/templates/postgres/external-postgres-service.yml diff --git a/smardigo/templates/maria/external-maria-service.yml b/smardigo/templates/maria/external-maria-service.yml deleted file mode 100644 index c13112a..0000000 --- a/smardigo/templates/maria/external-maria-service.yml +++ /dev/null @@ -1,20 +0,0 @@ ---- -apiVersion: v1 -kind: Service -metadata: - name: "{{ .Values.sharedService.maria.host.name }}" -spec: - ports: - - protocol: TCP - port: 3306 - targetPort: 3306 ---- -apiVersion: v1 -kind: Endpoints -metadata: - name: "{{ .Values.sharedService.maria.host.name }}" -subsets: - - addresses: - - ip: {{ .Values.sharedService.maria.host.ip }} - ports: - - port: 3306 \ No newline at end of file diff --git a/smardigo/templates/postgres/external-postgres-service.yml b/smardigo/templates/postgres/external-postgres-service.yml deleted file mode 100644 index 0ebda96..0000000 --- a/smardigo/templates/postgres/external-postgres-service.yml +++ /dev/null @@ -1,20 +0,0 @@ ---- -apiVersion: v1 -kind: Service -metadata: - name: "{{ .Values.sharedService.postgres.host.name }}" -spec: - ports: - - protocol: TCP - port: 5432 - targetPort: 5432 ---- -apiVersion: v1 -kind: Endpoints -metadata: - name: "{{ .Values.sharedService.postgres.host.name }}" -subsets: - - addresses: - - ip: {{ .Values.sharedService.postgres.host.ip }} - ports: - - port: 5432