File tree 4 files changed +16
-2
lines changed
deploy/helm/secret-operator
4 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,15 @@ All notable changes to this project will be documented in this file.
8
8
9
9
- Made RSA key length configurable for certificates issued by cert-manager ([ #528 ] ).
10
10
11
+ ### Fixed
12
+
13
+ - Helm chart: The secret migration job can be omitted via Helm values ([ #536 ] ).
14
+ - Helm chart: The tag of the tools image used for the secret migration job can
15
+ be changed in the Helm values and defaults now to 1.0.0-stackable24.11.0
16
+ rather than being hard-coded to 1.0.0-stackable24.7.0 ([ #536 ] ).
17
+
11
18
[ #528 ] : https://github.com/stackabletech/secret-operator/pull/528
19
+ [ #536 ] : https://github.com/stackabletech/secret-operator/pull/536
12
20
13
21
## [ 24.11.0] - 2024-11-18
14
22
Original file line number Diff line number Diff line change 1
1
---
2
+ {{ if .Values.secretMigrationJob.enabled -}}
2
3
# Migrates the TLS CA key pair from the hard-coded default namespace to the operator namespace
3
4
# See https://github.com/stackabletech/secret-operator/issues/453
4
5
apiVersion : batch/v1
30
31
{{- toYaml .Values.podSecurityContext | nindent 8 }}
31
32
containers :
32
33
- name : migrate-secret
33
- image : " {{ .Values.secretMigrationJob.image.repository }}:1.0.0-stackable24.7.0 "
34
+ image : " {{ .Values.secretMigrationJob.image.repository }}:{{ .Values.secretMigrationJob.image.tag }} "
34
35
imagePullPolicy : {{ .Values.secretMigrationJob.image.pullPolicy }}
35
36
resources :
36
37
{{ .Values.secretMigrationJob.resources | toYaml | nindent 12 }}
53
54
fi
54
55
fi
55
56
restartPolicy : Never
57
+ {{- end }}
Original file line number Diff line number Diff line change 1
1
---
2
+ {{ if .Values.secretMigrationJob.enabled -}}
2
3
apiVersion : v1
3
4
kind : ServiceAccount
4
5
metadata :
53
54
- watch
54
55
- create
55
56
- patch
56
- - update
57
+ - update
58
+ {{- end }}
Original file line number Diff line number Diff line change 6
6
pullSecrets : []
7
7
8
8
secretMigrationJob :
9
+ enabled : true
9
10
image :
10
11
repository : docker.stackable.tech/stackable/tools
12
+ tag : 1.0.0-stackable24.11.0
11
13
pullPolicy : IfNotPresent
12
14
resources :
13
15
requests :
You can’t perform that action at this time.
0 commit comments