23 lines
612 B
YAML
23 lines
612 B
YAML
|
|
{{- if .Values.dashboard.enabled -}}
|
||
|
|
apiVersion: v1
|
||
|
|
kind: Service
|
||
|
|
metadata:
|
||
|
|
name: {{ include "argo-rollouts.fullname" . }}-dashboard
|
||
|
|
labels:
|
||
|
|
app.kubernetes.io/component: {{ .Values.dashboard.component }}
|
||
|
|
{{- include "argo-rollouts.labels" . | nindent 4 }}
|
||
|
|
{{- with .Values.serviceAnnotations }}
|
||
|
|
annotations:
|
||
|
|
{{- toYaml . | nindent 4 }}
|
||
|
|
{{- end }}
|
||
|
|
spec:
|
||
|
|
ports:
|
||
|
|
- name: dashboard
|
||
|
|
protocol: TCP
|
||
|
|
port: 3100
|
||
|
|
targetPort: 3100
|
||
|
|
selector:
|
||
|
|
app.kubernetes.io/component: {{ .Values.dashboard.component }}
|
||
|
|
{{- include "argo-rollouts.selectorLabels" . | nindent 4 }}
|
||
|
|
{{- end }}
|