mirror of
https://github.com/ansible/awx.git
synced 2026-05-09 02:17:37 -02:30
Configurable image registry and service account for Postgres deployment.
This commit is contained in:
@@ -22,6 +22,9 @@ dockerhub_base=ansible
|
|||||||
# kubernetes_namespace=awx
|
# kubernetes_namespace=awx
|
||||||
# tiller_namespace=kube-system
|
# tiller_namespace=kube-system
|
||||||
# Optional Kubernetes Variables
|
# Optional Kubernetes Variables
|
||||||
|
# pg_image_registry=docker.io
|
||||||
|
# pg_serviceaccount=awx
|
||||||
|
# pg_volume_capacity=5
|
||||||
# pg_persistence_storageClass=StorageClassName
|
# pg_persistence_storageClass=StorageClassName
|
||||||
# pg_cpu_limit=1000
|
# pg_cpu_limit=1000
|
||||||
# pg_mem_limit=2
|
# pg_mem_limit=2
|
||||||
|
|||||||
@@ -31,3 +31,18 @@ master:
|
|||||||
{{ affinity | to_nice_yaml(indent=2) | indent(width=4, indentfirst=True) }}
|
{{ affinity | to_nice_yaml(indent=2) | indent(width=4, indentfirst=True) }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if pg_image_registry is defined %}
|
||||||
|
image:
|
||||||
|
registry: {{ pg_image_registry }}
|
||||||
|
volumePermissions:
|
||||||
|
image:
|
||||||
|
registry: {{ pg_image_registry }}
|
||||||
|
metrics:
|
||||||
|
image:
|
||||||
|
registry: {{ pg_image_registry }}
|
||||||
|
{% endif %}
|
||||||
|
{% if pg_serviceaccount is defined %}
|
||||||
|
serviceAccount:
|
||||||
|
enabled: true
|
||||||
|
name: {{ pg_serviceaccount }}
|
||||||
|
{% endif %}
|
||||||
|
|||||||
Reference in New Issue
Block a user