From 2ee5a9f012cc99fd3621d78e288dc846b858d025 Mon Sep 17 00:00:00 2001 From: Milas Holsting Date: Thu, 14 May 2026 23:54:59 +0200 Subject: [PATCH] remove the expose service since it was so damn safe --- deploy/base/expose.yaml | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 deploy/base/expose.yaml diff --git a/deploy/base/expose.yaml b/deploy/base/expose.yaml deleted file mode 100644 index 2c152b5..0000000 --- a/deploy/base/expose.yaml +++ /dev/null @@ -1,15 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: postgres-nodeport - labels: - app: postgres -spec: - type: NodePort - ports: - - port: 5432 # The port the service listens on inside the cluster - targetPort: 5432 # The port the Postgres container is listening on - nodePort: 32432 # Optional: Fixed port between 30000-32767 - protocol: TCP - selector: - app: postgres