deploy-templates/templates/servicemonitor.yaml (22 lines of code) (raw):

apiVersion: monitoring.coreos.com/v1 kind: ServiceMonitor metadata: name: {{ .Values.name }}-{{ .Values.namespace }} namespace: {{ .Values.monitoring.namespace }} labels: app: {{ .Values.name }} namespace: {{ .Values.namespace }} spec: endpoints: - bearerTokenFile: /var/run/secrets/kubernetes.io/serviceaccount/token interval: 30s path: {{ .Values.monitoring.prometheusScrapePath }} scheme: http targetPort: {{ .Values.port }} jobLabel: {{ .Values.monitoring.jobLabel }} namespaceSelector: matchNames: - {{ .Values.namespace }} selector: matchLabels: app: {{ .Values.name }}