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.
176 lines
3.6 KiB
176 lines
3.6 KiB
3 years ago
|
image:
|
||
2 years ago
|
repository: gcr.io/abacus-labs-dev/hyperlane-agent
|
||
3 years ago
|
pullPolicy: Always
|
||
2 years ago
|
tag: 'latest'
|
||
3 years ago
|
|
||
|
imagePullSecrets: []
|
||
2 years ago
|
nameOverride: ''
|
||
|
fullnameOverride: ''
|
||
3 years ago
|
|
||
|
serviceAccount:
|
||
|
create: true
|
||
|
annotations: {}
|
||
2 years ago
|
name: ''
|
||
3 years ago
|
|
||
2 years ago
|
# -- External Secret Store type and name
|
||
3 years ago
|
externalSecrets:
|
||
2 years ago
|
# Available types: SecretStore, ClusterSecretStore
|
||
2 years ago
|
storeType: ClusterSecretStore
|
||
|
storeName:
|
||
3 years ago
|
|
||
3 years ago
|
podAnnotations: {}
|
||
|
podCommonLabels: {}
|
||
|
|
||
|
storage:
|
||
2 years ago
|
storageClass: 'standard'
|
||
3 years ago
|
accessModes: ReadWriteOnce
|
||
3 years ago
|
|
||
2 years ago
|
# -- Hyperlane Overrides
|
||
|
# By Default, Hyperlane Agents load the config baked into the Docker Image
|
||
3 years ago
|
# Pass values here in order to override the values in the config
|
||
|
# Note: For successful operation, one _must_ pass signer keys as
|
||
3 years ago
|
# they are not baked into the image for security reasons.
|
||
2 years ago
|
hyperlane:
|
||
2 years ago
|
# Defines what environment is being run
|
||
2 years ago
|
runEnv: 'default'
|
||
2 years ago
|
context: 'hyperlane'
|
||
3 years ago
|
# Set the DB location to be the volume
|
||
2 years ago
|
dbPath: /usr/share/hyperlane
|
||
3 years ago
|
rustBacktrace: full
|
||
|
tracing:
|
||
|
# Set the log formatting
|
||
|
format: json
|
||
|
# Set the log level
|
||
2 years ago
|
level: debug
|
||
2 years ago
|
metrics:
|
||
3 years ago
|
port: 9090
|
||
3 years ago
|
aws: # true | false
|
||
3 years ago
|
|
||
2 years ago
|
# -- Chain overrides, a sequence
|
||
1 year ago
|
# This should mirror @hyperlane-xyz/sdk AgentChainMetadata
|
||
2 years ago
|
chains:
|
||
1 year ago
|
- name: examplechain
|
||
|
rpcConsensusType: fallback
|
||
2 years ago
|
signer:
|
||
1 year ago
|
type: # aws
|
||
|
index:
|
||
|
from:
|
||
|
chunk:
|
||
|
mode:
|
||
|
mailbox:
|
||
|
multisigIsm:
|
||
|
interchainGasPaymaster:
|
||
|
interchainSecurityModule:
|
||
|
protocol: ethereum
|
||
|
chainId:
|
||
|
domainId:
|
||
|
customRpcUrls:
|
||
|
- example:
|
||
|
url: https://example.com
|
||
|
priority: 1
|
||
|
blocks:
|
||
|
confirmations:
|
||
|
reorgPeriod:
|
||
|
estimatedBlockTime:
|
||
|
isTestnet: false
|
||
3 years ago
|
|
||
2 years ago
|
# Hyperlane Agent Roles
|
||
3 years ago
|
# Individually Switchable via <role>.enabled
|
||
3 years ago
|
validator:
|
||
3 years ago
|
enabled: false
|
||
3 years ago
|
podAnnotations:
|
||
2 years ago
|
prometheus.io/port: '9090'
|
||
|
prometheus.io/scrape: 'true'
|
||
3 years ago
|
podLabels: {}
|
||
|
storage:
|
||
|
size: 10Gi
|
||
|
snapshot:
|
||
|
enabled: false
|
||
2 years ago
|
name: ''
|
||
3 years ago
|
resources:
|
||
|
requests:
|
||
3 years ago
|
cpu: 100m
|
||
2 years ago
|
memory: 256Mi
|
||
3 years ago
|
# -- How long to wait between checking for updates
|
||
1 year ago
|
configs: []
|
||
|
# - interval:
|
||
|
# checkpointSyncers:
|
||
|
# originChainName:
|
||
1 year ago
|
# type: # "hexKey"
|
||
3 years ago
|
|
||
|
relayer:
|
||
3 years ago
|
enabled: false
|
||
2 years ago
|
aws: # true | false
|
||
3 years ago
|
podAnnotations:
|
||
2 years ago
|
prometheus.io/port: '9090'
|
||
|
prometheus.io/scrape: 'true'
|
||
3 years ago
|
podLabels: {}
|
||
|
storage:
|
||
|
size: 10Gi
|
||
|
snapshot:
|
||
|
enabled: false
|
||
2 years ago
|
name: ''
|
||
3 years ago
|
resources:
|
||
|
requests:
|
||
10 months ago
|
cpu: 1000m
|
||
|
memory: 1024Mi
|
||
3 years ago
|
config:
|
||
1 year ago
|
relayChains: ''
|
||
3 years ago
|
multisigCheckpointSyncer:
|
||
|
checkpointSyncers:
|
||
1 year ago
|
# -- Specify whether a default signer key is used for all chains in Values.hyperlane.relayerChains list.
|
||
|
# It affects chains whose signer type is hexKey.
|
||
|
usingDefaultSignerKey: true
|
||
3 years ago
|
|
||
2 years ago
|
relayerChains:
|
||
|
- name: 'alfajores'
|
||
|
signer:
|
||
|
type: # "aws"
|
||
|
|
||
2 years ago
|
scraper:
|
||
|
enabled: false
|
||
|
podAnnotations:
|
||
|
prometheus.io/port: '9090'
|
||
|
prometheus.io/scrape: 'true'
|
||
2 years ago
|
podLabels: {}
|
||
2 years ago
|
storage:
|
||
|
size: 10Mi
|
||
|
snapshot:
|
||
|
enabled: false
|
||
|
name: ''
|
||
|
resources:
|
||
|
requests:
|
||
|
cpu: 250m
|
||
|
memory: 256Mi
|
||
|
config:
|
||
1 year ago
|
chainsToScrape: ''
|
||
2 years ago
|
|
||
3 years ago
|
kathy:
|
||
3 years ago
|
enabled: false
|
||
|
|
||
3 years ago
|
podSecurityContext:
|
||
|
fsGroup: 2000
|
||
3 years ago
|
|
||
2 years ago
|
securityContext:
|
||
|
{}
|
||
3 years ago
|
# capabilities:
|
||
|
# drop:
|
||
|
# - ALL
|
||
|
# readOnlyRootFilesystem: true
|
||
|
# runAsNonRoot: true
|
||
|
# runAsUser: 1000
|
||
|
|
||
3 years ago
|
resources:
|
||
3 years ago
|
# limits:
|
||
|
# cpu: 100m
|
||
|
# memory: 128Mi
|
||
|
# requests:
|
||
3 years ago
|
# cpu: 250m
|
||
|
# memory: 1Gi
|
||
3 years ago
|
|
||
|
nodeSelector: {}
|
||
|
|
||
|
tolerations: []
|
||
|
|
||
|
affinity: {}
|