mirror of
https://github.com/bitnami/charts.git
synced 2026-03-10 06:57:55 +08:00
* feat(postgresql-ha): update metrics to match with servicemonitor Signed-off-by: Johan Lore <johan.lore@free.fr> update metrics to match with servicemonitor selector
48 lines
2.2 KiB
YAML
48 lines
2.2 KiB
YAML
{{- if .Values.metrics.enabled }}
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ printf "%s-metrics" (include "postgresql-ha.postgresql" .) }}
|
|
namespace: {{ include "common.names.namespace" . | quote }}
|
|
labels: {{- include "common.labels.standard" . | nindent 4 }}
|
|
app.kubernetes.io/component: postgresql
|
|
{{- if .Values.commonLabels }}
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
{{- if .Values.metrics.serviceMonitor.selector }}
|
|
{{- include "common.tplvalues.render" (dict "value" .Values.metrics.serviceMonitor.selector "context" $) | nindent 4 }}
|
|
{{- end }}
|
|
annotations:
|
|
{{- if .Values.metrics.annotations }}
|
|
{{- include "common.tplvalues.render" (dict "value" .Values.metrics.annotations "context" $) | nindent 4 }}
|
|
{{- end }}
|
|
{{- if .Values.commonAnnotations }}
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
type: {{ .Values.metrics.service.type }}
|
|
{{- if (or (eq .Values.metrics.service.type "LoadBalancer") (eq .Values.metrics.service.type "NodePort")) }}
|
|
externalTrafficPolicy: {{ .Values.metrics.service.externalTrafficPolicy | quote }}
|
|
{{- end }}
|
|
{{ if .Values.metrics.service.clusterIP }}
|
|
clusterIP: {{ .Values.metrics.service.clusterIP }}
|
|
{{ end }}
|
|
{{ if eq .Values.metrics.service.type "LoadBalancer" }}
|
|
loadBalancerSourceRanges: {{ .Values.metrics.service.loadBalancerSourceRanges }}
|
|
{{ end }}
|
|
{{- if (and (eq .Values.metrics.service.type "LoadBalancer") (not (empty .Values.metrics.service.loadBalancerIP))) }}
|
|
loadBalancerIP: {{ .Values.metrics.service.loadBalancerIP }}
|
|
{{- end }}
|
|
ports:
|
|
- name: metrics
|
|
port: {{ .Values.metrics.service.ports.metrics }}
|
|
targetPort: metrics
|
|
{{- if (and (or (eq .Values.metrics.service.type "NodePort") (eq .Values.metrics.service.type "LoadBalancer")) (not (empty .Values.metrics.service.nodePorts.metrics))) }}
|
|
nodePort: {{ .Values.metrics.service.nodePorts.metrics }}
|
|
{{- else if eq .Values.metrics.service.type "ClusterIP" }}
|
|
nodePort: null
|
|
{{- end }}
|
|
selector: {{- include "common.labels.matchLabels" . | nindent 4 }}
|
|
app.kubernetes.io/component: postgresql
|
|
{{- end }}
|