diff options
author | Federico Simoncelli <fsimonce@redhat.com> | 2017-06-23 12:27:08 +0200 |
---|---|---|
committer | Federico Simoncelli <fsimonce@redhat.com> | 2017-06-23 18:09:27 +0200 |
commit | 1eded9f8f0bdc046edb794b3f045ef967db5385d (patch) | |
tree | 63ddd712cc9c3597f86cc0b6d388e96edb031b2d /roles/openshift_cfme/templates | |
parent | 0371aff5b86302d4786a87c0fe6f52b32a2952c9 (diff) | |
download | openshift-1eded9f8f0bdc046edb794b3f045ef967db5385d.tar.gz openshift-1eded9f8f0bdc046edb794b3f045ef967db5385d.tar.bz2 openshift-1eded9f8f0bdc046edb794b3f045ef967db5385d.tar.xz openshift-1eded9f8f0bdc046edb794b3f045ef967db5385d.zip |
openshift_cfme: add nfs directory support
Signed-off-by: Federico Simoncelli <fsimonce@redhat.com>
Diffstat (limited to 'roles/openshift_cfme/templates')
-rw-r--r-- | roles/openshift_cfme/templates/miq-pv-db.yaml.j2 | 2 | ||||
-rw-r--r-- | roles/openshift_cfme/templates/miq-pv-region.yaml.j2 | 2 | ||||
-rw-r--r-- | roles/openshift_cfme/templates/miq-pv-server.yaml.j2 | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/roles/openshift_cfme/templates/miq-pv-db.yaml.j2 b/roles/openshift_cfme/templates/miq-pv-db.yaml.j2 index b8c3bb277..280f3e97a 100644 --- a/roles/openshift_cfme/templates/miq-pv-db.yaml.j2 +++ b/roles/openshift_cfme/templates/miq-pv-db.yaml.j2 @@ -8,6 +8,6 @@ spec: accessModes: - ReadWriteOnce nfs: - path: /exports/miq-pv01 + path: {{ openshift_cfme_nfs_directory }}/miq-pv01 server: {{ openshift_cfme_nfs_server }} persistentVolumeReclaimPolicy: Retain diff --git a/roles/openshift_cfme/templates/miq-pv-region.yaml.j2 b/roles/openshift_cfme/templates/miq-pv-region.yaml.j2 index 7218773f0..fe80dffa5 100644 --- a/roles/openshift_cfme/templates/miq-pv-region.yaml.j2 +++ b/roles/openshift_cfme/templates/miq-pv-region.yaml.j2 @@ -8,6 +8,6 @@ spec: accessModes: - ReadWriteOnce nfs: - path: /exports/miq-pv02 + path: {{ openshift_cfme_nfs_directory }}/miq-pv02 server: {{ openshift_cfme_nfs_server }} persistentVolumeReclaimPolicy: Retain diff --git a/roles/openshift_cfme/templates/miq-pv-server.yaml.j2 b/roles/openshift_cfme/templates/miq-pv-server.yaml.j2 index 7b40b6c69..f84b67ea9 100644 --- a/roles/openshift_cfme/templates/miq-pv-server.yaml.j2 +++ b/roles/openshift_cfme/templates/miq-pv-server.yaml.j2 @@ -8,6 +8,6 @@ spec: accessModes: - ReadWriteOnce nfs: - path: /exports/miq-pv03 + path: {{ openshift_cfme_nfs_directory }}/miq-pv03 server: {{ openshift_cfme_nfs_server }} persistentVolumeReclaimPolicy: Retain |