This repository was archived by the owner on May 8, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +40
-2
lines changed Expand file tree Collapse file tree 4 files changed +40
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ apiVersion: v2
3
3
description : Helm chart for Orchestrate
4
4
name : orchestrate
5
5
type : application
6
- version : 1.0.7
6
+ version : 1.0.8
7
7
home : https://docs.orchestrate.consensys.net/
8
8
icon : https://docs.orchestrate.consensys.net/en/stable/images/logo.svg
9
9
maintainers :
Original file line number Diff line number Diff line change
1
+ {{- if .Values.api.enabled }}
2
+ ---
3
+ apiVersion : v1
4
+ kind : ConfigMap
5
+ metadata :
6
+ name : {{ include "orchestrate.api.fullname" . }}-hook-envmap
7
+ labels :
8
+ {{- include "orchestrate.api.labels" . | nindent 4 }}
9
+ annotations :
10
+ {{- include "orchestrate.annotations" . | nindent 4 }}
11
+ data :
12
+ {{- range $key,$value := .Values.global.environment }}
13
+ {{ $key }}: {{ $value | quote }}
14
+ {{- end }}
15
+ {{- range $key,$value := .Values.api.environment }}
16
+ {{ $key }}: {{ $value | quote }}
17
+ {{- end }}
18
+ {{- end }}
Original file line number Diff line number Diff line change
1
+ {{- if and (.Values.api.enabled) (or .Values.api.environmentSecrets .Values.global.environmentSecrets) }}
2
+ ---
3
+ apiVersion : v1
4
+ kind : Secret
5
+ metadata :
6
+ name : {{ template "orchestrate.api.fullname" . }}-hook-secretmap
7
+ labels :
8
+ {{- include "orchestrate.api.labels" . | nindent 4 }}
9
+ annotations :
10
+ {{- include "orchestrate.annotations" . | nindent 4 }}
11
+ type : Opaque
12
+ data :
13
+ {{- range $key,$value := .Values.global.environmentSecrets }}
14
+ {{ $key }}: {{ $value | b64enc | quote }}
15
+ {{- end }}
16
+ {{- range $key,$value := .Values.api.environmentSecrets }}
17
+ {{ $key }}: {{ $value | b64enc | quote }}
18
+ {{- end }}
19
+ {{- end }}
20
+
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ metadata:
43
43
{{- include "orchestrate.api.labels" . | nindent 4 }}
44
44
annotations :
45
45
{{- include "orchestrate.annotations" . | nindent 4 }}
46
- " helm.sh/hook " : pre-install
46
+ " helm.sh/hook " : pre-install, pre-update
47
47
" helm.sh/hook-weight " : " 10"
48
48
" helm.sh/hook-delete-policy " : hook-succeeded
49
49
spec :
You can’t perform that action at this time.
0 commit comments