Add flower (disabled by default)
This commit is contained in:
parent
7144d26954
commit
0e92508ac3
2 changed files with 85 additions and 0 deletions
18
templates/flower/service.yaml
Normal file
18
templates/flower/service.yaml
Normal file
|
@ -0,0 +1,18 @@
|
|||
{{- if .Values.flower.enabled -}}
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: {{ include "django.fullname" . }}-flower
|
||||
labels:
|
||||
{{- include "django.labels" . | nindent 4 }}
|
||||
spec:
|
||||
type: {{ .Values.flower.service.type }}
|
||||
ports:
|
||||
- port: {{ .Values.flower.service.port }}
|
||||
targetPort: http
|
||||
protocol: TCP
|
||||
name: http
|
||||
selector:
|
||||
{{- include "django.selectorLabels" . | nindent 4 }}
|
||||
app.kubernetes.io/component: flower
|
||||
{{- end }}
|
Loading…
Add table
Add a link
Reference in a new issue