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/hyperlane-agent/templates/configmap.yaml

16 lines
658 B

apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "agent-common.fullname" . }}
labels:
{{- include "agent-common.labels" . | nindent 4 }}
data:
ONELINE_BACKTRACES: "true"
RUST_BACKTRACE: {{ .Values.hyperlane.rustBacktrace }}
HYP_DB: {{ .Values.hyperlane.dbPath }}
HYP_LOG_FORMAT: {{ .Values.hyperlane.tracing.format }}
HYP_LOG_LEVEL: {{ .Values.hyperlane.tracing.level }}
{{- range .Values.hyperlane.chains }}
{{- include "agent-common.config-env-vars" (dict "config" . "key_name_prefix" (printf "chains_%s_" .name) "format" "config_map") | indent 2 }}
{{- end }}
HYP_METRICSPORT: {{ .Values.hyperlane.metrics.port | quote }}