Selaa lähdekoodia

Merge pull request #9174 from vrutkovs/claimref

Fix PVC binding of NFS pv with default storageclass set
OpenShift Merge Robot 6 vuotta sitten
vanhempi
commit
6317fa3ed4

+ 12 - 2
roles/lib_utils/action_plugins/generate_pv_pvcs_list.py

@@ -45,7 +45,7 @@ class ActionModule(ActionBase):
         volume, size, labels, _, access_modes = self.build_common(varname=varname)
         directory = self.get_templated(str(varname) + '_nfs_directory')
         path = directory + '/' + volume
-        return dict(
+        result = dict(
             name="{0}-volume".format(volume),
             capacity=size,
             labels=labels,
@@ -54,6 +54,11 @@ class ActionModule(ActionBase):
                 nfs=dict(
                     server=host,
                     path=path)))
+        # Add claimref for NFS as default storageclass can be different
+        create_pvc = self.task_vars.get(str(varname) + '_create_pvc')
+        if create_pvc and self._templar.template(create_pvc):
+            result['storage']['claimName'] = "{0}-claim".format(volume)
+        return result
 
     def build_pv_openstack(self, varname=None):
         """Build pv dictionary for openstack storage type"""
@@ -150,10 +155,15 @@ class ActionModule(ActionBase):
                     if kind != 'object' and create_pv and create_pvc:
                         volume, size, _, annotations, access_modes = self.build_common(varname=varname)
                         storageclass = self.task_vars.get(str(varname) + '_storageclass')
+                        # if storageclass is specified => use it
+                        # if kind is 'nfs' => set to empty
+                        # if any other kind => set to none
                         if storageclass:
                             storageclass = self._templar.template(storageclass)
-                        elif storageclass is None and kind != 'dynamic':
+                        elif kind == 'nfs':
                             storageclass = ''
+                        if kind == 'dynamic':
+                            storageclass = None
                         return dict(
                             name="{0}-claim".format(volume),
                             capacity=size,

+ 1 - 1
roles/openshift_persistent_volumes/templates/persistent-volume-claim.yml.j2

@@ -18,7 +18,7 @@ items:
     resources:
       requests:
         storage: "{{ claim.capacity }}"
-{% if claim.storageclass|length > 0 %}
+{% if claim.storageclass is not none %}
     storageClassName: "{{ claim.storageclass }}"
 {% endif %}
 {% endfor %}

+ 5 - 0
roles/openshift_persistent_volumes/templates/persistent-volume.yml.j2

@@ -18,4 +18,9 @@ items:
       storage: "{{ volume.capacity }}"
     accessModes: {{ volume.access_modes | lib_utils_to_padded_yaml(2, 2) }}
     {{ (volume.storage.keys() | list)[0] }}: {{ volume.storage[(volume.storage.keys() | list)[0]] | lib_utils_to_padded_yaml(3, 2) }}
+{% if 'claimName' in volume.storage %}
+    claimRef:
+      name: {{ volume.storage.claimName }}
+      namespace: default
+{% endif %}
 {% endfor %}