summaryrefslogtreecommitdiffstats
path: root/roles/openshift_cfme/files/templates/manageiq/miq-pv-db-example.yaml
diff options
context:
space:
mode:
authorScott Dodson <sdodson@redhat.com>2017-10-09 10:56:43 -0400
committerGitHub <noreply@github.com>2017-10-09 10:56:43 -0400
commitfced8262d239d1d44ce64a5c6d02caa1530c5d45 (patch)
treed50659fa9b1fd4ab41ae611edf1f65b52c4fd5e9 /roles/openshift_cfme/files/templates/manageiq/miq-pv-db-example.yaml
parentb37c5e648736c11913c56ee2b9620920ef42e99e (diff)
parentc0f63fb902b53bc592e6862d5876af9b244ee82b (diff)
downloadopenshift-fced8262d239d1d44ce64a5c6d02caa1530c5d45.tar.gz
openshift-fced8262d239d1d44ce64a5c6d02caa1530c5d45.tar.bz2
openshift-fced8262d239d1d44ce64a5c6d02caa1530c5d45.tar.xz
openshift-fced8262d239d1d44ce64a5c6d02caa1530c5d45.zip
Merge pull request #5682 from tbielawa/openshift_management
Rename openshift_cfme role to openshift_management
Diffstat (limited to 'roles/openshift_cfme/files/templates/manageiq/miq-pv-db-example.yaml')
-rw-r--r--roles/openshift_cfme/files/templates/manageiq/miq-pv-db-example.yaml38
1 files changed, 0 insertions, 38 deletions
diff --git a/roles/openshift_cfme/files/templates/manageiq/miq-pv-db-example.yaml b/roles/openshift_cfme/files/templates/manageiq/miq-pv-db-example.yaml
deleted file mode 100644
index a803bebe2..000000000
--- a/roles/openshift_cfme/files/templates/manageiq/miq-pv-db-example.yaml
+++ /dev/null
@@ -1,38 +0,0 @@
-apiVersion: v1
-kind: Template
-labels:
- template: manageiq-db-pv
-metadata:
- name: manageiq-db-pv
- annotations:
- description: PV Template for MIQ PostgreSQL DB
- tags: PVS, MIQ
-objects:
-- apiVersion: v1
- kind: PersistentVolume
- metadata:
- name: miq-db
- spec:
- capacity:
- storage: "${PV_SIZE}"
- accessModes:
- - ReadWriteOnce
- nfs:
- path: "${BASE_PATH}/miq-db"
- server: "${NFS_HOST}"
- persistentVolumeReclaimPolicy: Retain
-parameters:
-- name: PV_SIZE
- displayName: PV Size for DB
- required: true
- description: The size of the MIQ DB PV given in Gi
- value: 15Gi
-- name: BASE_PATH
- displayName: Exports Directory Base Path
- required: true
- description: The parent directory of your NFS exports
- value: "/exports"
-- name: NFS_HOST
- displayName: NFS Server Hostname
- required: true
- description: The hostname or IP address of the NFS server