forked from kubevirt/kubevirt-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
inventory
72 lines (59 loc) · 2.74 KB
/
inventory
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[OSEv3:children]
masters
nodes
etcd
[OSEv3:vars]
openshift_deployment_type=origin
containerized=true
openshift_image_tag=v3.9.0
openshift_clock_enabled=true
ansible_ssh_user=root
openshift_master_identity_providers=[{'name': 'allow_all_auth', 'login': 'true', 'challenge': 'true', 'kind': 'AllowAllPasswordIdentityProvider'}]
openshift_disable_check=memory_availability,disk_availability,docker_image_availability
openshift_enable_excluders=false
template_service_broker_install=false
openshift_use_manageiq=false
openshift_install_examples=false
# Domain name that will be used by the Openshift router
openshift_master_default_subdomain=cloudapps.example.com
# Enabling KubeVirt Admission Controller (https://www.kubevirt.io/user-guide/#/installation/api-validation?id=kubevirt-api-validation)
openshift_master_admission_plugin_config={"ValidatingAdmissionWebhook":{"configuration":{"kind": "DefaultAdmissionConfig","apiVersion": "v1","disable": false}},"MutatingAdmissionWebhook":{"configuration":{"kind": "DefaultAdmissionConfig","apiVersion": "v1","disable": false}}}
# Docker
container_runtime_docker_storage_type=overlay2
# OC 3.10 node and master labeling
openshift_node_groups=[{'name': 'node-config-infra-compute', 'labels': ['node-role.kubernetes.io/infra=true', 'node-role.kubernetes.io/compute=true']}, {'name': 'node-config-master', 'labels': ['node-role.kubernetes.io/master=true']}]
# BEGIN ANSIBLE BROKER CONFIG
openshift_hosted_etcd_storage_kind=nfs
openshift_hosted_etcd_storage_nfs_options="*(rw,root_squash,sync,no_wdelay)"
openshift_hosted_etcd_storage_nfs_directory=/opt/osev3-etcd
openshift_hosted_etcd_storage_volume_name=etcd-vol2
openshift_hosted_etcd_storage_access_modes=["ReadWriteOnce"]
openshift_hosted_etcd_storage_volume_size=1100M
openshift_hosted_etcd_storage_labels={'storage': 'etcd'}
ansible_service_broker_refresh_interval=20s
ansible_service_broker_registry_whitelist=[".*-apb$"]
ansible_service_broker_local_registry_whitelist=[".*-apb$"]
ansible_service_broker_image_prefix=ansibleplaybookbundle/origin-
ansible_service_broker_image_tag=latest
ansible_service_broker_etcd_image_prefix=quay.io/coreos/
ansible_service_broker_etcd_image_tag=latest
# END ANSIBLE BROKER CONFIG
# BEGIN CUSTOM SETTINGS
[masters]
# Your master FQDN
[etcd]
# Your etcd FQDN
[nodes]
# Your nodes FQDN's
[nfs]
# Your nfs server FQDN
[glusterfs]
# Your glusterfs nodes FQDN
# Each node should have the "glusterfs_devices" variable, which
# points to the block device that will be used by gluster.
#
# If you run openshift deployment
# You can add your master as schedulable node with option openshift_schedulable=true
# Add at least one node with lable to run on it router and docker containers
# openshift_node_labels="{'region': 'infra','zone': 'default'}"
# END CUSTOM SETTINGS