forked from arthur-c/ansible-awx-helm-chart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
awx-web-task_parameters.yaml
51 lines (41 loc) · 1019 Bytes
/
awx-web-task_parameters.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
awx_web:
image:
repository: ansible/awx_web
tag: latest
pullPolicy: Always
awx_task:
image:
repository: ansible/awx_task
tag: latest
pullPolicy: Always
deployment:
annotations:
iam.amazonaws.com/role: pod-awx
service:
internalPort: 8052
externalPort: 8052
ingress:
enabled: true
hosts:
- awx.example.io
annotations:
kubernetes.io/ingress.class: nginx
kubernetes.io/tls-acme: 'true'
external-dns.alpha.kubernetes.io/controller: nginx
tls:
- hosts:
- awx.example.io
secretName: awx-example-io-tls
awx_secret_key: awxsecret
pg_username: postgres
pg_password: postgres
pg_database: awx
pg_hostname: awx-postgresql-postgresql.default.svc.cluster.local
default_admin_user: admin
default_admin_password: password
rabbitmq_host: awx-rabbitmq-rabbitmq.default.svc.cluster.local
rabbitmq_user: guest
rabbitmq_password: guest
rabbitmq_vhost: awx
memcached_host: awx-memcached-memcached.default.svc.cluster.local
memcached_port: 11211