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

13 lines
237 B
YAML
Raw Normal View History

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