-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhosts.yaml
75 lines (69 loc) · 2.76 KB
/
hosts.yaml
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
73
74
75
all:
children:
OSEv3:
vars:
debug_level: 2
ansible_ssh_user: root
ansible_user: root
openshift_deployment_type: origin
openshift_disable_check: docker_storage,memory_availability,disk_availability,docker_image_availability
openshift_cluster_monitoring_operator_install: false
internal_console_port: 8443
openshift_master_api_port: 8443
openshift_master_console_port: 8443
openshift_master_cluster_hostname: console.okd3-prod.seems.local
openshift_master_cluster_public_hostname: console.okd3-prod.seems.local
openshift_master_default_subdomain: apps.okd3-prod.seems.local
openshift_hosted_router_certificate:
certfile: /root/certs/router.crt.pem
keyfile: /root/certs/router.key.pem
cafile: /root/certs/ca.crt.pem
openshift_named_certificates_redeploy: false
openshift_master_overwrite_named_certificates: true
openshift_master_named_certificates:
- certfile: /root/certs/named.crt.pem
keyfile: /root/certs/named.key.pem
cafile: /root/certs/ca.crt.pem
openshift_master_htpasswd_file: /etc/origin/master/htpasswd
openshift_master_htpasswd_users:
okdadmin: $apr1$XbI1zlV3$FuiA0g8tUfbYmZDeZpyRs/
# password: dmlAjICyfrYXCsEH3NOoeeZMBkbo9G0JJy70z4etiO1dlCoo
openshift_master_identity_providers:
- challenge: 'true'
kind: HTPasswdPasswordIdentityProvider
login: 'true'
name: htpasswd_auth
children:
etcd:
hosts:
okd3-master[0:2].seems.local:
openshift_node_group_name: node-config-master
lb:
hosts:
okd3-lb0.seems.local:
masters:
hosts:
okd3-master[0:2].seems.local: { }
nfs:
hosts:
okd3-lb0.seems.local: { }
nodes:
hosts:
okd3-infra[0:1].seems.local:
openshift_node_group_name: node-config-infra
okd3-master[0:2].seems.local: { }
okd3-node[0:1].seems.local:
openshift_node_group_name: node-config-compute
vars:
journald_vars_to_replace:
- { var: Storage, val: persistent }
- { var: Compress, val: yes }
- { var: SyncIntervalSec, val: 1s }
- { var: RateLimitInterval, val: 1s }
- { var: RateLimitBurst, val: 10000 }
- { var: SystemMaxUse, val: 4G }
- { var: SystemMaxFileSize, val: 10M }
- { var: MaxRetentionSec, val: 1month }
- { var: MaxFileSec, val: 1day }
- { var: ForwardToSyslog, val: no }
- { var: ForwardToWall, val: no }