Files
charts/bitnami/metallb/templates/controller/service.yaml
JB 7abded04db [bitnami/metallb] Fix metallb service type from None to ClusterIP (#4808)
None is not a valid service type when trying to apply this chart we get
```Error: Service "metallb-controller-metrics" is invalid: spec.type: Unsupported value: "None": supported values: "ClusterIP", "ExternalName", "LoadBalancer", "NodePort"```

Also added clusterIP: "None" to avoid using an ip address

Co-authored-by: jb-abbadie <jb-abbadie@users.noreply.github.com>
2020-12-22 16:55:44 +01:00

25 lines
941 B
YAML

{{- if .Values.controller.prometheus.serviceMonitor.enabled }}
apiVersion: v1
kind: Service
metadata:
name: {{ include "common.names.fullname" . }}-controller-metrics
labels: {{- include "common.labels.standard" . | nindent 4 }}
app.kubernetes.io/component: controller
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
spec:
type: ClusterIP
clusterIP: "None"
selector: {{- include "common.labels.matchLabels" . | nindent 4 }}
app.kubernetes.io/component: controller
ports:
- name: metrics
port: {{ .Values.controller.containerPort.metrics }}
protocol: TCP
targetPort: {{ .Values.controller.containerPort.metrics }}
{{- end }}