This repository has been archived by the owner on Jul 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathhosts
61 lines (45 loc) · 1.52 KB
/
hosts
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
[bastion]
bastion ansible_host=209.132.184.111
[beyond_bastion:children]
OSv3
[beyond_bastion:vars]
ansible_ssh_common_args='-o ProxyCommand="ssh -W %h:%p -q fedora@209.132.184.111"'
[fedora_24:children]
bastion
beyond_bastion
[fedora_24:vars]
ansible_user=fedora
ansible_become=yes
[masters]
master-1 ansible_host=172.25.160.25 openshift_hostname=master-1.fosp
master-2 ansible_host=172.25.160.26 openshift_hostname=master-2.fosp
master-3 ansible_host=172.25.160.27 openshift_hostname=master-3.fosp
[nodes]
node-1 ansible_host=172.25.160.23 openshift_hostname=node-1.fosp
node-2 ansible_host=172.25.160.24 openshift_hostname=node-2.fosp
[infra]
infra-1 ansible_host=172.25.160.21 openshift_hostname=infra-1.fosp
infra-2 ansible_host=172.25.160.22 openshift_hostname=infra-2.fosp
[etcd:children]
masters
[OSv3:children]
infra
masters
nodes
etcd
[OSv3:vars]
deployment_type=origin
openshift_override_hostname_check=false
openshift_use_openshift_sdn=false
openshift_set_node_ip=true
openshift_use_flannel=true
openshift_use_dnsmasq=true
openshift_master_cluster_hostname=master-1.fosp
openshift_master_cluster_public_hostname=fosp.fedorainfracloud.org
openshift_master_cluster_method=native
[masters:vars]
openshift_schedulable=true
openshift_router_selector="region=infra"
openshift_master_identity_providers=[{'name': 'htpasswd_auth', 'login': 'true', 'challenge': 'true', 'kind': 'HTPasswdPasswordIdentityProvider', 'filename': '/etc/origin/master/htpasswd'}]
[nodes:vars]
openshift_node_labels="{'region': 'primary', 'zone': 'default'}"