Kaynağa Gözat

Add ability to disable pvc creation

Scott Dodson 8 yıl önce
ebeveyn
işleme
85c6743a01

+ 2 - 1
filter_plugins/oo_filters.py

@@ -734,7 +734,8 @@ class FilterModule(object):
                 if 'storage' in hostvars['openshift']['hosted'][component]:
                     kind = hostvars['openshift']['hosted'][component]['storage']['kind']
                     create_pv = hostvars['openshift']['hosted'][component]['storage']['create_pv']
-                    if kind != None and create_pv:
+                    create_pvc = hostvars['openshift']['hosted'][component]['storage']['create_pvc']
+                    if kind != None and create_pv and create_pvc:
                         volume = hostvars['openshift']['hosted'][component]['storage']['volume']['name']
                         size = hostvars['openshift']['hosted'][component]['storage']['volume']['size']
                         access_modes = hostvars['openshift']['hosted'][component]['storage']['access_modes']

+ 4 - 2
roles/openshift_facts/library/openshift_facts.py

@@ -1802,7 +1802,8 @@ class OpenShiftFacts(object):
                             volumeID='123'),
                         host=None,
                         access_modes=['ReadWriteOnce'],
-                        create_pv=True
+                        create_pv=True,
+                        create_pvc=False
                     )
                 ),
                 registry=dict(
@@ -1817,7 +1818,8 @@ class OpenShiftFacts(object):
                             options='*(rw,root_squash)'),
                         host=None,
                         access_modes=['ReadWriteMany'],
-                        create_pv=True
+                        create_pv=True,
+                        create_pvc=True
                     )
                 ),
                 router=dict()