Merge branch 'master' into master

This commit is contained in:
CuBiC 2020-10-07 19:38:08 +02:00 committed by GitHub
commit 20047cade1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 1 deletions

View File

@ -2,7 +2,7 @@ apiVersion: v2
name: uptimerobot-prometheus name: uptimerobot-prometheus
description: Prometheus Exporter for the official uptimerobot CLI description: Prometheus Exporter for the official uptimerobot CLI
type: application type: application
version: 2.0.0 version: 2.0.1
appVersion: 0.0.1 appVersion: 0.0.1
keywords: keywords:
- uptimerobot - uptimerobot

View File

@ -4,6 +4,10 @@ metadata:
name: {{ include "uptimerobot-prometheus.fullname" . }} name: {{ include "uptimerobot-prometheus.fullname" . }}
labels: labels:
{{- include "uptimerobot-prometheus.labels" . | nindent 4 }} {{- include "uptimerobot-prometheus.labels" . | nindent 4 }}
{{- if .Values.service.annotations }}
annotations:
{{ toYaml .Values.service.annotations | indent 4 }}
{{- end }}
spec: spec:
type: {{ .Values.service.type }} type: {{ .Values.service.type }}
ports: ports:

View File

@ -29,6 +29,10 @@ securityContext: {}
service: service:
type: ClusterIP type: ClusterIP
port: 9705 port: 9705
# Sometimes you may need to add annotations to the service
# to integrate with external operators
# annotations:
# prometheus.io/scrape: "true"
resources: {} resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious # We usually recommend not to specify default resources and to leave this as a conscious