k8s-platform/charts/postgres/templates/service.yaml

13 lines
217 B
YAML
Raw Normal View History

2026-06-16 00:03:01 +00:00
apiVersion: v1
kind: Service
metadata:
name: postgres
namespace: {{ .Values.namespace }}
spec:
type: ClusterIP
selector:
app: postgres
ports:
- name: postgres
port: 5432
targetPort: 5432