diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-06-15 15:05:41 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-15 15:05:41 -0400 |
commit | 1ded13614039e408c81520020b5dccf3523915a4 (patch) | |
tree | 7a70c321962053c319f46bd2a73d5e7d5fd1174a /roles/openshift_cfme/templates | |
parent | 0862f7b6f1448d6ea1fe6c836b3ba1de0afb4485 (diff) | |
parent | 39e3ae639217738e3ffbb7e90a1e8940bc840798 (diff) | |
download | openshift-1ded13614039e408c81520020b5dccf3523915a4.tar.gz openshift-1ded13614039e408c81520020b5dccf3523915a4.tar.bz2 openshift-1ded13614039e408c81520020b5dccf3523915a4.tar.xz openshift-1ded13614039e408c81520020b5dccf3523915a4.zip |
Merge pull request #4041 from tbielawa/cfme
CFME as an OpenShift Pod
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 |