You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
388 B
YAML

---
apiVersion: v1
kind: Service
metadata:
name: "{{ .Values.sharedService.postgres.host.name }}"
spec:
ports:
- protocol: TCP
port: 5432
targetPort: 5432
---
apiVersion: v1
kind: Endpoints
metadata:
name: "{{ .Values.sharedService.postgres.host.name }}"
subsets:
- addresses:
- ip: {{ .Values.sharedService.postgres.host.ip }}
ports:
- port: 5432