23 lines
626 B
YAML
23 lines
626 B
YAML
|
{{- if or .Values.headlessService (and .Values.persistence.enabled (not .Values.persistence.existingClaim) (eq .Values.persistence.type "statefulset"))}}
|
||
|
apiVersion: v1
|
||
|
kind: Service
|
||
|
metadata:
|
||
|
name: {{ template "grafana.fullname" . }}-headless
|
||
|
namespace: {{ template "grafana.namespace" . }}
|
||
|
labels:
|
||
|
{{- include "grafana.labels" . | nindent 4 }}
|
||
|
{{- with .Values.annotations }}
|
||
|
annotations:
|
||
|
{{ toYaml . | indent 4 }}
|
||
|
{{- end }}
|
||
|
spec:
|
||
|
clusterIP: None
|
||
|
selector:
|
||
|
{{- include "grafana.selectorLabels" . | nindent 4 }}
|
||
|
type: ClusterIP
|
||
|
ports:
|
||
|
- protocol: TCP
|
||
|
port: 3000
|
||
|
targetPort: 3000
|
||
|
{{- end }}
|