|
@@ -27,6 +27,7 @@ spec:
|
|
|
{{- include "common.labels.selectorLabels" . | nindent 8 }}
|
|
|
annotations: {{ include "common.annotations" . | nindent 8 }}
|
|
|
spec:
|
|
|
+ terminationGracePeriodSeconds: {{ .Values.terminationGracePeriod | default 30 }}
|
|
|
initContainers:
|
|
|
- name: generate-identity
|
|
|
image: "alpine/curl:latest"
|
|
@@ -77,6 +78,10 @@ spec:
|
|
|
- name: udp
|
|
|
containerPort: 28967
|
|
|
protocol: UDP
|
|
|
+ {{ if .Values.zksync }}
|
|
|
+ args:
|
|
|
+ - --operator.wallet-features=zksync
|
|
|
+ {{ end }}
|
|
|
env:
|
|
|
{{ $envList := (default list .Values.environmentVariables) }}
|
|
|
{{ $envList = mustAppend $envList (dict "name" "WALLET" "valueFromSecret" true "secretName" "storj-credentials" "secretKey" "wallet") }}
|