Skip to content

Commit c0d7fce

Browse files
committed
Add documentation for 1.111
1 parent 9105559 commit c0d7fce

22 files changed

+2382
-3
lines changed

.github/renovate.json

+19-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
{
22
"assignees": [
3-
"rhizoet"
3+
"lotharbach"
44
],
55
"baseBranches": [
66
"main",
77
"release-v1.106",
88
"release-v1.107",
99
"release-v1.108",
1010
"release-v1.109",
11-
"release-v1.110"
11+
"release-v1.110",
12+
"release-v1.111"
1213
],
1314
"automerge": true,
1415
"configMigration": true,
@@ -50,7 +51,8 @@
5051
"release-v1.107",
5152
"release-v1.108",
5253
"release-v1.109",
53-
"release-v1.110"
54+
"release-v1.110",
55+
"release-v1.111"
5456
],
5557
"enabled": false,
5658
"matchPackageNames": [
@@ -126,6 +128,20 @@
126128
"/gardener-application/",
127129
"/gardenlet/"
128130
]
131+
},
132+
{
133+
"matchBaseBranches": [
134+
"release-v1.111"
135+
],
136+
"allowedVersions": "/^1[.]111[.].*$/",
137+
"enabled": true,
138+
"matchPackageNames": [
139+
"/gardener-controlplane/",
140+
"/gardener-controlplane-application/",
141+
"/gardener-controlplane-runtime/",
142+
"/gardener-application/",
143+
"/gardenlet/"
144+
]
129145
}
130146
],
131147
"customManagers": [

docs/release-notes/v1.111.md

+1,478
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"label": "Architecture / Configuration",
3+
"position": 2,
4+
"link": {
5+
"type": "generated-index",
6+
"description": "Architecture description of the YAKE Gardener distribution"
7+
}
8+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
---
2+
sidebar_position: 1
3+
---
4+
5+
# Architecture
6+
7+
## High Level Overview
8+
![YAKE High Level Overview](high-level-overview.excalidraw.png "YAKE High Level Overview")
9+
10+
Let's start off with the very high level overview in the block diagram above. The most important aspect to note is that all deployments needed for the [Gardener](https://gardener.cloud/) installation are based on helm charts. Since the helm charts developed in the Gardener upstream are distributed over several repositories in the Gardener [Github organization](https://github.com/gardener/external-dns-management), we consolidated the relevant charts in another [repository](https://github.com/gardener-community/gardener-charts) hosted on Github. Consequently, YAKE fetches helm charts from several helm repositories and deploys the components for the Gardener installation into the base cluster.
11+
12+
## Detailed Architecture
13+
14+
A more detailed view of the YAKE architecture is depicted in the block diagram below.
15+
16+
![YAKE architecture](yake-architecture.png "YAKE architecture")
17+
18+
### Main entry points
19+
20+
Conceptually, there are two entry points for Gardener operators to interact with the configuration:
21+
22+
1. The `yake-config` secret in the base cluster
23+
2. The YAKE configuration git repository
24+
25+
The reason for having a dedicated `yake-config` secret lies in the assumption that an operator does not want to store credentials such as dnsprovider credentials in a git repository. Of course, this could also be handled by solutions like [sops](https://github.com/mozilla/sops), but we wanted to let the operator decide where to store the `yake-config` secret in the end.
26+
27+
### General Concepts
28+
29+
As observed from the figure, the YAKE concept divides the installation process into tree separate stages: The `configuration`, `pre-gardener` stage and the `gardener` stage. The configuration stages transfer the content of the `yake-config` secret into separate secrets serving as values for the eventually deployed helm charts. Consequently, the default values given in the upstream values files for the helm charts are extended by the `*-base-values` secrets, so that all components come with a meaningful base configuration. This base configuration is assumed to be homogeneous across many Gardener environments. For the parts which are environment specific, another set of secrets stores another set of values for the helm charts. These secrets are pulled in from the YAKE configuration git repository and managed by a GitOps workflow.
30+
31+
As we assume that the underlying base cluster does not come with any services installed, the `pre-gardener` stage ensures that the required services are deployed to the cluster. In more detail, the following services and resources are deployed:
32+
33+
- [cert-manager](https://cert-manager.io/) for internal certificate handling
34+
- [cert-management](https://github.com/gardener/cert-management) for browser trusted certificate handling
35+
- An `issuer` resource representing a certificate issuer in the base cluster
36+
- [external-dns-management](https://github.com/gardener/external-dns-management) for creation of DNS entries
37+
- A `dnsprovider` resource representing a DNS provider such as azure-dns, aws-route53 etc. in the base cluster
38+
- [ingress-nginx](https://kubernetes.github.io/ingress-nginx/) as ingress controller
39+
40+
In the `gardener` stage, the gardener specific components are deployed to the base cluster and to the [virtual garden](https://github.com/gardener/garden-setup#concept-the-virtual-cluster). The most important aspect to note here is that the [gardenlet](https://gardener.cloud/docs/gardener/concepts/gardenlet/) is deployed to the base cluster, i.e. the base cluster also serves as initial seed cluster for the resulting Gardener environment.
41+
42+
43+
44+
### backups
45+
46+
### webterminal

0 commit comments

Comments
 (0)