mirror of
https://github.com/ansible/awx.git
synced 2026-02-24 06:26:00 -03:30
Add support for directly managing instance groups
* Associating/Disassociating an instance with a group * Triggering a topology rebuild on that change * Force rabbitmq cleanup of offline nodes * Automatically check for dependent service startup * Fetch and set hostname for celery so it doesn't clobber other celeries * Rely on celery init signals to dyanmically set listen queues * Removing old total_capacity instance manager property
This commit is contained in:
@@ -66,7 +66,9 @@ spec:
|
||||
- name: AUTOCLUSTER_CLEANUP
|
||||
value: "true"
|
||||
- name: CLEANUP_WARN_ONLY
|
||||
value: "true"
|
||||
value: "false"
|
||||
- name: CLEANUP_INTERVAL
|
||||
value: "30"
|
||||
- name: RABBITMQ_DEFAULT_USER
|
||||
value: awx
|
||||
- name: RABBITMQ_DEFAULT_PASS
|
||||
@@ -102,6 +104,23 @@ spec:
|
||||
selector:
|
||||
name: awx-web-deploy
|
||||
---
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: awx-rmq-mgmt
|
||||
namespace: {{ awx_openshift_project }}
|
||||
labels:
|
||||
name: awx-rmq-mgmt
|
||||
spec:
|
||||
type: ClusterIP
|
||||
ports:
|
||||
- name: rmqmgmt
|
||||
port: 15672
|
||||
targetPort: 15672
|
||||
selector:
|
||||
name: awx-web-deploy
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Route
|
||||
metadata:
|
||||
|
||||
Reference in New Issue
Block a user