|
| 1 | +--- |
| 2 | +############################################################################### |
| 3 | +# Ansible control host configuration. |
| 4 | + |
| 5 | +# User with which to access the Ansible control host via SSH during bootstrap, |
| 6 | +# in order to setup the Kayobe user account. Default is {{ os_distribution }}. |
| 7 | +#ansible_control_bootstrap_user: |
| 8 | + |
| 9 | +############################################################################### |
| 10 | +# Ansible control host network interface configuration. |
| 11 | + |
| 12 | +# List of networks to which Ansible control host are attached. |
| 13 | +#ansible_control_network_interfaces: |
| 14 | + |
| 15 | +# List of default networks to which Ansible control host are attached. |
| 16 | +#ansible_control_default_network_interfaces: |
| 17 | + |
| 18 | +# List of extra networks to which Ansible control host are attached. |
| 19 | +#ansible_control_extra_network_interfaces: |
| 20 | + |
| 21 | +############################################################################### |
| 22 | +# Ansible control host software RAID configuration. |
| 23 | + |
| 24 | +# List of software RAID arrays. See mrlesmithjr.mdadm role for format. |
| 25 | +#ansible_control_mdadm_arrays: |
| 26 | + |
| 27 | +############################################################################### |
| 28 | +# Ansible control host encryption configuration. |
| 29 | + |
| 30 | +# List of block devices to encrypt. See stackhpc.luks role for format. |
| 31 | +#ansible_control_luks_devices: |
| 32 | + |
| 33 | +############################################################################### |
| 34 | +# Ansible control host LVM configuration. |
| 35 | + |
| 36 | +# List of Ansible control host volume groups. See mrlesmithjr.manage_lvm role |
| 37 | +# for format. |
| 38 | +#ansible_control_lvm_groups: |
| 39 | + |
| 40 | +# Default list of Ansible control host volume groups. See |
| 41 | +# mrlesmithjr.manage_lvm role for format. |
| 42 | +#ansible_control_lvm_groups_default: |
| 43 | + |
| 44 | +# Additional list of Ansible control host volume groups. See |
| 45 | +# mrlesmithjr.manage_lvm role for format. |
| 46 | +#ansible_control_lvm_groups_extra: |
| 47 | + |
| 48 | +# Whether a 'data' LVM volume group should exist on the Ansible control host. |
| 49 | +# By default this contains a 'docker-volumes' logical volume for Docker volume |
| 50 | +# storage. Default is false. |
| 51 | +#ansible_control_lvm_group_data_enabled: |
| 52 | + |
| 53 | +# Ansible control host LVM volume group for data. See mrlesmithjr.manage_lvm |
| 54 | +# role for format. |
| 55 | +#ansible_control_lvm_group_data: |
| 56 | + |
| 57 | +# List of disks for use by Ansible control host LVM data volume group. Default |
| 58 | +# to an invalid value to require configuration. |
| 59 | +#ansible_control_lvm_group_data_disks: |
| 60 | + |
| 61 | +# List of LVM logical volumes for the data volume group. |
| 62 | +#ansible_control_lvm_group_data_lvs: |
| 63 | + |
| 64 | +# Docker volumes LVM backing volume. |
| 65 | +#ansible_control_lvm_group_data_lv_docker_volumes: |
| 66 | + |
| 67 | +# Size of docker volumes LVM backing volume. |
| 68 | +#ansible_control_lvm_group_data_lv_docker_volumes_size: |
| 69 | + |
| 70 | +# Filesystem for docker volumes LVM backing volume. ext4 allows for shrinking. |
| 71 | +#ansible_control_lvm_group_data_lv_docker_volumes_fs: |
| 72 | + |
| 73 | +############################################################################### |
| 74 | +# Ansible control host sysctl configuration. |
| 75 | + |
| 76 | +# Dict of sysctl parameters to set. |
| 77 | +#ansible_control_sysctl_parameters: |
| 78 | + |
| 79 | +############################################################################### |
| 80 | +# Ansible control host tuned configuration. |
| 81 | + |
| 82 | +# Builtin tuned profile to use. Format is same as that used by giovtorres.tuned |
| 83 | +# role. Default is throughput-performance. |
| 84 | +#ansible_control_tuned_active_builtin_profile: |
| 85 | + |
| 86 | +############################################################################### |
| 87 | +# Ansible control host user configuration. |
| 88 | + |
| 89 | +# List of users to create. This should be in a format accepted by the |
| 90 | +# singleplatform-eng.users role. |
| 91 | +#ansible_control_users: |
| 92 | + |
| 93 | +############################################################################### |
| 94 | +# Ansible control host additional containers configuration |
| 95 | + |
| 96 | +# Dict of containers to deploy. |
| 97 | +# Example: |
| 98 | +# seed_containers: |
| 99 | +# squid: |
| 100 | +# image: "docker.io/stackhpc/squid" |
| 101 | +# pre: "{{ kayobe_env_config_path }}/containers/squid/pre.yml" |
| 102 | +# post: "{{ kayobe_env_config_path }}/containers/squid/post.yml" |
| 103 | +# tag: "3.5.20-1" |
| 104 | +# |
| 105 | +#ansible_control_containers: |
| 106 | + |
| 107 | +# Whether to attempt a basic authentication login to a registry when |
| 108 | +# deploying containers. |
| 109 | +#ansible_control_manage_containers_registry_attempt_login: |
| 110 | + |
| 111 | +############################################################################### |
| 112 | +# Ansible control host firewalld configuration. |
| 113 | + |
| 114 | +# Whether to install and enable firewalld. |
| 115 | +#ansible_control_firewalld_enabled: |
| 116 | + |
| 117 | +# A list of zones to create. Each item is a dict containing a 'zone' item. |
| 118 | +#ansible_control_firewalld_zones: |
| 119 | + |
| 120 | +# A firewalld zone to set as the default. Default is unset, in which case the |
| 121 | +# default zone will not be changed. |
| 122 | +#ansible_control_firewalld_default_zone: |
| 123 | + |
| 124 | +# A list of firewall rules to apply. Each item is a dict containing arguments |
| 125 | +# to pass to the firewalld module. Arguments are omitted if not provided, with |
| 126 | +# the following exceptions: |
| 127 | +# - offline: true |
| 128 | +# - permanent: true |
| 129 | +# - state: enabled |
| 130 | +#ansible_control_firewalld_rules: |
| 131 | + |
| 132 | +############################################################################### |
| 133 | +# Ansible control host fail2ban configuration. |
| 134 | + |
| 135 | +# Whether to install and enable fail2ban. |
| 136 | +#ansible_control_fail2ban_enabled: |
| 137 | + |
| 138 | +# List of fail2ban jails for the Ansible control host. |
| 139 | +#ansible_control_fail2ban_jail_configuration: |
| 140 | + |
| 141 | +# List of default fail2ban jails for the Ansible control host. |
| 142 | +#ansible_control_fail2ban_jail_configuration_default: |
| 143 | + |
| 144 | +# List of extra fail2ban jails for the Ansible control host. |
| 145 | +#ansible_control_fail2ban_jail_configuration_extra: |
| 146 | + |
| 147 | +############################################################################### |
| 148 | +# Ansible control host swap configuration. |
| 149 | + |
| 150 | +# List of swap devices. Each item is a dict containing a 'device' item. |
| 151 | +#ansible_control_swap: |
| 152 | + |
| 153 | +############################################################################### |
| 154 | +# Ansible control host container engine configuration. |
| 155 | + |
| 156 | +# Whether a container engine should be configured. Default is false. |
| 157 | +#ansible_control_container_engine_enabled: |
| 158 | + |
| 159 | +############################################################################### |
| 160 | +# Dummy variable to allow Ansible to accept this file. |
| 161 | +workaround_ansible_issue_8743: yes |
0 commit comments