Project

General

Profile

The ungleich kubernetes infrastructure » History » Version 24

Nico Schottelius, 08/14/2021 07:10 PM

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