apiVersion: v1 kind: Service metadata: name: {{ include "mssql.primary.fullname" . }}-headless namespace: {{ include "common.names.namespace" . | quote }} labels: {{- include "common.labels.standard" . | nindent 4 }} app.kubernetes.io/component: primary {{- if .Values.commonLabels }} {{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }} {{- end }} annotations: {{- if .Values.commonAnnotations }} {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }} {{- end }} spec: type: ClusterIP clusterIP: None publishNotReadyAddresses: true ports: - name: mssql port: {{ .Values.primary.service.ports.mssql }} targetPort: mssql selector: {{ include "common.labels.matchLabels" . | nindent 4 }} app.kubernetes.io/component: primary