Allow to use an existing PersistanceVolumeClaim for postgresql install with Helm

Signed-off-by: Benoît Chauvet <benoit.chauvet@gmail.com>
This commit is contained in:
Benoît Chauvet
2020-07-29 14:11:12 +02:00
parent b009b01251
commit e917cffb5f
3 changed files with 6 additions and 0 deletions

View File

@@ -25,6 +25,7 @@ dockerhub_base=ansible
# pg_serviceaccount=awx
# pg_volume_capacity=5
# pg_persistence_storageClass=StorageClassName
# pg_persistence_existingclaim=postgres_pvc
# pg_cpu_limit=1000
# pg_mem_limit=2

View File

@@ -6,6 +6,9 @@ persistence:
{% if pg_persistence_storageClass is defined %}
storageClass: {{ pg_persistence_storageClass }}
{% endif %}
{% if pg_persistence_existingclaim is defined %}
existingClaim: {{ pg_persistence_existingclaim }}
{% endif %}
{% if pg_cpu_limit is defined or pg_mem_limit is defined %}
resources:
limits: