Merge "Rename validate tox env to linters"
[apex-tripleo-heat-templates.git] / environments / storage-environment.yaml
1 ## A Heat environment file which can be used to set up storage
2 ## backends. Defaults to Ceph used as a backend for Cinder, Glance and
3 ## Nova ephemeral storage.
4 parameter_defaults:
5
6   #### BACKEND SELECTION ####
7
8   ## Whether to enable iscsi backend for Cinder.
9   CinderEnableIscsiBackend: false
10   ## Whether to enable rbd (Ceph) backend for Cinder.
11   CinderEnableRbdBackend: true
12   ## Whether to enable NFS backend for Cinder.
13   # CinderEnableNfsBackend: false
14   ## Whether to enable rbd (Ceph) backend for Nova ephemeral storage.
15   NovaEnableRbdBackend: true
16   ## Glance backend can be either 'rbd' (Ceph), 'swift' or 'file'.
17   GlanceBackend: rbd
18
19
20   #### CINDER NFS SETTINGS ####
21
22   ## NFS mount options
23   # CinderNfsMountOptions: ''
24   ## NFS mount point, e.g. '192.168.122.1:/export/cinder'
25   # CinderNfsServers: ''
26
27
28   #### GLANCE FILE BACKEND PACEMAKER SETTINGS (used for mounting NFS) ####
29
30   ## Whether to make Glance 'file' backend a mount managed by Pacemaker
31   # GlanceFilePcmkManage: false
32   ## File system type of the mount
33   # GlanceFilePcmkFstype: nfs
34   ## Pacemaker mount point, e.g. '192.168.122.1:/export/glance' for NFS
35   # GlanceFilePcmkDevice: ''
36   ## Options for the mount managed by Pacemaker
37   # GlanceFilePcmkOptions: ''
38
39
40   #### CEPH SETTINGS ####
41
42   ## Whether to deploy Ceph OSDs on the controller nodes. By default
43   ## OSDs are deployed on dedicated ceph-storage nodes only.
44   # ControllerEnableCephStorage: false
45
46   ## When deploying Ceph Nodes through the oscplugin CLI, the following
47   ## parameters are set automatically by the CLI. When deploying via
48   ## heat stack-create or ceph on the controller nodes only,
49   ## they need to be provided manually.
50
51   ## Number of Ceph storage nodes to deploy
52   # CephStorageCount: 0
53   ## Ceph FSID, e.g. '4b5c8c0a-ff60-454b-a1b4-9747aa737d19'
54   # CephClusterFSID: ''
55   ## Ceph monitor key, e.g. 'AQC+Ox1VmEr3BxAALZejqeHj50Nj6wJDvs96OQ=='
56   # CephMonKey: ''
57   ## Ceph admin key, e.g. 'AQDLOh1VgEp6FRAAFzT7Zw+Y9V6JJExQAsRnRQ=='
58   # CephAdminKey: ''