mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 05:36:59 +01:00
Install Kubernetes 1.11 and go back to Ubuntu Xenial until Bionic is officially supported
This commit is contained in:
parent
5acc7652a9
commit
bf83e675f2
26 changed files with 765 additions and 7 deletions
24
roles/kubernetes/defaults/main.yml
Normal file
24
roles/kubernetes/defaults/main.yml
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
---
|
||||
# Kubernetes
|
||||
kubernetes_apt_key: https://packages.cloud.google.com/apt/doc/apt-key.gpg
|
||||
kubernetes_apt_channel: main
|
||||
kubernetes_release: xenial
|
||||
# versions can be found here
|
||||
kubernetes_version: v1.11.3
|
||||
kubernetes_port: 6443
|
||||
|
||||
# kubeadm
|
||||
kubeadm_ignore_preflight_errors: ""
|
||||
kubelet_fail_swap_on: True
|
||||
|
||||
# Flannel
|
||||
cni_version: v0.10.0
|
||||
# these will determine the number of pods you can run
|
||||
# cirdr should be at least /16 https://kubernetes.io/docs/admin/kubeadm/
|
||||
pod_subnet: 10.244.0.0/16
|
||||
|
||||
# floating balanced ip for k8s api
|
||||
api_floating_ip: 192.168.66.253
|
||||
api_floating_mask: 24
|
||||
api_floating_port: 6443
|
||||
router_id: 66
|
||||
Loading…
Add table
Add a link
Reference in a new issue