summaryrefslogtreecommitdiff
path: root/k8s/postgres-service.yaml
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-09-06 16:09:25 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-09-06 16:09:25 +0200
commitff68c8cd24baef66ebb038d237b8f501c84edde5 (patch)
treea719191dce466a03244a705337f58c8f83f6f926 /k8s/postgres-service.yaml
parentc4ef50c1f566b86c8892fa344ade8d5ca66fb93b (diff)
Add script and configuration for Kubernetes
Diffstat (limited to 'k8s/postgres-service.yaml')
-rw-r--r--k8s/postgres-service.yaml11
1 files changed, 11 insertions, 0 deletions
diff --git a/k8s/postgres-service.yaml b/k8s/postgres-service.yaml
new file mode 100644
index 0000000..ad3b969
--- /dev/null
+++ b/k8s/postgres-service.yaml
@@ -0,0 +1,11 @@
+apiVersion: v1
+kind: Service
+metadata:
+ name: postgres-service
+spec:
+ ports:
+ - port: 5432
+ targetPort: 5432
+ selector:
+ app: postgres
+ type: ClusterIP