-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Kevin Lefevre <[email protected]>
- Loading branch information
1 parent
362cb3f
commit 7ca3903
Showing
9 changed files
with
78 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
--- | ||
bootstrap_python: false | ||
# Install portable python distribution that do not provide python (eg. | ||
# coreos/flatcar): | ||
# bootstrap_python: true | ||
# ansible_python_interpreter: /opt/bin/python | ||
|
||
ansible_ssh_user: ubuntu | ||
|
||
ansible_ssh_common_args: '-o StrictHostKeyChecking=no' | ||
# To use a bastion host between node and ansible use: | ||
# ansible_ssh_common_args: '-o StrictHostKeyChecking=no -o ProxyCommand="ssh -o StrictHostKeyChecking=no -W %h:%p -q ubuntu@{{ ansible_ssh_bastion_host }}"' | ||
# ansible_ssh_bastion_host: __BASTION_IP__ | ||
|
||
kubeadm_version: v1.19.3 | ||
kubernetes_version: v1.19.3 | ||
# If deploying HA clusters, specify the loadbalancer IP or domain name and port | ||
# in front of the control plane nodes: | ||
# kubernetes_api_server_address: __LB_HOSTNAME__ | ||
# kubernetes_api_server_port: __LB_LISTENER_PORT__ | ||
|
||
bin_dir: /usr/local/bin | ||
# Change default path for custom binary. On OS with immutable file system (eg. | ||
# coreos/flatcar) use a writable path | ||
# bin_dir: /opt/bin | ||
|
||
cni_plugin: "calico" | ||
|
||
# Customize API server | ||
kubeadm_api_server_extra_args: {} | ||
kubeadm_api_server_extra_volumes: {} | ||
|
||
# Customize controller manager scheduler | ||
# eg. to publish prometheus metrics on "0.0.0.0": | ||
# kubeadm_controller_manager_extra_args: | | ||
# address: 0.0.0.0 | ||
kubeadm_controller_manager_extra_args: {} | ||
kubeadm_controller_manager_extra_volumes: {} | ||
|
||
# Customize scheduler manager scheduler | ||
# eg. to publish prometheus metrics on "0.0.0.0": | ||
# kubeadm_scheduler_extra_args: | | ||
# address: 0.0.0.0 | ||
kubeadm_scheduler_extra_volumes: {} | ||
kubeadm_scheduler_extra_args: {} | ||
|
||
# Customize Kubelet | ||
# `kubeadm_kubelet_extra_args` is to be used as a last resort, | ||
# `kubeadm_kubelet_component_config` configure kubelet wth native kubeadm API, | ||
# please see | ||
# https://kubernetes.io/docs/tasks/administer-cluster/kubelet-config-file/ for | ||
# more information | ||
kubeadm_kubelet_component_config: {} | ||
kubeadm_kubelet_extra_args: {} | ||
|
||
|
||
# Customize Kube Proxy configuration using native Kubeadm API | ||
# eg. to publish prometheus metrics on "0.0.0.0": | ||
# kubeadm_kube_proxy_component_config: | | ||
# metricsBindAddress: 0.0.0.0 | ||
kubeadm_kube_proxy_component_config: {} | ||
|
||
# Additionnal subject alternative names for the API server | ||
# eg. to add aditionnals domains: | ||
# kubeadm_api_server_cert_extra_sans: | | ||
# - mydomain.example.com | ||
kubeadm_api_server_cert_extra_sans: {} | ||
|
||
kubeadm_cluster_name: symplegma | ||
|
||
# Enable systemd cgroup for Kubelet and container runtime | ||
# DO NOT CHANGE this on an existing cluster: Changing the cgroup driver of a | ||
# Node that has joined a cluster is strongly not recommended. If the kubelet | ||
# has created Pods using the semantics of one cgroup driver, changing the | ||
# container runtime to another cgroup driver can cause errors when trying to | ||
# re-create the Pod sandbox for such existing Pods. Restarting the kubelet may | ||
# not solve such errors. Default is to use cgroupfs. | ||
# systemd_cgroup: true |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.