27 lines
928 B
YAML
27 lines
928 B
YAML
{{- if eq .Values.architecture "replication" }}
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "mysql.secondary.fullname" . }}-headless
|
|
namespace: {{ .Release.Namespace }}
|
|
labels: {{- include "common.labels.standard" . | nindent 4 }}
|
|
app.kubernetes.io/component: secondary
|
|
{{- 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: mysql
|
|
port: {{ .Values.secondary.service.port }}
|
|
targetPort: mysql
|
|
selector: {{ include "common.labels.matchLabels" . | nindent 4 }}
|
|
app.kubernetes.io/component: secondary
|
|
{{- end }}
|