diff options
Diffstat (limited to 'group_vars')
-rw-r--r-- | group_vars/baremetal.yml | 17 | ||||
-rw-r--r-- | group_vars/production.yml | 24 |
2 files changed, 39 insertions, 2 deletions
diff --git a/group_vars/baremetal.yml b/group_vars/baremetal.yml index 032e53f..640a00a 100644 --- a/group_vars/baremetal.yml +++ b/group_vars/baremetal.yml @@ -1,3 +1,20 @@ glusterfs_transport: rdma +# Size in GB to detect main Ands device +ands_data_device_threshold: 8192 + +# Primary LVM devices +ands_data_volume_size: "40T" +ands_heketi_volume_size: "4T" +docker_volume_size: "1T" +docker_root_volume_size: "1T" +docker_storage_vg: "ands" + +#Heketi Volumes +ands_registry_volume_size: "2T" + +ands_storage_interface: "ib0" +ands_inner_interface: "ib1" +#ands_public_interface: "eth0" + ands_host_id: "{{ ansible_hostname | regex_replace('^ipekatrin(\\d+)(\\.|$)', '\\1') }}" diff --git a/group_vars/production.yml b/group_vars/production.yml index 24b189f..c731873 100644 --- a/group_vars/production.yml +++ b/group_vars/production.yml @@ -1,7 +1,27 @@ +ands_configure_network: true ands_storage_network: 192.168.12.0/24 +ands_cluster_domain: ipe.kit.edu +ands_hostname_template: ipekatrin ands_openshift_lb: kaas.kit.edu ands_openshift_subdomain: kaas.kit.edu -ands_openshift_network: 192.168.26.0/24 +ands_openshift_network: 192.168.13.0/24 ands_openshift_public_network: 192.168.26.0/24 -ands_openshift_ingress_network: 192.168.16.0/22 +ands_openshift_ingress_network: 192.168.16.0/24 +ands_global_network: 141.52.64.0/23 + +#ands_inner_domain: "" +ands_openshift_set_hostname: false +# if we provision inner_lb (default), we can turn it on and just re-run ands_network role (or maintain play) +ands_use_inner_lb: false + + +#ands_ipfailover_interface: eth1 +ands_ipfailover_vips: [141.52.64.15/23, 141.52.64.17/23] + +katrin_openvpn_subnet_bits: 24 +katrin_openvpn_subnet_offset: 111 +katrin_openvpn_network: "192.168.0.0/16" + + +ands_prefer_docker: true |