The ungleich kubernetes infrastructure » History » Version 21
  Nico Schottelius, 08/14/2021 05:18 PM 
  
| 1 | 1 | Nico Schottelius | h1. The ungleich kubernetes infrastructure  | 
|---|---|---|---|
| 2 | |||
| 3 | 3 | Nico Schottelius | {{toc}} | 
| 4 | |||
| 5 | 1 | Nico Schottelius | h2. Status  | 
| 6 | |||
| 7 | This document is **pre-production**  | 
||
| 8 | |||
| 9 | 10 | Nico Schottelius | h2. k8s clusters  | 
| 10 | |||
| 11 | 17 | Nico Schottelius | | Cluster | Purpose | Init/Notes | flux |  | 
| 12 | 13 | Nico Schottelius | | c0.k8s.ooo | Dev | @kubeadm init --config k8s/c0/kubeadm.yaml --upload-certs@ |  | 
| 13 | 20 | Nico Schottelius | | c1.k8s.ooo | Dev p6 | VM based | @kubeadm init --config k8s/c1/kubeadm.yaml@ |  | 
| 14 | 1 | Nico Schottelius | | c2.k8s.ooo | Demo/Semiprod | @kubeadm init --config k8s/c2/kubeadm.yaml --upload-certs@ | @flux bootstrap git --url=ssh://git@code.ungleich.ch/ungleich-intern/k8s-config.git --path=cluster/c2 --network-policy false --cluster-domain c2.k8s.ooo@ |  | 
| 15 | | c3.k8s.ooo | Dev p6 | VM based |  | 
||
| 16 | 20 | Nico Schottelius | | c4.k8s.ooo | Dev p7 | Maintained by Fran | |  | 
| 17 | 15 | Nico Schottelius | | p6.k8s.ooo | Prod | Place6 |  | 
| 18 | 1 | Nico Schottelius | | p7.k8s.ooo | Prod | Place7 |  | 
| 19 | 21 | Nico Schottelius | | p10.k8s.ooo | Prod | Place10: @kubeadm init --config bootstrap/p10/kubeadm.yaml --upload-certs@ |  | 
| 20 | |||
| 21 | 10 | Nico Schottelius | |
| 22 | 1 | Nico Schottelius | h2. General architecture and components overview  | 
| 23 | |||
| 24 | * All k8s clusters are IPv6 only  | 
||
| 25 | * We use BGP peering to propagate podcidr and serviceCidr networks to our infrastructure  | 
||
| 26 | 2 | Nico Schottelius | * The main / public repository is "ungleich-k8s":https://code.ungleich.ch/ungleich-public/ungleich-k8s  | 
| 27 | 1 | Nico Schottelius | |
| 28 | 18 | Nico Schottelius | th2. ungleich kubernetes infrastructure v1  | 
| 29 | 1 | Nico Schottelius | |
| 30 | We are using the following components:  | 
||
| 31 | |||
| 32 | * "Calico as a CNI":https://www.projectcalico.org/ with BGP, IPv6 only, no encapsulation  | 
||
| 33 | 18 | Nico Schottelius | ** Needed for basic networking  | 
| 34 | 1 | Nico Schottelius | * "kubernetes-secret-generator":https://github.com/mittwald/kubernetes-secret-generator for creating secrets  | 
| 35 | 18 | Nico Schottelius | ** Needed so that secrets are not stored in the git repository, but only in the cluster  | 
| 36 | * "ungleich-certbot":https://hub.docker.com/repository/docker/ungleich/ungleich-certbot  | 
||
| 37 | ** Needed to get letsencrypt certificates for services  | 
||
| 38 | 2 | Nico Schottelius | * "rook with ceph rbd + cephfs":https://rook.io/ for storage  | 
| 39 | 1 | Nico Schottelius | ** rbd for almost everything, *ReadWriteOnce*  | 
| 40 | ** cephfs for smaller things, multi access *ReadWriteMany*  | 
||
| 41 | 18 | Nico Schottelius | ** Needed for providing persistent storage  | 
| 42 | * "flux v2":https://fluxcd.io/  | 
||
| 43 | ** Needed to manage resources automatically  | 
||
| 44 | |||
| 45 | 3 | Nico Schottelius | |
| 46 | 8 | Nico Schottelius | h3. Persistent storage setup  | 
| 47 | |||
| 48 | * 3 or 5 monitors  | 
||
| 49 | |||
| 50 | 9 | Nico Schottelius | h3. Cluster types  | 
| 51 | 1 | Nico Schottelius | |
| 52 | 9 | Nico Schottelius | | **Type/Feature** | **Development** | **Production** |  | 
| 53 | | Min No. nodes | 3 (1 master, 3 worker) | 5 (3 master, 3 worker) |  | 
||
| 54 | | Recommended minimum | 4 (dedicated master, 3 worker) | 8 (3 master, 5 worker) |  | 
||
| 55 | | Separation of control plane | optional | recommended |  | 
||
| 56 | | Persistent storage | required | required |  | 
||
| 57 | | Number of storage monitors | 3 | 5 |  | 
||
| 58 | 10 | Nico Schottelius | |
| 59 | h2. Operations  | 
||
| 60 | |||
| 61 | h3. Installing a new k8s cluster  | 
||
| 62 | |||
| 63 | * Decide on the cluster name (usually *cX.k8s.ooo*), X counting upwards  | 
||
| 64 | * Use cdist to configure the nodes with requirements like crio  | 
||
| 65 | * Decide between single or multi node control plane setups (see below)  | 
||
| 66 | * Setup DNS delegation and glue records:  | 
||
| 67 | ** kube-dns.kube-system.svc.cX AAAA ...  | 
||
| 68 | ** kube-dns.kube-system.svc.cX A ...  | 
||
| 69 | ** cX NS kube-dns.kube-system.svc.cX  | 
||
| 70 | |||
| 71 | 9 | Nico Schottelius | |
| 72 | 8 | Nico Schottelius | |
| 73 | 3 | Nico Schottelius | h2. Open Issues / To be discussed  | 
| 74 | |||
| 75 | * "Maybe add Autoscaling support?":https://github.com/kubernetes-sigs/metrics-server  | 
||
| 76 | ** https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/  | 
||
| 77 | ** https://github.com/kubernetes/autoscaler/tree/master/vertical-pod-autoscaler/  | 
||
| 78 | * Certainly deploy in-cluster monitoring  | 
||
| 79 | ** "prometheus-operator":https://github.com/prometheus-operator/prometheus-operator CR  | 
||
| 80 | ** "kube-prometheus":https://github.com/prometheus-operator/kube-prometheus complete example, based on prometheus-operator  | 
||
| 81 | 4 | Nico Schottelius | ** "kubernetes dashboard":https://github.com/kubernetes/dashboard generic cluster overview, basically kubectl for a broswer + graphs  | 
| 82 | 5 | Nico Schottelius | ** "kube-prometheus-stack via helm":https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-prometheus-stack#kube-prometheus-stack  | 
| 83 | *** Looks most fitting, testing it in #9468  | 
||
| 84 | 7 | Nico Schottelius | * Matrix/Notification bot  | 
| 85 | ** Informing about changes in the cluster  |