diff options
author | Andrew Butcher <abutcher@afrolegs.com> | 2017-01-16 10:21:01 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-16 10:21:01 -0500 |
commit | 2bd657a6a20f960a3bbdf01cc84472ff5b94fa1a (patch) | |
tree | 18124ccf2540452c9bbc1570727eaa421d3675dc | |
parent | 99a93322b17e3ce5fcd335cfa70a1b54ac13715e (diff) | |
parent | 3f2569c06718a3c7d7367fa54b65d91f49b84d06 (diff) | |
download | openshift-2bd657a6a20f960a3bbdf01cc84472ff5b94fa1a.tar.gz openshift-2bd657a6a20f960a3bbdf01cc84472ff5b94fa1a.tar.bz2 openshift-2bd657a6a20f960a3bbdf01cc84472ff5b94fa1a.tar.xz openshift-2bd657a6a20f960a3bbdf01cc84472ff5b94fa1a.zip |
Merge pull request #3090 from jfchevrette/fix_pv_template_spec
Fix role openshift_storage_nfs_lvm keys should be lowercase in the pv spec template
-rw-r--r-- | roles/openshift_storage_nfs_lvm/templates/nfs.json.j2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/openshift_storage_nfs_lvm/templates/nfs.json.j2 b/roles/openshift_storage_nfs_lvm/templates/nfs.json.j2 index 19e150f7d..c273aca9f 100644 --- a/roles/openshift_storage_nfs_lvm/templates/nfs.json.j2 +++ b/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 }}" } } } |