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/checkpointer-external-secre...

37 lines
1.2 KiB

{{- if .Values.abacus.checkpointer.enabled }}
apiVersion: external-secrets.io/v1beta1
kind: ExternalSecret
metadata:
name: {{ include "abacus-agent.fullname" . }}-checkpointer-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" . }}-checkpointer-secret
template:
type: Opaque
metadata:
labels:
{{- include "abacus-agent.labels" . | nindent 10 }}
data:
{{- range .Values.abacus.checkpointer.signers }}
{{- if not (hasKey . "aws") }}
OPT_BASE_SIGNERS_{{ .name | upper }}_TYPE: "hexKey"
OPT_BASE_SIGNERS_{{ .name | upper }}_KEY: {{ printf "'{{ .%s_signer_key | toString }}'" .name }}
{{- end }}
{{- end }}
data:
{{- range .Values.abacus.checkpointer.signers }}
{{- if not (hasKey . "aws") }}
- secretKey: {{ printf "%s_signer_key" .name }}
remoteRef:
key: {{ printf "abacus-%s-key-checkpointer" $.Values.abacus.runEnv }}
property: privateKey
{{- end }}
{{- end }}
{{- end }}