Explorar o código

Fix pvc template by replacing None by lowercase none

Thomas Schersach %!s(int64=7) %!d(string=hai) anos
pai
achega
5c393c4cc5

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

@@ -12,7 +12,7 @@ items:
     resources:
       requests:
         storage: "{{ claim.capacity }}"
-{% if claim.storageclass is not None %}
+{% if claim.storageclass is not none %}
     storageClassName: "{{ claim.storageclass }}"
 {% endif %}
 {% endfor %}