Commit 69818a0 1 parent 2feaa41 commit 69818a0 Copy full SHA for 69818a0
File tree 3 files changed +12
-4
lines changed
3 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
2
name : keep
3
- version : 0.1.64
3
+ version : 0.1.65
4
4
description : Keep Helm Chart
5
5
type : application
6
6
icon : https://platform.keephq.dev/_next/image?url=%2Fkeep.png&w=48&q=75
7
- appVersion : 0.36.2
7
+ appVersion : 0.37.5
8
8
deprecated : false
9
9
annotations :
10
10
app : keep
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ metadata:
4
4
name : delete-keep-secrets
5
5
annotations :
6
6
" helm.sh/hook " : pre-delete
7
- " helm.sh/hook-delete-policy " : hook-succeeded,hook-failed
7
+ " helm.sh/hook-delete-policy " : " hook-succeeded,hook-failed"
8
8
labels :
9
9
{{- include "keep.labels" . | nindent 4 }}
10
10
app.kubernetes.io/component : secrets
14
14
serviceAccountName : {{ include "keep.serviceAccountName" . }}
15
15
containers :
16
16
- name : delete-secrets-container
17
- image : bitnami/kubectl
17
+ image : {{ .Values.deleteSecretJob.image.repository | default "bitnami/kubectl" }}:{{ .Values.deleteSecretJob.image.tag | default "latest" }}
18
+ pullPolicy : {{ .Values.deleteSecretJob.image.pullPolicy | default "Always" }}
18
19
command :
19
20
- /bin/sh
20
21
- -c
Original file line number Diff line number Diff line change @@ -356,3 +356,10 @@ database:
356
356
port : 3306
357
357
extraVolumeMounts : []
358
358
extraVolumes : []
359
+
360
+ # Add this new section before or after database section
361
+ deleteSecretJob :
362
+ image :
363
+ repository : bitnami/kubectl
364
+ tag : latest
365
+ pullPolicy : Always
You can’t perform that action at this time.
0 commit comments