summaryrefslogtreecommitdiffstats
path: root/roles/openshift_master/defaults/main.yml
blob: fe78dea662fdd57740b5f69b0fd1ab419643a638 (plain)
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
---
# openshift_master_defaults_in_use is a workaround to detect if we are consuming
# the plays from the role or outside of the role.
openshift_master_defaults_in_use: True
openshift_master_debug_level: "{{ debug_level | default(2) }}"

r_openshift_master_firewall_enabled: "{{ os_firewall_enabled | default(True) }}"
r_openshift_master_use_firewalld: "{{ os_firewall_use_firewalld | default(False) }}"

openshift_node_ips: []
r_openshift_master_clean_install: false
r_openshift_master_etcd3_storage: false
r_openshift_master_os_firewall_enable: true
r_openshift_master_os_firewall_deny: []
default_r_openshift_master_os_firewall_allow:
- service: api server https
  port: "{{ openshift.master.api_port }}/tcp"
- service: api controllers https
  port: "{{ openshift.master.controllers_port }}/tcp"
- service: skydns tcp
  port: "{{ openshift.master.dns_port }}/tcp"
- service: skydns udp
  port: "{{ openshift.master.dns_port }}/udp"
- service: etcd embedded
  port: 4001/tcp
  cond: "{{ groups.oo_etcd_to_config | default([]) | length == 0 }}"
r_openshift_master_os_firewall_allow: "{{ default_r_openshift_master_os_firewall_allow | union(openshift_master_open_ports | default([])) }}"


# oreg_url is defined by user input
oreg_host: "{{ oreg_url.split('/')[0] if (oreg_url is defined and '.' in oreg_url.split('/')[0]) else '' }}"
oreg_auth_credentials_path: "{{ r_openshift_master_data_dir }}/.docker"
oreg_auth_credentials_replace: False
l_bind_docker_reg_auth: False

containerized_svc_dir: "/usr/lib/systemd/system"
ha_svc_template_path: "native-cluster"

# NOTE
# r_openshift_master_*_default may be defined external to this role.
# openshift_use_*, if defined, may affect other roles or play behavior.
r_openshift_master_use_openshift_sdn_default: "{{ openshift_use_openshift_sdn | default(True) }}"
r_openshift_master_use_openshift_sdn: "{{ r_openshift_master_use_openshift_sdn_default }}"

r_openshift_master_use_nuage_default: "{{ openshift_use_nuage | default(False) }}"
r_openshift_master_use_nuage: "{{ r_openshift_master_use_nuage_default }}"

r_openshift_master_use_contiv_default: "{{ openshift_use_contiv | default(False) }}"
r_openshift_master_use_contiv: "{{ r_openshift_master_use_contiv_default }}"

r_openshift_master_use_kuryr_default: "{{ openshift_use_kuryr | default(False) }}"
r_openshift_master_use_kuryr: "{{ r_openshift_master_use_kuryr_default }}"

r_openshift_master_data_dir_default: "{{ openshift_data_dir | default('/var/lib/origin') }}"
r_openshift_master_data_dir: "{{ r_openshift_master_data_dir_default }}"

r_openshift_master_sdn_network_plugin_name_default: "{{ os_sdn_network_plugin_name | default('redhat/openshift-ovs-subnet') }}"
r_openshift_master_sdn_network_plugin_name: "{{ r_openshift_master_sdn_network_plugin_name_default }}"

openshift_master_image_config_latest_default: "{{ openshift_image_config_latest | default(False) }}"
openshift_master_image_config_latest: "{{ openshift_master_image_config_latest_default }}"

openshift_master_config_dir_default: "{{ (openshift.common.config_base | default('/etc/origin/master')) ~ '/master' }}"
openshift_master_config_dir: "{{ openshift_master_config_dir_default }}"
openshift_master_cloud_provider: "{{ openshift_cloudprovider_kind | default('aws') }}"

openshift_master_node_config_networkconfig_mtu: "{{ openshift_node_sdn_mtu | default(1450) }}"

openshift_master_node_config_kubeletargs_cpu: 500m
openshift_master_node_config_kubeletargs_mem: 512M

openshift_master_bootstrap_enabled: False

openshift_master_client_binary: "{{ openshift.common.client_binary if openshift is defined else 'oc' }}"

openshift_master_config_imageconfig_format: "{{ openshift.node.registry_url }}"

# these are for the default settings in a generated node-config.yaml
openshift_master_node_config_default_edits:
- key: nodeName
  state: absent
- key: dnsBindAddress
  value: 127.0.0.1:53
- key: dnsDomain
  value: cluster.local
- key: dnsRecursiveResolvConf
  value: /etc/origin/node/resolv.conf
- key: imageConfig.format
  value: "{{ openshift_master_config_imageconfig_format }}"
- key: kubeletArguments.cloud-config
  value:
  - "/etc/origin/cloudprovider/{{ openshift_master_cloud_provider }}.conf"
- key: kubeletArguments.cloud-provider
  value:
  - "{{ openshift_master_cloud_provider }}"
- key: kubeletArguments.kube-reserved
  value:
  - "cpu={{ openshift_master_node_config_kubeletargs_cpu }},memory={{ openshift_master_node_config_kubeletargs_mem }}"
- key: kubeletArguments.system-reserved
  value:
  - "cpu={{ openshift_master_node_config_kubeletargs_cpu }},memory={{ openshift_master_node_config_kubeletargs_mem }}"
- key: enable-controller-attach-detach
  value:
  - 'true'
- key: networkConfig.mtu
  value: "{{ openshift_master_node_config_networkconfig_mtu }}"
- key: networkConfig.networkPluginName
  value: "{{ r_openshift_master_sdn_network_plugin_name }}"
- key: networkPluginName
  value: "{{ r_openshift_master_sdn_network_plugin_name }}"


# We support labels for all nodes here
openshift_master_node_config_kubeletargs_default_labels: []
# We do support overrides for node group labels
openshift_master_node_config_kubeletargs_master_labels: []
openshift_master_node_config_kubeletargs_infra_labels: []
openshift_master_node_config_kubeletargs_compute_labels: []

openshift_master_node_config_master:
  type: master
  edits:
  - key: kubeletArguments.node-labels
    value: "{{ openshift_master_node_config_kubeletargs_default_labels |
               union(openshift_master_node_config_kubeletargs_master_labels) |
               union(['type=master']) }}"
openshift_master_node_config_infra:
  type: infra
  edits:
  - key: kubeletArguments.node-labels
    value: "{{ openshift_master_node_config_kubeletargs_default_labels |
               union(openshift_master_node_config_kubeletargs_infra_labels) |
               union(['type=infra']) }}"
openshift_master_node_config_compute:
  type: compute
  edits:
  - key: kubeletArguments.node-labels
    value: "{{ openshift_master_node_config_kubeletargs_default_labels |
               union(openshift_master_node_config_kubeletargs_compute_labels) |
               union(['type=compute']) }}"

openshift_master_node_configs:
- "{{ openshift_master_node_config_infra }}"
- "{{ openshift_master_node_config_compute }}"

openshift_master_bootstrap_namespace: openshift-node