Sfoglia il codice sorgente

keys should be lowercase according to the spec

Jean-Francois Chevrette 8 anni fa
parent
commit
3f2569c067
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      roles/openshift_storage_nfs_lvm/templates/nfs.json.j2

+ 2 - 2
roles/openshift_storage_nfs_lvm/templates/nfs.json.j2

@@ -14,8 +14,8 @@
     "accessModes": [ "ReadWriteOnce", "ReadWriteMany" ],
     "persistentVolumeReclaimPolicy": "{{ osnl_volume_reclaim_policy }}",
     "nfs": {
-      "Server": "{{ inventory_hostname }}",
-      "Path": "{{ osnl_mount_dir }}/{{ item }}"
+      "server": "{{ inventory_hostname }}",
+      "path": "{{ osnl_mount_dir }}/{{ item }}"
     }
   }
 }