diff options
author | Tim Bielawa <tbielawa@redhat.com> | 2017-04-28 13:44:54 -0400 |
---|---|---|
committer | Tim Bielawa <tbielawa@redhat.com> | 2017-06-14 15:17:01 -0400 |
commit | e1a91973650a26859d1d02449ac35b1946746392 (patch) | |
tree | 234d847f3374b349e531e0d0e0c9ea95e35e5128 /roles/openshift_cfme/templates | |
parent | cf81c53e8b747603ba6599f8c9fbdf50feff4c88 (diff) | |
download | openshift-e1a91973650a26859d1d02449ac35b1946746392.tar.gz openshift-e1a91973650a26859d1d02449ac35b1946746392.tar.bz2 openshift-e1a91973650a26859d1d02449ac35b1946746392.tar.xz openshift-e1a91973650a26859d1d02449ac35b1946746392.zip |
First POC of a CFME turnkey solution in openshift-anisble
Diffstat (limited to 'roles/openshift_cfme/templates')
-rw-r--r-- | roles/openshift_cfme/templates/miq-pv-db.yaml.j2 | 13 | ||||
-rw-r--r-- | roles/openshift_cfme/templates/miq-pv-region.yaml.j2 | 13 | ||||
-rw-r--r-- | roles/openshift_cfme/templates/miq-pv-server.yaml.j2 | 13 |
3 files changed, 39 insertions, 0 deletions
diff --git a/roles/openshift_cfme/templates/miq-pv-db.yaml.j2 b/roles/openshift_cfme/templates/miq-pv-db.yaml.j2 new file mode 100644 index 000000000..b8c3bb277 --- /dev/null +++ b/roles/openshift_cfme/templates/miq-pv-db.yaml.j2 @@ -0,0 +1,13 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: miq-pv01 +spec: + capacity: + storage: 15Gi + accessModes: + - ReadWriteOnce + nfs: + path: /exports/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 new file mode 100644 index 000000000..7218773f0 --- /dev/null +++ b/roles/openshift_cfme/templates/miq-pv-region.yaml.j2 @@ -0,0 +1,13 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: miq-pv02 +spec: + capacity: + storage: 5Gi + accessModes: + - ReadWriteOnce + nfs: + path: /exports/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 new file mode 100644 index 000000000..7b40b6c69 --- /dev/null +++ b/roles/openshift_cfme/templates/miq-pv-server.yaml.j2 @@ -0,0 +1,13 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: miq-pv03 +spec: + capacity: + storage: 5Gi + accessModes: + - ReadWriteOnce + nfs: + path: /exports/miq-pv03 + server: {{ openshift_cfme_nfs_server }} + persistentVolumeReclaimPolicy: Retain |