Files
Schulung_Docker_k8s/k8s/carpool/postgres-service.yaml
nutzer26 8ee05cb88d added
2022-12-16 12:21:57 +01:00

15 lines
219 B
YAML

apiVersion: v1
kind: Service
metadata:
labels:
app: postgres
name: postgres
spec:
ports:
- name: postgres
port: 5432
protocol: TCP
targetPort: 5432
selector:
app: postgres
type: ClusterIP