-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhosts
More file actions
55 lines (42 loc) · 2.34 KB
/
Copy pathhosts
File metadata and controls
55 lines (42 loc) · 2.34 KB
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
[OSEv3:children]
masters
nodes
etcd
[OSEv3:vars]
ansible_user=root
#ansible_become=true
# Deployment type
openshift_deployment_type=origin
#openshift_deployment_type=openshift-enterprise
# Disable disk, memory checks
#openshift_disable_check=disk_availability,memory_availability
# Default subdomain; add a DNS record for *.apps.example.com
openshift_master_default_subdomain=apps.example.com
# HTPasswdPasswordIdentityProvider
openshift_master_identity_providers=[{'name': 'htpasswd_auth', 'login': 'true', 'challenge': 'true', 'kind': 'HTPasswdPasswordIdentityProvider'}]
# LDAPPasswordIdentityProvider
#openshift_master_identity_providers=[{'name': 'ldap_auth', 'challenge': 'true', 'login': 'true', 'kind': 'LDAPPasswordIdentityProvider', 'attributes': {'id': ['dn'], 'email': ['mail'], 'name': ['cn'], 'preferredUsername': ['uid']}, 'bindDN': '', 'bindPassword': '', 'insecure': 'false', 'url': 'ldap://ldap.example.com:389/ou=users,dc=example,dc=com?uid'}]
#openshift_master_ldap_ca_file=ldap-ca.crt
# Router certificate
#openshift_hosted_router_certificate={"certfile": "router.crt", "keyfile": "router.key", "cafile": "router-ca.crt"}
# Deploy metrics; Ensure java-1.8.0-openjdk-headless is installed on the control node
#openshift_metrics_install_metrics=true
# https://github.com/openshift/origin-metrics/issues/429
#openshift_metrics_cassandra_image="docker.io/openshift/origin-metrics-cassandra:v3.11.0"
#openshift_metrics_hawkular_metrics_image="docker.io/openshift/origin-metrics-hawkular-metrics:v3.11.0"
#openshift_metrics_heapster_image="docker.io/openshift/origin-metrics-heapster:v3.11.0"
# https://github.com/openshift/origin-metrics/issues/429#issuecomment-417124646
#openshift_metrics_schema_installer_image="docker.io/alv91/origin-metrics-schema-installer:v3.10.0"
# Provide local certificate paths which will be deployed to masters
#openshift_master_overwrite_named_certificates=true
#openshift_master_named_certificates=[{"certfile": "master.crt", "keyfile": "master.key", "cafile": "master-ca.crt"}]
# Add a trusted CA to all pods
#openshift_additional_ca=ca-bundle.crt
[masters]
master1.okd.example.com
[etcd]
master1.okd.example.com
[nodes]
master1.okd.example.com openshift_node_group_name='node-config-master'
compute1.okd.example.com openshift_node_group_name='node-config-compute'
infra1.okd.example.com openshift_node_group_name='node-config-infra'