2018-08-30 09:41:20 +00:00
|
|
|
apiVersion: kubeadm.k8s.io/v1alpha1
|
2017-09-13 18:00:51 +00:00
|
|
|
kind: MasterConfiguration
|
|
|
|
api:
|
2018-08-18 14:05:35 +00:00
|
|
|
{% if groups['kube-master'] | length > 1 and kubeadm_config_api_fqdn is defined %}
|
2018-09-01 16:02:52 +00:00
|
|
|
controlPlaneEndpoint: {{ kubeadm_config_api_fqdn }}:{{ loadbalancer_apiserver.port | default(kube_apiserver_port) }}
|
2018-08-29 10:29:24 +00:00
|
|
|
{% else %}
|
2018-09-01 16:02:52 +00:00
|
|
|
advertiseAddress: {{ ip | default(ansible_default_ipv4.address) }}
|
|
|
|
bindPort: {{ kube_apiserver_port }}
|
2018-08-18 14:05:35 +00:00
|
|
|
{% endif %}
|
2017-09-13 18:00:51 +00:00
|
|
|
etcd:
|
2018-08-30 09:41:20 +00:00
|
|
|
endpoints:
|
2017-10-04 12:27:55 +00:00
|
|
|
{% for endpoint in etcd_access_addresses.split(',') %}
|
2018-08-30 09:41:20 +00:00
|
|
|
- {{ endpoint }}
|
2017-09-13 18:00:51 +00:00
|
|
|
{% endfor %}
|
2018-08-30 09:41:20 +00:00
|
|
|
caFile: {{ kube_config_dir }}/ssl/etcd/ca.pem
|
|
|
|
certFile: {{ kube_config_dir }}/ssl/etcd/node-{{ inventory_hostname }}.pem
|
|
|
|
keyFile: {{ kube_config_dir }}/ssl/etcd/node-{{ inventory_hostname }}-key.pem
|
2017-09-13 18:00:51 +00:00
|
|
|
networking:
|
|
|
|
dnsDomain: {{ dns_domain }}
|
|
|
|
serviceSubnet: {{ kube_service_addresses }}
|
|
|
|
podSubnet: {{ kube_pods_subnet }}
|
|
|
|
kubernetesVersion: {{ kube_version }}
|
2018-07-20 14:56:38 +00:00
|
|
|
{% if cloud_provider is defined and cloud_provider not in ["gce", "oci"] %}
|
2018-03-30 09:42:20 +00:00
|
|
|
cloudProvider: {{ cloud_provider }}
|
2017-12-25 08:57:45 +00:00
|
|
|
{% endif %}
|
2018-08-30 15:04:57 +00:00
|
|
|
{% if kube_proxy_mode == 'ipvs' %}
|
2018-01-29 05:15:32 +00:00
|
|
|
kubeProxy:
|
|
|
|
config:
|
2018-08-30 15:04:57 +00:00
|
|
|
{% if kube_version | version_compare('v1.10', '<') %}
|
2018-01-29 05:15:32 +00:00
|
|
|
featureGates: SupportIPVSProxyMode=true
|
2018-08-30 15:04:57 +00:00
|
|
|
{% endif %}
|
|
|
|
{% if kube_version | version_compare('v1.10', '>=') %}
|
|
|
|
featureGates:
|
|
|
|
SupportIPVSProxyMode: true
|
|
|
|
{% endif %}
|
2018-01-29 05:15:32 +00:00
|
|
|
mode: ipvs
|
|
|
|
{% endif %}
|
2018-08-24 08:59:06 +00:00
|
|
|
{% if kube_proxy_nodeport_addresses %}
|
|
|
|
nodePortAddresses: [{{ kube_proxy_nodeport_addresses_cidr }}]
|
|
|
|
{% endif %}
|
2017-09-15 21:28:15 +00:00
|
|
|
authorizationModes:
|
2017-09-13 18:00:51 +00:00
|
|
|
{% for mode in authorization_modes %}
|
|
|
|
- {{ mode }}
|
|
|
|
{% endfor %}
|
|
|
|
selfHosted: false
|
|
|
|
apiServerExtraArgs:
|
2017-11-29 15:24:02 +00:00
|
|
|
bind-address: {{ kube_apiserver_bind_address }}
|
2018-09-12 06:22:11 +00:00
|
|
|
{% if kube_apiserver_insecure_port|string != "0" %}
|
2017-09-13 18:00:51 +00:00
|
|
|
insecure-bind-address: {{ kube_apiserver_insecure_bind_address }}
|
2018-09-12 06:22:11 +00:00
|
|
|
{% endif %}
|
2017-09-13 18:00:51 +00:00
|
|
|
insecure-port: "{{ kube_apiserver_insecure_port }}"
|
2018-08-02 18:10:40 +00:00
|
|
|
{% if kube_version | version_compare('v1.10', '<') %}
|
2017-09-13 18:00:51 +00:00
|
|
|
admission-control: {{ kube_apiserver_admission_control | join(',') }}
|
2018-08-02 18:10:40 +00:00
|
|
|
{% else %}
|
2018-08-06 18:50:48 +00:00
|
|
|
{% if kube_apiserver_enable_admission_plugins|length > 0 %}
|
2018-09-01 16:02:52 +00:00
|
|
|
enable-admission-plugins: {{ kube_apiserver_enable_admission_plugins | join(',') }}
|
2018-08-06 18:50:48 +00:00
|
|
|
{% endif %}
|
|
|
|
{% if kube_apiserver_disable_admission_plugins|length > 0 %}
|
2018-09-01 16:02:52 +00:00
|
|
|
disable-admission-plugins: {{ kube_apiserver_disable_admission_plugins | join(',') }}
|
2018-08-06 18:50:48 +00:00
|
|
|
{% endif %}
|
2018-08-02 18:10:40 +00:00
|
|
|
{% endif %}
|
2017-09-15 21:28:15 +00:00
|
|
|
apiserver-count: "{{ kube_apiserver_count }}"
|
2018-03-20 13:33:36 +00:00
|
|
|
{% if kube_version | version_compare('v1.9', '>=') %}
|
|
|
|
endpoint-reconciler-type: lease
|
2018-04-01 16:58:08 +00:00
|
|
|
{% endif %}
|
2018-06-18 13:19:12 +00:00
|
|
|
{% if etcd_events_cluster_enabled %}
|
2018-04-01 16:58:08 +00:00
|
|
|
etcd-servers-overrides: "/events#{{ etcd_events_access_addresses }}"
|
2018-03-30 09:38:06 +00:00
|
|
|
{% endif %}
|
2017-09-13 18:00:51 +00:00
|
|
|
service-node-port-range: {{ kube_apiserver_node_port_range }}
|
2018-03-13 09:31:15 +00:00
|
|
|
kubelet-preferred-address-types: "{{ kubelet_preferred_address_types }}"
|
2017-09-13 18:00:51 +00:00
|
|
|
{% if kube_basic_auth|default(true) %}
|
|
|
|
basic-auth-file: {{ kube_users_dir }}/known_users.csv
|
|
|
|
{% endif %}
|
|
|
|
{% if kube_oidc_auth|default(false) and kube_oidc_url is defined and kube_oidc_client_id is defined %}
|
|
|
|
oidc-issuer-url: {{ kube_oidc_url }}
|
|
|
|
oidc-client-id: {{ kube_oidc_client_id }}
|
|
|
|
{% if kube_oidc_ca_file is defined %}
|
|
|
|
oidc-ca-file: {{ kube_oidc_ca_file }}
|
|
|
|
{% endif %}
|
|
|
|
{% if kube_oidc_username_claim is defined %}
|
|
|
|
oidc-username-claim: {{ kube_oidc_username_claim }}
|
|
|
|
{% endif %}
|
|
|
|
{% if kube_oidc_groups_claim is defined %}
|
|
|
|
oidc-groups-claim: {{ kube_oidc_groups_claim }}
|
|
|
|
{% endif %}
|
2018-03-15 19:20:05 +00:00
|
|
|
{% endif %}
|
|
|
|
{% if kube_encrypt_secret_data %}
|
|
|
|
experimental-encryption-provider-config: {{ kube_config_dir }}/ssl/secrets_encryption.yaml
|
2017-09-13 18:00:51 +00:00
|
|
|
{% endif %}
|
|
|
|
storage-backend: {{ kube_apiserver_storage_backend }}
|
|
|
|
{% if kube_api_runtime_config is defined %}
|
2017-10-15 19:41:17 +00:00
|
|
|
runtime-config: {{ kube_api_runtime_config | join(',') }}
|
2017-09-13 18:00:51 +00:00
|
|
|
{% endif %}
|
|
|
|
allow-privileged: "true"
|
2018-02-12 07:29:46 +00:00
|
|
|
{% for key in kube_kubeadm_apiserver_extra_args %}
|
2018-03-15 19:27:19 +00:00
|
|
|
{{ key }}: "{{ kube_kubeadm_apiserver_extra_args[key] }}"
|
2018-02-12 07:29:46 +00:00
|
|
|
{% endfor %}
|
2018-09-02 18:27:33 +00:00
|
|
|
{% if kube_feature_gates %}
|
|
|
|
feature-gates: {{ kube_feature_gates|join(',') }}
|
|
|
|
{% endif %}
|
2017-09-13 18:00:51 +00:00
|
|
|
controllerManagerExtraArgs:
|
|
|
|
node-monitor-grace-period: {{ kube_controller_node_monitor_grace_period }}
|
|
|
|
node-monitor-period: {{ kube_controller_node_monitor_period }}
|
|
|
|
pod-eviction-timeout: {{ kube_controller_pod_eviction_timeout }}
|
2018-09-02 18:27:33 +00:00
|
|
|
{% if kube_feature_gates %}
|
|
|
|
feature-gates: {{ kube_feature_gates|join(',') }}
|
|
|
|
{% endif %}
|
2018-02-14 16:15:25 +00:00
|
|
|
{% if cloud_provider is defined and cloud_provider in ["openstack"] and openstack_cacert is defined %}
|
|
|
|
controllerManagerExtraVolumes:
|
|
|
|
- name: openstackcacert
|
|
|
|
hostPath: "{{ kube_config_dir }}/openstack-cacert.pem"
|
|
|
|
mountPath: "{{ kube_config_dir }}/openstack-cacert.pem"
|
|
|
|
{% endif %}
|
2018-02-05 13:49:13 +00:00
|
|
|
{% for key in kube_kubeadm_controller_extra_args %}
|
2018-03-15 19:27:19 +00:00
|
|
|
{{ key }}: "{{ kube_kubeadm_controller_extra_args[key] }}"
|
2018-02-05 13:49:13 +00:00
|
|
|
{% endfor %}
|
|
|
|
schedulerExtraArgs:
|
2018-09-02 18:27:33 +00:00
|
|
|
{% if kube_feature_gates %}
|
|
|
|
feature-gates: {{ kube_feature_gates|join(',') }}
|
|
|
|
{% endif %}
|
|
|
|
{% if kube_kubeadm_scheduler_extra_args|length > 0 %}
|
2018-02-05 13:49:13 +00:00
|
|
|
{% for key in kube_kubeadm_scheduler_extra_args %}
|
2018-03-15 19:27:19 +00:00
|
|
|
{{ key }}: "{{ kube_kubeadm_scheduler_extra_args[key] }}"
|
2018-02-05 13:49:13 +00:00
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
2017-09-13 18:00:51 +00:00
|
|
|
apiServerCertSANs:
|
|
|
|
{% for san in apiserver_sans.split(' ') | unique %}
|
|
|
|
- {{ san }}
|
|
|
|
{% endfor %}
|
|
|
|
certificatesDir: {{ kube_config_dir }}/ssl
|
2017-09-15 21:28:15 +00:00
|
|
|
unifiedControlPlaneImage: "{{ hyperkube_image_repo }}:{{ hyperkube_image_tag }}"
|
2018-03-23 12:33:25 +00:00
|
|
|
{% if kube_override_hostname|default('') %}
|
2018-03-24 17:29:07 +00:00
|
|
|
nodeName: {{ kube_override_hostname }}
|
2018-03-23 12:33:25 +00:00
|
|
|
{% endif %}
|