
Adds an example of using Kubernetes to build a distributed task queue using Celery along with a RabbitMQ broker and Flower frontend. Resolves: #1788
14 lines
214 B
JSON
14 lines
214 B
JSON
{
|
|
"id": "rabbitmq-service",
|
|
"kind": "Service",
|
|
"apiVersion": "v1beta1",
|
|
"port": 5672,
|
|
"containerPort": 5672,
|
|
"selector": {
|
|
"app": "taskQueue"
|
|
},
|
|
"labels": {
|
|
"name": "rabbitmq-service"
|
|
}
|
|
}
|