Project

General

Profile

The ungleich kubernetes infrastructure » History » Version 97

Nico Schottelius, 04/05/2022 06:07 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 28 Nico Schottelius
This document is **pre-production**.
8
This document is to become the ungleich kubernetes infrastructure overview as well as the ungleich kubernetes manual.
9 1 Nico Schottelius
10 10 Nico Schottelius
h2. k8s clusters
11
12 95 Nico Schottelius
| Cluster         | Purpose/Setup     | Maintainer | Master(s)                  | argo                                                | v4 http proxy | last verified |
13
| c0.k8s.ooo      | Dev               | -          | UNUSED                     |                                                     |               |    2021-10-05 |
14
| c1.k8s.ooo      | retired           |            | -                          |                                                     |               |    2022-03-15 |
15
| c2.k8s.ooo      | Dev p7 HW         | Nico       | server47 server53 server54 | "argo":https://argocd-server.argocd.svc.c2.k8s.ooo  |               |    2021-10-05 |
16
| c3.k8s.ooo      | retired           | -          | -                          |                                                     |               |    2021-10-05 |
17
| c4.k8s.ooo      | Dev2 p7 HW        | Jin-Guk    | server52 server53 server54 |                                                     |               |             - |
18
| c5.k8s.ooo      | retired           |            | -                          |                                                     |               |    2022-03-15 |
19
| c6.k8s.ooo      | Dev p6 VM Jin-Guk | Jin-Guk    |                            |                                                     |               |               |
20
| [[p5.k8s.ooo]]  | production        |            | server34 server36 server38 | "argo":https://argocd-server.argocd.svc.p5.k8s.ooo  |             - |               |
21
| [[p6.k8s.ooo]]  | production        |            | server67 server69 server71 | "argo":https://argocd-server.argocd.svc.p6.k8s.ooo  | 147.78.194.13 |    2021-10-05 |
22
| [[p10.k8s.ooo]] | production        |            | server63 server65 server83 | "argo":https://argocd-server.argocd.svc.p10.k8s.ooo | 147.78.194.12 |    2021-10-05 |
23
| fnnf            | development       | Nico       | server75                   |                                                     |               |               |
24 78 Nico Schottelius
25 21 Nico Schottelius
26 1 Nico Schottelius
h2. General architecture and components overview
27
28
* All k8s clusters are IPv6 only
29
* We use BGP peering to propagate podcidr and serviceCidr networks to our infrastructure
30
* The main public testing repository is "ungleich-k8s":https://code.ungleich.ch/ungleich-public/ungleich-k8s
31 18 Nico Schottelius
** Private configurations are found in the **k8s-config** repository
32 1 Nico Schottelius
33
h3. Cluster types
34
35 28 Nico Schottelius
| **Type/Feature**            | **Development**                | **Production**         |
36
| Min No. nodes               | 3 (1 master, 3 worker)         | 5 (3 master, 3 worker) |
37
| Recommended minimum         | 4 (dedicated master, 3 worker) | 8 (3 master, 5 worker) |
38
| Separation of control plane | optional                       | recommended            |
39
| Persistent storage          | required                       | required               |
40
| Number of storage monitors  | 3                              | 5                      |
41 1 Nico Schottelius
42 43 Nico Schottelius
h2. General k8s operations
43 1 Nico Schottelius
44 46 Nico Schottelius
h3. Cheat sheet / external great references
45
46
* "kubectl cheatsheet":https://kubernetes.io/docs/reference/kubectl/cheatsheet/
47
48 69 Nico Schottelius
h3. Allowing to schedule work on the control plane
49
50
* Mostly for single node / test / development clusters
51
* Just remove the master taint as follows
52
53
<pre>
54
kubectl taint nodes --all node-role.kubernetes.io/master-
55
</pre>
56
57
58 44 Nico Schottelius
h3. Get the cluster admin.conf
59
60
* On the masters of each cluster you can find the file @/etc/kubernetes/admin.conf@
61
* To be able to administrate the cluster you can copy the admin.conf to your local machine
62
* Multi cluster debugging can very easy if you name the config ~/cX-admin.conf (see example below)
63
64
<pre>
65
% scp root@server47.place7.ungleich.ch:/etc/kubernetes/admin.conf ~/c2-admin.conf
66
% export KUBECONFIG=~/c2-admin.conf    
67
% kubectl get nodes
68
NAME       STATUS                     ROLES                  AGE   VERSION
69
server47   Ready                      control-plane,master   82d   v1.22.0
70
server48   Ready                      control-plane,master   82d   v1.22.0
71
server49   Ready                      <none>                 82d   v1.22.0
72
server50   Ready                      <none>                 82d   v1.22.0
73
server59   Ready                      control-plane,master   82d   v1.22.0
74
server60   Ready,SchedulingDisabled   <none>                 82d   v1.22.0
75
server61   Ready                      <none>                 82d   v1.22.0
76
server62   Ready                      <none>                 82d   v1.22.0               
77
</pre>
78
79 18 Nico Schottelius
h3. Installing a new k8s cluster
80 8 Nico Schottelius
81 9 Nico Schottelius
* Decide on the cluster name (usually *cX.k8s.ooo*), X counting upwards
82 28 Nico Schottelius
** Using pXX.k8s.ooo for production clusters of placeXX
83 9 Nico Schottelius
* Use cdist to configure the nodes with requirements like crio
84
* Decide between single or multi node control plane setups (see below)
85 28 Nico Schottelius
** Single control plane suitable for development clusters
86 9 Nico Schottelius
87 28 Nico Schottelius
Typical init procedure:
88 9 Nico Schottelius
89 28 Nico Schottelius
* Single control plane: @kubeadm init --config bootstrap/XXX/kubeadm.yaml@
90
* Multi control plane (HA): @kubeadm init --config bootstrap/XXX/kubeadm.yaml --upload-certs@
91 10 Nico Schottelius
92 29 Nico Schottelius
h3. Deleting a pod that is hanging in terminating state
93
94
<pre>
95
kubectl delete pod <PODNAME> --grace-period=0 --force --namespace <NAMESPACE>
96
</pre>
97
98
(from https://stackoverflow.com/questions/35453792/pods-stuck-in-terminating-status)
99
100 42 Nico Schottelius
h3. Listing nodes of a cluster
101
102
<pre>
103
[15:05] bridge:~% kubectl get nodes
104
NAME       STATUS   ROLES                  AGE   VERSION
105
server22   Ready    <none>                 52d   v1.22.0
106
server23   Ready    <none>                 52d   v1.22.2
107
server24   Ready    <none>                 52d   v1.22.0
108
server25   Ready    <none>                 52d   v1.22.0
109
server26   Ready    <none>                 52d   v1.22.0
110
server27   Ready    <none>                 52d   v1.22.0
111
server63   Ready    control-plane,master   52d   v1.22.0
112
server64   Ready    <none>                 52d   v1.22.0
113
server65   Ready    control-plane,master   52d   v1.22.0
114
server66   Ready    <none>                 52d   v1.22.0
115
server83   Ready    control-plane,master   52d   v1.22.0
116
server84   Ready    <none>                 52d   v1.22.0
117
server85   Ready    <none>                 52d   v1.22.0
118
server86   Ready    <none>                 52d   v1.22.0
119
</pre>
120
121
122 41 Nico Schottelius
h3. Removing / draining a node
123
124
Usually @kubectl drain server@ should do the job, but sometimes we need to be more aggressive:
125
126
<pre>
127
kubectl drain --delete-emptydir-data --ignore-daemonsets server23
128 42 Nico Schottelius
</pre>
129
130
h3. Readding a node after draining
131
132
<pre>
133
kubectl uncordon serverXX
134 1 Nico Schottelius
</pre>
135 43 Nico Schottelius
136 50 Nico Schottelius
h3. (Re-)joining worker nodes after creating the cluster
137 49 Nico Schottelius
138
* We need to have an up-to-date token
139
* We use different join commands for the workers and control plane nodes
140
141
Generating the join command on an existing control plane node:
142
143
<pre>
144
kubeadm token create --print-join-command
145
</pre>
146
147 50 Nico Schottelius
h3. (Re-)joining control plane nodes after creating the cluster
148 1 Nico Schottelius
149 50 Nico Schottelius
* We generate the token again
150
* We upload the certificates
151
* We need to combine/create the join command for the control plane node
152
153
Example session:
154
155
<pre>
156
% kubeadm token create --print-join-command
157
kubeadm join p10-api.k8s.ooo:6443 --token xmff4i.ABC --discovery-token-ca-cert-hash sha256:longhash 
158
159
% kubeadm init phase upload-certs --upload-certs
160
[upload-certs] Storing the certificates in Secret "kubeadm-certs" in the "kube-system" Namespace
161
[upload-certs] Using certificate key:
162
CERTKEY
163
164
# Then we use these two outputs on the joining node:
165
166
kubeadm join p10-api.k8s.ooo:6443 --token xmff4i.ABC --discovery-token-ca-cert-hash sha256:longhash --control-plane --certificate-key CERTKEY
167
</pre>
168
169
Commands to be used on a control plane node:
170
171
<pre>
172
kubeadm token create --print-join-command
173
kubeadm init phase upload-certs --upload-certs
174
</pre>
175
176
Commands to be used on the joining node:
177
178
<pre>
179
JOINCOMMAND --control-plane --certificate-key CERTKEY
180
</pre>
181 49 Nico Schottelius
182 51 Nico Schottelius
SEE ALSO
183
184
* https://stackoverflow.com/questions/63936268/how-to-generate-kubeadm-token-for-secondary-control-plane-nodes
185
* https://blog.scottlowe.org/2019/08/15/reconstructing-the-join-command-for-kubeadm/
186
187 53 Nico Schottelius
h3. How to fix etcd does not start when rejoining a kubernetes cluster as a control plane
188 52 Nico Schottelius
189
If during the above step etcd does not come up, @kubeadm join@ can hang as follows:
190
191
<pre>
192
[control-plane] Creating static Pod manifest for "kube-apiserver"                                                              
193
[control-plane] Creating static Pod manifest for "kube-controller-manager"                                                     
194
[control-plane] Creating static Pod manifest for "kube-scheduler"                                                              
195
[check-etcd] Checking that the etcd cluster is healthy                                                                         
196
error execution phase check-etcd: etcd cluster is not healthy: failed to dial endpoint https://[2a0a:e5c0:10:1:225:b3ff:fe20:37
197
8a]:2379 with maintenance client: context deadline exceeded                                                                    
198
To see the stack trace of this error execute with --v=5 or higher         
199
</pre>
200
201
Then the problem is likely that the etcd server is still a member of the cluster. We first need to remove it from the etcd cluster and then the join works.
202
203
To fix this we do:
204
205
* Find a working etcd pod
206
* Find the etcd members / member list
207
* Remove the etcd member that we want to re-join the cluster
208
209
210
<pre>
211
# Find the etcd pods
212
kubectl -n kube-system get pods -l component=etcd,tier=control-plane
213
214
# Get the list of etcd servers with the member id 
215
kubectl exec -n kube-system -ti ETCDPODNAME -- etcdctl --endpoints '[::1]:2379' --cacert /etc/kubernetes/pki/etcd/ca.crt --cert  /etc/kubernetes/pki/etcd/server.crt --key /etc/kubernetes/pki/etcd/server.key member list
216
217
# Remove the member
218
kubectl exec -n kube-system -ti ETCDPODNAME -- etcdctl --endpoints '[::1]:2379' --cacert /etc/kubernetes/pki/etcd/ca.crt --cert  /etc/kubernetes/pki/etcd/server.crt --key /etc/kubernetes/pki/etcd/server.key member remove MEMBERID
219
</pre>
220
221
Sample session:
222
223
<pre>
224
[10:48] line:~% kubectl -n kube-system get pods -l component=etcd,tier=control-plane
225
NAME            READY   STATUS    RESTARTS     AGE
226
etcd-server63   1/1     Running   0            3m11s
227
etcd-server65   1/1     Running   3            7d2h
228
etcd-server83   1/1     Running   8 (6d ago)   7d2h
229
[10:48] line:~% kubectl exec -n kube-system -ti etcd-server65 -- etcdctl --endpoints '[::1]:2379' --cacert /etc/kubernetes/pki/etcd/ca.crt --cert  /etc/kubernetes/pki/etcd/server.crt --key /etc/kubernetes/pki/etcd/server.key member list
230
356891cd676df6e4, started, server65, https://[2a0a:e5c0:10:1:225:b3ff:fe20:375c]:2380, https://[2a0a:e5c0:10:1:225:b3ff:fe20:375c]:2379, false
231
371b8a07185dee7e, started, server63, https://[2a0a:e5c0:10:1:225:b3ff:fe20:378a]:2380, https://[2a0a:e5c0:10:1:225:b3ff:fe20:378a]:2379, false
232
5942bc58307f8af9, started, server83, https://[2a0a:e5c0:10:1:3e4a:92ff:fe79:bb98]:2380, https://[2a0a:e5c0:10:1:3e4a:92ff:fe79:bb98]:2379, false
233
234
[10:48] line:~% kubectl exec -n kube-system -ti etcd-server65 -- etcdctl --endpoints '[::1]:2379' --cacert /etc/kubernetes/pki/etcd/ca.crt --cert  /etc/kubernetes/pki/etcd/server.crt --key /etc/kubernetes/pki/etcd/server.key member remove 371b8a07185dee7e
235
Member 371b8a07185dee7e removed from cluster e3c0805f592a8f77
236 1 Nico Schottelius
237
</pre>
238
239
SEE ALSO
240
241
* We found the solution using https://stackoverflow.com/questions/67921552/re-installed-node-cannot-join-kubernetes-cluster
242 56 Nico Schottelius
243 62 Nico Schottelius
h2. Calico CNI
244
245
h3. Calico Installation
246
247
* We install "calico using helm":https://docs.projectcalico.org/getting-started/kubernetes/helm
248
* This has the following advantages:
249
** Easy to upgrade
250
** Does not require os to configure IPv6/dual stack settings as the tigera operator figures out things on its own
251
252
Usually plain calico can be installed directly using:
253
254
<pre>
255
helm repo add projectcalico https://docs.projectcalico.org/charts
256 94 Nico Schottelius
helm install calico projectcalico/tigera-operator --version v3.20.4
257 1 Nico Schottelius
</pre>
258 92 Nico Schottelius
259
* Check the tags on https://github.com/projectcalico/calico/tags for the latest release
260 62 Nico Schottelius
261
h3. Installing calicoctl
262
263
To be able to manage and configure calico, we need to 
264
"install calicoctl (we choose the version as a pod)":https://docs.projectcalico.org/getting-started/clis/calicoctl/install#install-calicoctl-as-a-kubernetes-pod
265
266
<pre>
267
kubectl apply -f https://docs.projectcalico.org/manifests/calicoctl.yaml
268
</pre>
269
270 93 Nico Schottelius
Or version specific:
271
272
<pre>
273
kubectl apply -f https://github.com/projectcalico/calico/blob/v3.20.4/manifests/calicoctl.yaml
274 97 Nico Schottelius
275
# For 3.22
276
kubectl apply -f https://projectcalico.docs.tigera.io/archive/v3.22/manifests/calicoctl.yaml
277 93 Nico Schottelius
</pre>
278
279 70 Nico Schottelius
And making it easier accessible by alias:
280
281
<pre>
282
alias calicoctl="kubectl exec -i -n kube-system calicoctl -- /calicoctl"
283
</pre>
284
285 62 Nico Schottelius
h3. Calico configuration
286
287 63 Nico Schottelius
By default our k8s clusters "BGP peer":https://docs.projectcalico.org/networking/bgp
288
with an upstream router to propagate podcidr and servicecidr.
289 62 Nico Schottelius
290
Default settings in our infrastructure:
291
292
* We use a full-mesh using the @nodeToNodeMeshEnabled: true@ option
293
* We keep the original next hop so that *only* the server with the pod is announcing it (instead of ecmp)
294 1 Nico Schottelius
* We use private ASNs for k8s clusters
295 63 Nico Schottelius
* We do *not* use any overlay
296 62 Nico Schottelius
297
After installing calico and calicoctl the last step of the installation is usually:
298
299 1 Nico Schottelius
<pre>
300 79 Nico Schottelius
calicoctl create -f - < calico-bgp.yaml
301 62 Nico Schottelius
</pre>
302
303
304
A sample BGP configuration:
305
306
<pre>
307
---
308
apiVersion: projectcalico.org/v3
309
kind: BGPConfiguration
310
metadata:
311
  name: default
312
spec:
313
  logSeverityScreen: Info
314
  nodeToNodeMeshEnabled: true
315
  asNumber: 65534
316
  serviceClusterIPs:
317
  - cidr: 2a0a:e5c0:10:3::/108
318
  serviceExternalIPs:
319
  - cidr: 2a0a:e5c0:10:3::/108
320
---
321
apiVersion: projectcalico.org/v3
322
kind: BGPPeer
323
metadata:
324
  name: router1-place10
325
spec:
326
  peerIP: 2a0a:e5c0:10:1::50
327
  asNumber: 213081
328
  keepOriginalNextHop: true
329
</pre>
330
331 64 Nico Schottelius
h2. ArgoCD / ArgoWorkFlow
332 56 Nico Schottelius
333 60 Nico Schottelius
h3. Argocd Installation
334 1 Nico Schottelius
335 60 Nico Schottelius
As there is no configuration management present yet, argocd is installed using
336
337 1 Nico Schottelius
<pre>
338 60 Nico Schottelius
kubectl create namespace argocd
339 86 Nico Schottelius
340 96 Nico Schottelius
# Specific Version
341
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/v2.3.2/manifests/install.yaml
342 86 Nico Schottelius
343
# OR: latest stable
344 60 Nico Schottelius
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
345 1 Nico Schottelius
</pre>
346 56 Nico Schottelius
347 60 Nico Schottelius
* See https://argo-cd.readthedocs.io/en/stable/
348 1 Nico Schottelius
349 60 Nico Schottelius
h3. Get the argocd credentials
350
351
<pre>
352
kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d; echo ""
353
</pre>
354 52 Nico Schottelius
355 87 Nico Schottelius
h3. Accessing argocd
356
357
In regular IPv6 clusters:
358
359
* Navigate to https://argocd-server.argocd.CLUSTERDOMAIN
360
361
In legacy IPv4 clusters
362
363
<pre>
364
kubectl --namespace argocd port-forward svc/argocd-server 8080:80
365
</pre>
366
367 88 Nico Schottelius
* Navigate to https://localhost:8080
368
369 68 Nico Schottelius
h3. Using the argocd webhook to trigger changes
370 67 Nico Schottelius
371
* To trigger changes post json https://argocd.example.com/api/webhook
372
373 72 Nico Schottelius
h3. Deploying an application
374
375
* Applications are deployed via git towards gitea (code.ungleich.ch) and then pulled by argo
376 73 Nico Schottelius
* Always include the *redmine-url* pointing to the (customer) ticket
377
** Also add the support-url if it exists
378 72 Nico Schottelius
379
Application sample
380
381
<pre>
382
apiVersion: argoproj.io/v1alpha1
383
kind: Application
384
metadata:
385
  name: gitea-CUSTOMER
386
  namespace: argocd
387
spec:
388
  destination:
389
    namespace: default
390
    server: 'https://kubernetes.default.svc'
391
  source:
392
    path: apps/prod/gitea
393
    repoURL: 'https://code.ungleich.ch/ungleich-intern/k8s-config.git'
394
    targetRevision: HEAD
395
    helm:
396
      parameters:
397
        - name: storage.data.storageClass
398
          value: rook-ceph-block-hdd
399
        - name: storage.data.size
400
          value: 200Gi
401
        - name: storage.db.storageClass
402
          value: rook-ceph-block-ssd
403
        - name: storage.db.size
404
          value: 10Gi
405
        - name: storage.letsencrypt.storageClass
406
          value: rook-ceph-block-hdd
407
        - name: storage.letsencrypt.size
408
          value: 50Mi
409
        - name: letsencryptStaging
410
          value: 'no'
411
        - name: fqdn
412
          value: 'code.verua.online'
413
  project: default
414
  syncPolicy:
415
    automated:
416
      prune: true
417
      selfHeal: true
418
  info:
419
    - name: 'redmine-url'
420
      value: 'https://redmine.ungleich.ch/issues/ISSUEID'
421
    - name: 'support-url'
422
      value: 'https://support.ungleich.ch/Ticket/Display.html?id=TICKETID'
423
</pre>
424
425 80 Nico Schottelius
h2. Helm related operations and conventions
426 55 Nico Schottelius
427 61 Nico Schottelius
We use helm charts extensively.
428
429
* In production, they are managed via argocd
430
* In development, helm chart can de developed and deployed manually using the helm utility.
431
432 55 Nico Schottelius
h3. Installing a helm chart
433
434
One can use the usual pattern of
435
436
<pre>
437
helm install <releasename> <chartdirectory>
438
</pre>
439
440
However often you want to reinstall/update when testing helm charts. The following pattern is "better", because it allows you to reinstall, if it is already installed:
441
442
<pre>
443
helm upgrade --install <releasename> <chartdirectory>
444 1 Nico Schottelius
</pre>
445 80 Nico Schottelius
446
h3. Naming services and deployments in helm charts [Application labels]
447
448
* We always have {{ .Release.Name }} to identify the current "instance"
449
* Deployments:
450
** use @app: <what it is>@, f.i. @app: nginx@, @app: postgres@, ...
451 81 Nico Schottelius
* See more about standard labels on
452
** https://kubernetes.io/docs/concepts/overview/working-with-objects/common-labels/
453
** https://helm.sh/docs/chart_best_practices/labels/
454 55 Nico Schottelius
455 43 Nico Schottelius
h2. Rook / Ceph Related Operations
456
457 71 Nico Schottelius
h3. Executing ceph commands
458
459
Using the ceph-tools pod as follows:
460
461
<pre>
462
kubectl exec -n rook-ceph -ti $(kubectl -n rook-ceph get pods -l app=rook-ceph-tools -o jsonpath='{.items[*].metadata.name}') -- ceph -s
463
</pre>
464
465 43 Nico Schottelius
h3. Inspecting the logs of a specific server
466
467
<pre>
468
# Get the related pods
469
kubectl -n rook-ceph get pods -l app=rook-ceph-osd-prepare 
470
...
471
472
# Inspect the logs of a specific pod
473
kubectl -n rook-ceph logs -f rook-ceph-osd-prepare-server23--1-444qx
474
475 71 Nico Schottelius
</pre>
476
477
h3. Inspecting the logs of the rook-ceph-operator
478
479
<pre>
480
kubectl -n rook-ceph logs -f -l app=rook-ceph-operator
481 43 Nico Schottelius
</pre>
482
483
h3. Triggering server prepare / adding new osds
484
485
The rook-ceph-operator triggers/watches/creates pods to maintain hosts. To trigger a full "re scan", simply delete that pod:
486
487
<pre>
488
kubectl -n rook-ceph delete pods -l app=rook-ceph-operator
489
</pre>
490
491
This will cause all the @rook-ceph-osd-prepare-..@ jobs to be recreated and thus OSDs to be created, if new disks have been added.
492
493
h3. Removing an OSD
494
495
* See "Ceph OSD Management":https://rook.io/docs/rook/v1.7/ceph-osd-mgmt.html
496 77 Nico Schottelius
* More specifically: https://github.com/rook/rook/blob/release-1.7/cluster/examples/kubernetes/ceph/osd-purge.yaml
497 41 Nico Schottelius
498 76 Nico Schottelius
h2. Harbor
499
500
* We user "Harbor":https://goharbor.io/ for caching and as an image registry. Internal app reference: apps/prod/harbor.
501
* The admin password is in the password store, auto generated per cluster
502
* At the moment harbor only authenticates against the internal ldap tree
503
504
h3. LDAP configuration
505
506
* The url needs to be ldaps://...
507
* uid = uid
508
* rest standard
509 75 Nico Schottelius
510 89 Nico Schottelius
h2. Monitoring / Prometheus
511
512 90 Nico Schottelius
* Via "kube-prometheus":https://github.com/prometheus-operator/kube-prometheus/
513 89 Nico Schottelius
514 91 Nico Schottelius
Access via ...
515
516
* http://prometheus-k8s.monitoring.svc:9090
517
* http://grafana.monitoring.svc:3000
518
* http://alertmanager.monitoring.svc:9093
519
520
521
522 82 Nico Schottelius
h2. Nextcloud
523
524 85 Nico Schottelius
h3. How to get the nextcloud credentials 
525 84 Nico Schottelius
526
* The initial username is set to "nextcloud"
527
* The password is autogenerated and saved in a kubernetes secret
528
529
<pre>
530 85 Nico Schottelius
kubectl get secret RELEASENAME-nextcloud -o jsonpath="{.data.PASSWORD}" | base64 -d; echo "" 
531 84 Nico Schottelius
</pre>
532
533 83 Nico Schottelius
h3. How to fix "Access through untrusted domain"
534
535 82 Nico Schottelius
* Nextcloud stores the initial domain configuration
536 1 Nico Schottelius
* If the FQDN is changed, it will show the error message "Access through untrusted domain"
537 82 Nico Schottelius
* To fix, edit /var/www/html/config/config.php and correct the domain
538 83 Nico Schottelius
* Then delete the pods
539 82 Nico Schottelius
540 1 Nico Schottelius
h2. Infrastructure versions
541 35 Nico Schottelius
542 57 Nico Schottelius
h3. ungleich kubernetes infrastructure v5 (2021-10)
543 1 Nico Schottelius
544 57 Nico Schottelius
Clusters are configured / setup in this order:
545
546
* Bootstrap via kubeadm
547 59 Nico Schottelius
* "Networking via calico + BGP (non ECMP) using helm":https://docs.projectcalico.org/getting-started/kubernetes/helm
548
* "ArgoCD for CD":https://argo-cd.readthedocs.io/en/stable/
549
** "rook for storage via argocd":https://rook.io/
550 58 Nico Schottelius
** haproxy for in IPv6-cluster-IPv4-to-IPv6 proxy via argocd
551
** "kubernetes-secret-generator for in cluster secrets":https://github.com/mittwald/kubernetes-secret-generator
552
** "ungleich-certbot managing certs and nginx":https://hub.docker.com/repository/docker/ungleich/ungleich-certbot
553
554 57 Nico Schottelius
555
h3. ungleich kubernetes infrastructure v4 (2021-09)
556
557 54 Nico Schottelius
* rook is configured via manifests instead of using the rook-ceph-cluster helm chart
558 1 Nico Schottelius
* The rook operator is still being installed via helm
559 35 Nico Schottelius
560 57 Nico Schottelius
h3. ungleich kubernetes infrastructure v3 (2021-07)
561 1 Nico Schottelius
562 10 Nico Schottelius
* rook is now installed via helm via argocd instead of directly via manifests
563 28 Nico Schottelius
564 57 Nico Schottelius
h3. ungleich kubernetes infrastructure v2 (2021-05)
565 28 Nico Schottelius
566
* Replaced fluxv2 from ungleich k8s v1 with argocd
567 1 Nico Schottelius
** argocd can apply helm templates directly without needing to go through Chart releases
568 28 Nico Schottelius
* We are also using argoflow for build flows
569
* Planned to add "kaniko":https://github.com/GoogleContainerTools/kaniko for image building
570
571 57 Nico Schottelius
h3. ungleich kubernetes infrastructure v1 (2021-01)
572 28 Nico Schottelius
573
We are using the following components:
574
575
* "Calico as a CNI":https://www.projectcalico.org/ with BGP, IPv6 only, no encapsulation
576
** Needed for basic networking
577
* "kubernetes-secret-generator":https://github.com/mittwald/kubernetes-secret-generator for creating secrets
578
** Needed so that secrets are not stored in the git repository, but only in the cluster
579
* "ungleich-certbot":https://hub.docker.com/repository/docker/ungleich/ungleich-certbot
580
** Needed to get letsencrypt certificates for services
581
* "rook with ceph rbd + cephfs":https://rook.io/ for storage
582
** rbd for almost everything, *ReadWriteOnce*
583
** cephfs for smaller things, multi access *ReadWriteMany*
584
** Needed for providing persistent storage
585
* "flux v2":https://fluxcd.io/
586
** Needed to manage resources automatically