mirror of
https://github.com/bitnami/charts.git
synced 2026-03-14 06:47:28 +08:00
* [bitnami/redis] New major version Signed-off-by: juan131 <juanariza@vmware.com> * Fix schema json Signed-off-by: juan131 <juanariza@vmware.com> * Remove trailing spaces Signed-off-by: juan131 <juanariza@vmware.com> * Improve scripts indentation Signed-off-by: juan131 <juanariza@vmware.com> * Fix scripts for sentinel Signed-off-by: juan131 <juanariza@vmware.com> * Deprecate usePassword Signed-off-by: juan131 <juanariza@vmware.com> * Port name to meet limitations Signed-off-by: juan131 <juanariza@vmware.com> * Include password validations during upgrades Signed-off-by: juan131 <juanariza@vmware.com> * Implemented requested changes from code review Signed-off-by: juan131 <juanariza@vmware.com> * Use port names compatible with IstIO Signed-off-by: juan131 <juanariza@vmware.com> * Add lifecyclehooks and fix typos * Allow custom networkpolicy rules for ingress & egress * [bitnami/redis] Update components versions Signed-off-by: Bitnami Containers <containers@bitnami.com> Co-authored-by: Bitnami Containers <containers@bitnami.com>
86 lines
3.6 KiB
YAML
86 lines
3.6 KiB
YAML
{{- if and .Values.metrics.enabled .Values.metrics.serviceMonitor.enabled }}
|
|
apiVersion: monitoring.coreos.com/v1
|
|
kind: ServiceMonitor
|
|
metadata:
|
|
name: {{ template "common.names.fullname" . }}
|
|
{{- if .Values.metrics.serviceMonitor.namespace }}
|
|
namespace: {{ .Values.metrics.serviceMonitor.namespace }}
|
|
{{- else }}
|
|
namespace: {{ .Release.Namespace | quote }}
|
|
{{- end }}
|
|
labels: {{- include "common.labels.standard" . | nindent 4 }}
|
|
{{- if .Values.metrics.serviceMonitor.additionalLabels }}
|
|
{{- include "common.tplvalues.render" (dict "value" .Values.metrics.serviceMonitor.additionalLabels "context" $) | nindent 4 }}
|
|
{{- end }}
|
|
{{- 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:
|
|
endpoints:
|
|
- port: tcp-metrics
|
|
{{- if .Values.metrics.serviceMonitor.interval }}
|
|
interval: {{ .Values.metrics.serviceMonitor.interval }}
|
|
{{- end }}
|
|
{{- if .Values.metrics.serviceMonitor.scrapeTimeout }}
|
|
scrapeTimeout: {{ .Values.metrics.serviceMonitor.scrapeTimeout }}
|
|
{{- end }}
|
|
{{- if .Values.metrics.serviceMonitor.honorLabels }}
|
|
honorLabels: {{ .Values.metrics.serviceMonitor.honorLabels }}
|
|
{{- end }}
|
|
{{- if .Values.metrics.serviceMonitor.relabellings }}
|
|
metricRelabelings: {{- toYaml .Values.metrics.serviceMonitor.relabellings | nindent 6 }}
|
|
{{- end }}
|
|
namespaceSelector:
|
|
matchNames:
|
|
- {{ .Release.Namespace }}
|
|
selector:
|
|
matchLabels: {{- include "common.labels.matchLabels" . | nindent 6 }}
|
|
app.kubernetes.io/component: metrics
|
|
{{- if .Values.metrics.sentinel.enabled }}
|
|
---
|
|
apiVersion: monitoring.coreos.com/v1
|
|
kind: ServiceMonitor
|
|
metadata:
|
|
name: {{ printf "%s-sentinel" (include "common.names.fullname" .) }}
|
|
{{- if .Values.metrics.serviceMonitor.namespace }}
|
|
namespace: {{ .Values.metrics.serviceMonitor.namespace }}
|
|
{{- else }}
|
|
namespace: {{ .Release.Namespace | quote }}
|
|
{{- end }}
|
|
labels: {{- include "common.labels.standard" . | nindent 4 }}
|
|
{{- if .Values.metrics.serviceMonitor.additionalLabels }}
|
|
{{- include "common.tplvalues.render" (dict "value" .Values.metrics.serviceMonitor.additionalLabels "context" $) | nindent 4 }}
|
|
{{- end }}
|
|
{{- 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:
|
|
endpoints:
|
|
- port: tcp-metrics
|
|
{{- if .Values.metrics.serviceMonitor.interval }}
|
|
interval: {{ .Values.metrics.serviceMonitor.interval }}
|
|
{{- end }}
|
|
{{- if .Values.metrics.serviceMonitor.scrapeTimeout }}
|
|
scrapeTimeout: {{ .Values.metrics.serviceMonitor.scrapeTimeout }}
|
|
{{- end }}
|
|
{{- if .Values.metrics.serviceMonitor.honorLabels }}
|
|
honorLabels: {{ .Values.metrics.serviceMonitor.honorLabels }}
|
|
{{- end }}
|
|
{{- if .Values.metrics.serviceMonitor.relabellings }}
|
|
metricRelabelings: {{- toYaml .Values.metrics.serviceMonitor.relabellings | nindent 6 }}
|
|
{{- end }}
|
|
namespaceSelector:
|
|
matchNames:
|
|
- {{ .Release.Namespace }}
|
|
selector:
|
|
matchLabels: {{- include "common.labels.matchLabels" . | nindent 6 }}
|
|
app.kubernetes.io/component: sentinel-metrics
|
|
{{- end }}
|
|
{{- end }}
|