{{- if .Values.database.enabled }} {{- $ns := include "cloudhost-app.namespace" . -}} {{- $dbName := include "cloudhost-app.dbDeploymentName" . -}} {{- $dbPort := include "cloudhost-app.dbPort" . -}} apiVersion: v1 kind: Service metadata: name: {{ $dbName }} namespace: {{ $ns }} labels: app: {{ $dbName }} {{- include "cloudhost-app.labels" . | nindent 4 }} spec: type: ClusterIP selector: app: {{ $dbName }} ports: - port: {{ include "cloudhost-app.dbPort" . | int }} targetPort: {{ include "cloudhost-app.dbPort" . | int }} protocol: TCP {{- end }}