--- # ============================================================================ # Service - Hindsight external PostgreSQL # Peter Parker, Phase C, t_6d47a360 # # ClusterIP service named `hindsight-postgres` — this is the host the chart's # external Postgres config points at (values.yaml: postgresql.external.host). # The Hindsight API reaches it at hindsight-postgres:5432 within the namespace. # ============================================================================ apiVersion: v1 kind: Service metadata: name: hindsight-postgres namespace: hindsight labels: app.kubernetes.io/name: hindsight app.kubernetes.io/component: database app.kubernetes.io/part-of: platform-buildout spec: type: ClusterIP selector: app: hindsight-postgres ports: - name: postgres port: 5432 targetPort: 5432 protocol: TCP