tripleo-heat-templates/environments/storage/nova-nfs.yaml
Martin Schuppert 1c241362ff fix storage.yaml to write environments/storage/nova-nfs.yaml
753a350418 removed ceph entries
from sample-env-generator/storage.yaml which resulted in nova-nfs
and cinder-netapp-config to be in the same section. Therefore
environment_generator.py did not update the nova-nfs.yaml .

Also add quotes to the nfs version as they are required in
the resulting nova-nfs.yaml .

Closes-Bug: #1825374

Change-Id: I209480f209e3a8841362ea619b1c9b073c89f338
2019-04-18 15:03:19 +00:00

35 lines
1.5 KiB
YAML

# *******************************************************************
# This file was created automatically by the sample environment
# generator. Developers should use `tox -e genconfig` to update it.
# Users are recommended to make changes to a copy of the file instead
# of the original, if any customizations are needed.
# *******************************************************************
# title: Enable Nova NFS Backend
# description: |
# Configure and include this environment to enable the use of an NFS
# share as the backend for Nova.
parameter_defaults:
# NFS mount options for nova storage (when NovaNfsEnabled is true)
# Type: string
NovaNfsOptions: context=system_u:object_r:nfs_t:s0
# NFS share to mount for nova storage (when NovaNfsEnabled is true)
# Type: string
NovaNfsShare: ''
# NFS version used for nova storage (when NovaNfsEnabled is true). Since NFSv3 does not support full locking a NFSv4 version need to be used. To not break current installations the default is the previous hard coded version 4.
# Type: string
NovaNfsVersion: "4.2"
# ******************************************************
# Static parameters - these are values that must be
# included in the environment but should not be changed.
# ******************************************************
# Whether to enable or not the NFS backend for Nova
# Type: boolean
NovaNfsEnabled: True
# *********************
# End static parameters
# *********************