Skip to content

Instantly share code, notes, and snippets.

@jistr
Last active February 28, 2017 14:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jistr/b2c921e1e02cc8405a92 to your computer and use it in GitHub Desktop.
Save jistr/b2c921e1e02cc8405a92 to your computer and use it in GitHub Desktop.
NFS storage config for TripleO
parameters:
#### BACKEND SELECTION ####
## Whether to enable iscsi backend for Cinder.
CinderEnableIscsiBackend: false
## Whether to enable rbd (Ceph) backend for Cinder.
# CinderEnableRbdBackend: false
## Whether to enable NFS backend for Cinder.
CinderEnableNfsBackend: true
## Whether to enable rbd (Ceph) backend for Nova ephemeral storage.
# NovaEnableRbdBackend: false
## Glance backend can be either 'rbd' (Ceph), 'swift' or 'file'.
GlanceBackend: file
#### CINDER NFS SETTINGS ####
## NFS mount options
CinderNfsMountOptions: 'retry=1'
## NFS mount point, e.g. '192.168.122.1:/export/cinder'
CinderNfsServers: 192.168.122.1:/export/cinder
#### GLANCE FILE BACKEND PACEMAKER SETTINGS (used for mounting NFS) ####
## Whether to make Glance 'file' backend a mount managed by Pacemaker
GlanceFilePcmkManage: true
## File system type of the mount
# GlanceFilePcmkFstype: nfs
## Pacemaker mount point, e.g. '192.168.122.1:/export/glance' for NFS
GlanceFilePcmkDevice: 192.168.122.1:/export/glance
## Options for the mount managed by Pacemaker
GlanceFilePcmkOptions: 'context=system_u:object_r:glance_var_lib_t:s0'
#### CEPH SETTINGS ####
## Whether to deploy Ceph OSDs on the controller nodes. By default
## OSDs are deployed on dedicated ceph-storage nodes only.
# ControllerEnableCephStorage: false
## When deploying Ceph through the oscplugin CLI, the following
## parameters are set automatically by the CLI. When deploying via
## heat stack-create, they need to be provided manually.
## Number of Ceph storage nodes to deploy
# CephStorageCount: 0
## Ceph FSID, e.g. '4b5c8c0a-ff60-454b-a1b4-9747aa737d19'
# CephClusterFSID: ''
## Ceph monitor key, e.g. 'AQC+Ox1VmEr3BxAALZejqeHj50Nj6wJDvs96OQ=='
# CephMonKey: ''
## Ceph admin key, e.g. 'AQDLOh1VgEp6FRAAFzT7Zw+Y9V6JJExQAsRnRQ=='
# CephAdminKey: ''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment