mirror of
https://github.com/bitnami/charts.git
synced 2026-03-29 16:27:11 +08:00
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>
25 lines
941 B
YAML
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 }}
|