File tree Expand file tree Collapse file tree 4 files changed +32
-4
lines changed Expand file tree Collapse file tree 4 files changed +32
-4
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ v5.0.2-12] - 2025-05-08
10
+ ### Fixed
11
+ - [ #24 ] Restore of backup components lead to errors after restore
12
+ - This is because the component operator would detect a downgrade, which is not allowed.
13
+ Or worse, an upgrade during the restore operation would cause it to fail.
14
+
15
+ ### Changed
16
+ - [ #24 ] exclude all components of the backup stack in the restore
17
+
9
18
## [ v5.0.2-11] - 2025-05-07
10
19
### Added
11
20
- [ #22 ] Plugin for restore exclude
Original file line number Diff line number Diff line change 1
1
ARTIFACT_ID =k8s-velero
2
- VERSION =5.0.2-11
2
+ VERSION =5.0.2-12
3
3
MAKEFILES_VERSION =9.9.1
4
4
REGISTRY_NAMESPACE? =k8s
5
5
HELM_REPO_ENDPOINT =k3ces.local:30099
Original file line number Diff line number Diff line change @@ -25,4 +25,4 @@ metadata:
25
25
data :
26
26
restore : |
27
27
exclude:
28
- {{ toYaml .Values.excludedFromRestores | nindent 6 }}
28
+ {{- toYaml .Values.excludedFromRestores | nindent 6 }}
Original file line number Diff line number Diff line change @@ -156,9 +156,28 @@ volumesnapshotclass:
156
156
157
157
excludedFromRestores :
158
158
- name : " ces-loadbalancer"
159
- group : " "
160
- version : " v1"
161
159
kind : " Service"
160
+ version : " *"
161
+ - name : " k8s-backup-operator"
162
+ kind : " Component"
163
+ version : " *"
164
+ group : " k8s.cloudogu.com"
165
+ - name : " k8s-backup-operator-crd"
166
+ kind : " Component"
167
+ version : " *"
168
+ group : " k8s.cloudogu.com"
169
+ - name : " k8s-snapshot-controller"
170
+ kind : " Component"
171
+ version : " *"
172
+ group : " k8s.cloudogu.com"
173
+ - name : " k8s-snapshot-controller-crd"
174
+ kind : " Component"
175
+ version : " *"
176
+ group : " k8s.cloudogu.com"
177
+ - name : " k8s-velero"
178
+ kind : " Component"
179
+ version : " *"
180
+ group : " k8s.cloudogu.com"
162
181
163
182
networkPolicies :
164
183
enabled : true
You can’t perform that action at this time.
0 commit comments