Actions
The ungleich kubernetes infrastructure » History » Revision 10
« Previous |
Revision 10/219
(diff)
| Next »
Nico Schottelius, 07/11/2021 01:53 PM
The ungleich kubernetes infrastructure¶
- Table of contents
- The ungleich kubernetes infrastructure
Status¶
This document is pre-production
k8s clusters¶
Cluster | Init |
c0.k8s.ooo | kubeadm init --config k8s/c0/kubeadm.yaml --upload-certs |
c2.k8s.ooo | @kubeadm init --config k8s/c2/kubeadm.yaml |
General architecture and components overview¶
- All k8s clusters are IPv6 only
- We use BGP peering to propagate podcidr and serviceCidr networks to our infrastructure
- The main / public repository is ungleich-k8s
ungleich kubernetes infrastructure v1¶
We are using the following components:
- Calico as a CNI with BGP, IPv6 only, no encapsulation
- kubernetes-secret-generator for creating secrets
- ungleich-certbot to get certificates
- rook with ceph rbd + cephfs for storage
- rbd for almost everything, ReadWriteOnce
- cephfs for smaller things, multi access ReadWriteMany
Persistent storage setup¶
- 3 or 5 monitors
Cluster types¶
Type/Feature | Development | Production |
Min No. nodes | 3 (1 master, 3 worker) | 5 (3 master, 3 worker) |
Recommended minimum | 4 (dedicated master, 3 worker) | 8 (3 master, 5 worker) |
Separation of control plane | optional | recommended |
Persistent storage | required | required |
Number of storage monitors | 3 | 5 |
Operations¶
Installing a new k8s cluster¶
- Decide on the cluster name (usually cX.k8s.ooo), X counting upwards
- Use cdist to configure the nodes with requirements like crio
- Decide between single or multi node control plane setups (see below)
- Setup DNS delegation and glue records:
- kube-dns.kube-system.svc.cX AAAA ...
- kube-dns.kube-system.svc.cX A ...
- cX NS kube-dns.kube-system.svc.cX
Open Issues / To be discussed¶
- Maybe add Autoscaling support?
- Certainly deploy in-cluster monitoring
- prometheus-operator CR
- kube-prometheus complete example, based on prometheus-operator
- kubernetes dashboard generic cluster overview, basically kubectl for a broswer + graphs
- kube-prometheus-stack via helm
- Looks most fitting, testing it in #9468
- Matrix/Notification bot
- Informing about changes in the cluster
Updated by Nico Schottelius over 3 years ago · 10 revisions