50 lines
908 B
YAML
50 lines
908 B
YAML
|
|
# Cacti Helm Chart Values
|
||
|
|
|
||
|
|
global:
|
||
|
|
namespace: cacti
|
||
|
|
chainId: 138
|
||
|
|
|
||
|
|
cactus:
|
||
|
|
api:
|
||
|
|
image:
|
||
|
|
repository: ghcr.io/hyperledger/cactus-cmd-api-server
|
||
|
|
tag: latest
|
||
|
|
pullPolicy: IfNotPresent
|
||
|
|
|
||
|
|
replicaCount: 1
|
||
|
|
|
||
|
|
resources:
|
||
|
|
requests:
|
||
|
|
cpu: "1"
|
||
|
|
memory: "2Gi"
|
||
|
|
limits:
|
||
|
|
cpu: "2"
|
||
|
|
memory: "4Gi"
|
||
|
|
|
||
|
|
ports:
|
||
|
|
http: 4000
|
||
|
|
ws: 4001
|
||
|
|
|
||
|
|
besuConnector:
|
||
|
|
image:
|
||
|
|
repository: ghcr.io/hyperledger/cactus-plugin-ledger-connector-besu
|
||
|
|
tag: latest
|
||
|
|
pullPolicy: IfNotPresent
|
||
|
|
|
||
|
|
replicaCount: 1
|
||
|
|
|
||
|
|
resources:
|
||
|
|
requests:
|
||
|
|
cpu: "500m"
|
||
|
|
memory: "1Gi"
|
||
|
|
limits:
|
||
|
|
cpu: "1"
|
||
|
|
memory: "2Gi"
|
||
|
|
|
||
|
|
config:
|
||
|
|
rpc:
|
||
|
|
http: http://besu-rpc-service.besu-network.svc.cluster.local:8545
|
||
|
|
ws: ws://besu-rpc-service.besu-network.svc.cluster.local:8546
|
||
|
|
chainId: 138
|
||
|
|
|