Skip to content

Commit

Permalink
fix: add flower admin panel
Browse files Browse the repository at this point in the history
Signed-off-by: Ilya Kheifets <ikheifets@splunk.com>
  • Loading branch information
ikheifets-splunk committed Oct 18, 2024
1 parent 37f5282 commit ca534db
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: flower
namespace: default
spec:
replicas: 1
selector:
matchLabels:
app: flower
template:
metadata:
labels:
app: flower
spec:
containers:
- name: flower
image: mher/flower
env:
- name: CELERY_BROKER_URL
value: redis://snmp-redis-headless:6379/0
ports:
- containerPort: 5555
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
apiVersion: v1
kind: Service
metadata:
name: flower-svc
namespace: default

spec:
selector:
app: flower
ports:
- protocol: TCP
port: 80
targetPort: 5555
type: LoadBalancer
externalIPs:
- 10.202.16.140

0 comments on commit ca534db

Please sign in to comment.