File tree Expand file tree Collapse file tree 4 files changed +29
-7
lines changed Expand file tree Collapse file tree 4 files changed +29
-7
lines changed Original file line number Diff line number Diff line change 33{{ $defaultOrchestrateChart := "consensys/orchestrate" }}
44{{ $defaultQkmChart := "consensys/quorumkeymanager" }}
55{{ $defaultOrchestrateChartVersion := "2.0.0" }}
6- {{ $defaultQkmChartVersion := "1.1.5" }}
7- {{ $defaultNamespace := "orchestrate" }}
8- {{/* $tag := "v21.10.1-alpha.3" */}}
6+ {{ $defaultQkmChartVersion := "1.1.7" }}
97{{ $tag := "v21.12.1" }}
108{{ $qkmTag := "v21.12.1" }}
119
Original file line number Diff line number Diff line change @@ -25,3 +25,14 @@ zookeeper:
2525 memory : " 512Mi"
2626 limits :
2727 memory : " 2Gi"
28+
29+ qkm :
30+ enabled : true
31+ vault :
32+ tls :
33+ enabled : false
34+ agents :
35+ - name : orchestrate
36+ vaultAddress : http://vault.qa:8200
37+ config :
38+ role : qa
Original file line number Diff line number Diff line change 6060 service:
6161 port:
6262 number: 80
63+ tls:
64+ - hosts:
65+ - {{ .Values.orchestrate.namespace }}.orchestrate.{{ .Values.domainName }}
6366 {{- end }}
6467 environment:
6568 {{- range $key, $value := $kafkaEnv }}
Original file line number Diff line number Diff line change 11
2+ {{ $qkmVaultTls := .Values | get "qkm.vault.tls.enabled" false }}
3+
24image:
35 repository: {{ .Values.qkm.image.repository }}
46 pullPolicy: IfNotPresent
@@ -53,16 +55,24 @@ auth:
5355
5456vault:
5557 tls:
56- enabled: false
58+ enabled: {{ $qkmVaultTls }}
5759 agents:
58- - name: "orchestrate"
59- vaultAddress: "http://vault.orchestrate.svc.cluster.local:8200"
60+ {{- range .Values.qkm.vault.agents }}
61+ - name: {{ .name }}
62+ vaultAddress: {{ .vaultAddress }}
6063 image:
6164 repository: vault
6265 tag: 1.8.2
6366 config:
6467 wrapTTL: ""
65- role: "orchestrate"
68+ role: {{ .config.role }}
69+ {{- if $qkmVaultTls }}
70+ ca: {{ .ca }}
71+ key: {{ .key }}
72+ crt: {{ .crt }}
73+ {{- end }}
74+ mountPath: /vault/token
75+ {{- end }}
6676
6777serviceAccount:
6878 create: false
You can’t perform that action at this time.
0 commit comments