Skip to content

Commit c603508

Browse files
Sgu74cesmarvin
authored andcommitted
Merge branch 'release/v2.1.0'
2 parents 0eb6c4b + 204dd96 commit c603508

File tree

6 files changed

+27
-16
lines changed

6 files changed

+27
-16
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [v2.1.0] - 2026-01-05
10+
### Changed
11+
- [#37] Update dogu and blueprint operator to support configurable storageclasses for dogus on installation.
12+
- Update the backup-operator to 2.1.0 to fix deletion and synchronization of backups.
13+
914
## [v2.0.2] - 2025-12-03
1015
### Changed
1116
- Update minio to reduce CVEs with a kubectl image change.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
ARTIFACT_ID=ecosystem-core
33
ARTIFACT_ID_DEFAULT_CONFIG=${ARTIFACT_ID}-default-config
44

5-
VERSION=2.0.2
5+
VERSION=2.1.0
66
GOTAG?=1.25.1
77

88
ADDITIONAL_CLEAN=clean_charts

docs/operations/configuration_de.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,17 @@ Die Konfiguration erfolgt über die Datei `values.yaml`.
1616

1717
Der **Component Operator** verwaltet die Installation und das Lifecycle-Management der Komponenten.
1818

19+
Anmerkung: Es ist selten nötig, den `image`-Bereich zu ändern, da das Component-Operator-Image durch die `Chart.yaml` von ecosystem-core festgelegt wird.
20+
Der Bereich kann normalerweise auskommentiert bleiben.
21+
1922
### Beispiel
2023
```yaml
2124
k8s-component-operator:
2225
manager:
23-
image:
24-
registry: registry.cloudogu.com
25-
repository: k8s-component-operator
26-
tag: 1.0.0
26+
# image:
27+
# registry: docker.io
28+
# repository: cloudogu/k8s-component-operator
29+
# tag: 1.12.0
2730
env:
2831
logLevel: info
2932
resourceLimits:

docs/operations/configuration_en.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,17 @@ Configuration is done via the `values.yaml` file.
1717

1818
The **Component Operator** manages the installation and lifecycle management of the components.
1919

20+
Note: Configuring the `image` section is rarely needed as the component-operator image is defined in the `Chart.yaml` of ecosystem-core.
21+
You can leave the `image` section out to use the defaults.
22+
2023
### Example
2124
```yaml
2225
k8s-component-operator:
2326
manager:
24-
image:
25-
registry: registry.cloudogu.com
26-
repository: k8s-component-operator
27-
tag: 1.0.0
27+
# image:
28+
# registry: docker.io
29+
# repository: cloudogu/k8s-component-operator
30+
# tag: 1.12.0
2831
env:
2932
logLevel: info
3033
resourceLimits:

k8s/helm/component-patch-tpl.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v1
22
values:
33
images:
44
componentOperator: cloudogu/k8s-component-operator:1.12.0
5-
defaultConfig: cloudogu/ecosystem-core-default-config:2.0.2
5+
defaultConfig: cloudogu/ecosystem-core-default-config:2.1.0
66
kubectl: docker.io/alpine/kubectl:1.34.0
77
patches:
88
values.yaml:

k8s/helm/values.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ k8s-component-operator:
2020
enabled: true
2121
components:
2222
k8s-dogu-operator-crd:
23-
version: 2.10.0
23+
version: 2.11.0
2424
k8s-dogu-operator:
25-
version: 3.16.0
25+
version: 3.18.0
2626
k8s-service-discovery:
2727
version: 4.0.0
2828
k8s-blueprint-operator-crd:
29-
version: 3.1.0
29+
version: 3.2.0
3030
k8s-blueprint-operator:
31-
version: 3.0.2
31+
version: 3.1.0
3232
k8s-ces-gateway:
3333
version: 2.0.1
3434
k8s-ces-assets:
@@ -48,7 +48,7 @@ backup:
4848
k8s-backup-operator-crd:
4949
version: 1.7.0
5050
k8s-backup-operator:
51-
version: 2.0.0
51+
version: 2.1.0
5252
k8s-velero:
5353
version: 10.0.1-5
5454
monitoring:
@@ -78,7 +78,7 @@ defaultConfig:
7878
image:
7979
registry: docker.io
8080
repository: cloudogu/ecosystem-core-default-config
81-
tag: 2.0.2
81+
tag: 2.1.0
8282
imagePullPolicy: IfNotPresent
8383
env:
8484
logLevel: info

0 commit comments

Comments
 (0)