
This is only supported on CentOS for now due to limitations of the Ansible role used to configure tuned. Change-Id: Ie07c5f467975f8da2f720e70c94cea6285981d72 Co-Authored-By: Pierre Riteau <pierre@stackhpc.com> Story: 2007853 Task: 40155
149 lines
5.0 KiB
YAML
149 lines
5.0 KiB
YAML
---
|
|
###############################################################################
|
|
# Compute node configuration.
|
|
|
|
# User with which to access the computes via SSH during bootstrap, in order
|
|
# to setup the Kayobe user account. Default is {{ os_distribution }}.
|
|
#compute_bootstrap_user:
|
|
|
|
###############################################################################
|
|
# Compute network interface configuration.
|
|
|
|
# List of networks to which compute nodes are attached.
|
|
#compute_network_interfaces:
|
|
|
|
# List of default networks to which compute nodes are attached.
|
|
#compute_default_network_interfaces:
|
|
|
|
# List of extra networks to which compute nodes are attached.
|
|
#compute_extra_network_interfaces:
|
|
|
|
###############################################################################
|
|
# Compute node BIOS configuration.
|
|
|
|
# Dict of compute BIOS options. Format is same as that used by stackhpc.drac
|
|
# role.
|
|
#compute_bios_config:
|
|
|
|
# Dict of default compute BIOS options. Format is same as that used by
|
|
# stackhpc.drac role.
|
|
#compute_bios_config_default:
|
|
|
|
# Dict of additional compute BIOS options. Format is same as that used by
|
|
# stackhpc.drac role.
|
|
#compute_bios_config_extra:
|
|
|
|
###############################################################################
|
|
# Compute node RAID configuration.
|
|
|
|
# List of compute RAID volumes. Format is same as that used by stackhpc.drac
|
|
# role.
|
|
#compute_raid_config:
|
|
|
|
# List of default compute RAID volumes. Format is same as that used by
|
|
# stackhpc.drac role.
|
|
#compute_raid_config_default:
|
|
|
|
# List of additional compute RAID volumes. Format is same as that used by
|
|
# stackhpc.drac role.
|
|
#compute_raid_config_extra:
|
|
|
|
###############################################################################
|
|
# Compute node software RAID configuration.
|
|
|
|
# List of software RAID arrays. See mrlesmithjr.mdadm role for format.
|
|
#compute_mdadm_arrays:
|
|
|
|
###############################################################################
|
|
# Compute node encryption configuration.
|
|
|
|
# List of block devices to encrypt. See stackhpc.luks role for format.
|
|
#compute_luks_devices:
|
|
|
|
###############################################################################
|
|
# Compute node LVM configuration.
|
|
|
|
# List of compute volume groups. See mrlesmithjr.manage-lvm role for
|
|
# format.
|
|
#compute_lvm_groups:
|
|
|
|
# Default list of compute volume groups. See mrlesmithjr.manage-lvm role for
|
|
# format.
|
|
#compute_lvm_groups_default:
|
|
|
|
# Additional list of compute volume groups. See mrlesmithjr.manage-lvm role
|
|
# for format.
|
|
#compute_lvm_groups_extra:
|
|
|
|
# Whether a 'data' LVM volume group should exist on compute hosts. By default
|
|
# this contains a 'docker-volumes' logical volume for Docker volume storage. It
|
|
# will also be used for Docker container and image storage if
|
|
# 'docker_storage_driver' is set to 'devicemapper'. Default is true if
|
|
# 'docker_storage_driver' is set to 'devicemapper', or false otherwise.
|
|
#compute_lvm_group_data_enabled:
|
|
|
|
# Compute LVM volume group for data. See mrlesmithjr.manage-lvm role for
|
|
# format.
|
|
#compute_lvm_group_data:
|
|
|
|
# List of disks for use by compute LVM data volume group. Default to an
|
|
# invalid value to require configuration.
|
|
#compute_lvm_group_data_disks:
|
|
|
|
# List of LVM logical volumes for the data volume group.
|
|
#compute_lvm_group_data_lvs:
|
|
|
|
# Docker volumes LVM backing volume.
|
|
#compute_lvm_group_data_lv_docker_volumes:
|
|
|
|
# Size of docker volumes LVM backing volume.
|
|
#compute_lvm_group_data_lv_docker_volumes_size:
|
|
|
|
# Filesystem for docker volumes LVM backing volume. ext4 allows for shrinking.
|
|
#compute_lvm_group_data_lv_docker_volumes_fs:
|
|
|
|
###############################################################################
|
|
# Compute node sysctl configuration.
|
|
|
|
# Dict of sysctl parameters to set.
|
|
#compute_sysctl_parameters:
|
|
|
|
###############################################################################
|
|
# Compute node tuned configuration.
|
|
|
|
# Builtin tuned profile to use. Format is same as that used by giovtorres.tuned
|
|
# role. Default is virtual-host.
|
|
#compute_tuned_active_builtin_profile:
|
|
|
|
###############################################################################
|
|
# Compute node user configuration.
|
|
|
|
# List of users to create. This should be in a format accepted by the
|
|
# singleplatform-eng.users role.
|
|
#compute_users:
|
|
|
|
###############################################################################
|
|
# Compute node firewalld configuration.
|
|
|
|
# Whether to install and enable firewalld.
|
|
#compute_firewalld_enabled:
|
|
|
|
# A list of zones to create. Each item is a dict containing a 'zone' item.
|
|
#compute_firewalld_zones:
|
|
|
|
# A firewalld zone to set as the default. Default is unset, in which case the
|
|
# default zone will not be changed.
|
|
#compute_firewalld_default_zone:
|
|
|
|
# A list of firewall rules to apply. Each item is a dict containing arguments
|
|
# to pass to the firewalld module. Arguments are omitted if not provided, with
|
|
# the following exceptions:
|
|
# - offline: true
|
|
# - permanent: true
|
|
# - state: enabled
|
|
#compute_firewalld_rules:
|
|
|
|
###############################################################################
|
|
# Dummy variable to allow Ansible to accept this file.
|
|
workaround_ansible_issue_8743: yes
|