Commit e156828b authored by Mike Danese's avatar Mike Danese

removed unneccesary usage of hostport from clerey-rabbit examples

parent f3b752d8
...@@ -242,15 +242,12 @@ spec: ...@@ -242,15 +242,12 @@ spec:
containers: containers:
- image: endocode/flower - image: endocode/flower
name: flower name: flower
ports:
- containerPort: 5555
hostPort: 5555
resources: resources:
limits: limits:
cpu: 100m cpu: 100m
``` ```
This will bring up a new pod with Flower installed and port 5555 (Flower's default port) exposed. This image uses the following command to start Flower: This will bring up a new pod with Flower installed and port 5555 (Flower's default port) exposed through the service endpoint. This image uses the following command to start Flower:
```sh ```sh
flower --broker=amqp://guest:guest@${RABBITMQ_SERVICE_SERVICE_HOST:localhost}:5672// flower --broker=amqp://guest:guest@${RABBITMQ_SERVICE_SERVICE_HOST:localhost}:5672//
......
...@@ -17,9 +17,6 @@ spec: ...@@ -17,9 +17,6 @@ spec:
containers: containers:
- image: endocode/flower - image: endocode/flower
name: flower name: flower
ports:
- containerPort: 5555
hostPort: 5555
resources: resources:
limits: limits:
cpu: 100m cpu: 100m
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment