Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fill celery-flower command arguments from values #72

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion flower/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
description: Celery Flower
name: flower
version: 0.3.0
version: 0.4.0
keywords:
- celery
- flower
Expand Down
4 changes: 2 additions & 2 deletions flower/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ spec:
imagePullPolicy: {{ .Values.image.pullPolicy }}
command:
- flower
- --broker
- amqp://guest:guest@rabbitmq:5672//
- --port={{ .Values.service.internalPort }}
- --broker={{ .Values.command.broker }}
ports:
- containerPort: {{ .Values.service.internalPort }}
livenessProbe:
Expand Down
3 changes: 3 additions & 0 deletions flower/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,6 @@ ingress:
# - secretName: chart-example-tls
# hosts:
# - chart-example.local

command:
broker: amqp://guest:guest@rabbitmq:5672//