The home for Hyperlane core contracts, sdk packages, and other infrastructure
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
hyperlane-monorepo/rust/helm/abacus-agent/templates/validator-external-secret.yaml

50 lines
1.9 KiB

{{- if .Values.abacus.validator.enabled }}
apiVersion: external-secrets.io/v1beta1
kind: ExternalSecret
metadata:
name: {{ include "abacus-agent.fullname" . }}-validator-external-secret
labels:
{{- include "abacus-agent.labels" . | nindent 4 }}
spec:
secretStoreRef:
name: {{ include "abacus-agent.cluster-secret-store.name" . }}
kind: ClusterSecretStore
refreshInterval: "1h"
# The secret that will be created
target:
name: {{ include "abacus-agent.fullname" . }}-validator-secret
template:
type: Opaque
metadata:
labels:
{{- include "abacus-agent.labels" . | nindent 10 }}
data:
{{ $index := 0 }}
{{- range .Values.abacus.validator.configs }}
validator-{{ $index }}.env: |
OPT_VALIDATOR_VALIDATOR_TYPE="hexKey"
OPT_VALIDATOR_VALIDATOR_KEY={{ printf "'{{ .signer_key_%d | toString }}'" $index }}
{{- if eq .checkpointSyncer.type "s3" }}
AWS_ACCESS_KEY_ID={{ printf "'{{ .aws_access_key_id_%d | toString }}'" $index }}
AWS_SECRET_ACCESS_KEY={{ printf "'{{ .aws_secret_access_key_%d | toString }}'" $index }}
{{- end }}
{{ $index = add1 $index }}
{{- end }}
data:
{{ $index := 0 }}
{{- range .Values.abacus.validator.configs }}
- secretKey: signer_key_{{ $index }}
remoteRef:
key: {{ printf "abacus-%s-key-%s-validator-%d" $.Values.abacus.runEnv $.Values.abacus.outboxChain.name $index }}
property: privateKey
{{- if eq .checkpointSyncer.type "s3" }}
- secretKey: aws_access_key_id_{{ $index }}
remoteRef:
key: {{ printf "abacus-%s-%s-validator-%d-aws-access-key-id" $.Values.abacus.runEnv $.Values.abacus.outboxChain.name $index }}
- secretKey: aws_secret_access_key_{{ $index }}
remoteRef:
key: {{ printf "abacus-%s-%s-validator-%d-aws-secret-access-key" $.Values.abacus.runEnv $.Values.abacus.outboxChain.name $index }}
{{- end }}
{{ $index = add1 $index }}
{{- end }}
{{- end }}