Commit 34c2691b authored by Yuliya Sharafitdinova's avatar Yuliya Sharafitdinova

temporary values for main stand

parent 60d2851e
This diff is collapsed.
...@@ -63,11 +63,14 @@ blockscout: ...@@ -63,11 +63,14 @@ blockscout:
# Blockscout environment variables # Blockscout environment variables
environment: environment:
ETHEREUM_JSONRPC_TRACE_URL: ETHEREUM_JSONRPC_TRACE_URL:
_default: http://geth-svc.eth-goerli.svc.cluster.local:8545 _default: http://geth-svc:8545
# _default: http://geth-svc.goerli.svc.cluster.local:8545
ETHEREUM_JSONRPC_HTTP_URL: ETHEREUM_JSONRPC_HTTP_URL:
_default: http://geth-svc.eth-goerli.svc.cluster.local:8545 _default: http://geth-svc:8545
# _default: http://geth-svc.goerli.svc.cluster.local:8545
ETHEREUM_JSONRPC_WS_URL: ETHEREUM_JSONRPC_WS_URL:
_default: ws://geth-svc.eth-goerli.svc.cluster.local:8546 _default: ws://geth-svc:8546
# _default: ws://geth-svc.goerli.svc.cluster.local:8546
BLOCKSCOUT_VERSION: BLOCKSCOUT_VERSION:
_default: v4.1.8-beta _default: v4.1.8-beta
ECTO_USE_SSL: ECTO_USE_SSL:
...@@ -168,33 +171,40 @@ postgres: ...@@ -168,33 +171,40 @@ postgres:
_default: 'trust' _default: 'trust'
# enable geth deploy # enable geth deploy
geth: geth:
enabled: false enabled: true
image: image:
_default: ethereum/client-go:stable _default: ethereum/client-go:stable
replicas: replicas:
app: 1 app: 1
portHttp: 8545 ports:
portWs: 8546 http:
portAuth: 8551 number: 8545
command: '["geth"]' protocol: TCP
args: '["--goerli", "--datadir=/.ethereum", "--gcmode=archive", "--http", "--http.vhosts=*", "--http.addr=0.0.0.0", "--http.port=8545", "--http.api=eth,net,web3,debug,txpool", "--ws", "--ws.origins=*", "--ws.addr=0.0.0.0", "--ws.port=8546", "--ws.api=eth,net,web3,debug,txpool", "--allow-insecure-unlock", "--rpc.allow-unprotected-txs", "--http.corsdomain=*", "--vmdebug", "--rpc.txfeecap=0"]' ws:
number: 8546
protocol: TCP
auth:
number: 8551
protocol: TCP
command:
- /bin/sh
- -c
- |-
/root/init.sh --fakepow --dev --dev.period=1 --datadir=/root/.ethereum/devnet --keystore=/root/.ethereum/devnet/keystore --password=/root/password.txt --unlock=0 --unlock=1 --mine --miner.threads=1 --miner.etherbase=0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266 --ipcpath=/root/geth.ipc --http --http.vhosts=* --http.addr=0.0.0.0 --http.port=8545 --http.api=eth,net,web3,debug,txpool --ws --ws.origins=* --ws.addr=0.0.0.0 --ws.port=8546 --ws.api=eth,net,web3,debug,txpool --graphql --graphql.corsdomain=* --allow-insecure-unlock --rpc.allow-unprotected-txs --http.corsdomain=* --vmdebug --networkid=1337 --rpc.txfeecap=0
environment: {} environment: {}
persistence: persistence:
enabled: true enabled: false
mountPath: /geth
storageClass: gp3-new
storage: 1000Gi
resources: resources:
limits: limits:
memory: memory:
_default: "8Gi" _default: "2Gi"
cpu: cpu:
_default: "2" _default: "0.2"
requests: requests:
memory: memory:
_default: "8Gi" _default: "2Gi"
cpu: cpu:
_default: "2" _default: "0.2"
# node label # node label
nodeSelector: nodeSelector:
enabled: true enabled: true
...@@ -206,68 +216,120 @@ geth: ...@@ -206,68 +216,120 @@ geth:
ingress: ingress:
enabled: true enabled: true
host: host:
_default: node.test.blockscout.aws-k8s.blockscout.com _default: node.test.aws-k8s.blockscout.com
# enable https # enable https
tls: tls:
enabled: false enabled: false
jwt: jwt:
enabled: true
mountPath: /geth/geth/jwtsecret
files:
enabled: false enabled: false
# enable client deploy (Prysm, lighthouse, nimbus, etc.) files:
client:
enabled: true enabled: true
image: # geth:
_default: gcr.io/prysmaticlabs/prysm/beacon-chain:stable # enabled: true
# command: '["sh","./root/init.sh"]' # image:
args: '["--goerli", "--datadir=/data", "--jwt-secret=/geth/geth/jwtsecret", "--rpc-host=0.0.0.0", "--grpc-gateway-host=0.0.0.0", "--monitoring-host=0.0.0.0", "--execution-endpoint=http://geth-svc:8545", "--checkpoint-sync-url=https://goerli.checkpoint-sync.ethdevops.io", "--genesis-beacon-api-url=https://goerli.checkpoint-sync.ethdevops.io"]' # _default: ethereum/client-go:stable
ports: # replicas:
port-tcp: # app: 1
number: 13000 # portHttp: 8545
protocol: TCP # portWs: 8546
port-udp: # portAuth: 8551
number: 12000 # command:
protocol: UDP # - /bin/sh
port-rpc: # - -c
number: 4000 # - |-
protocol: TCP # /root/init.sh --fakepow --dev --dev.period=1 --datadir=/root/.ethereum/devnet --keystore=/root/.ethereum/devnet/keystore --password=/root/password.txt --unlock=0 --unlock=1 --mine --miner.threads=1 --miner.etherbase=0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266 --ipcpath=/root/geth.ipc --http --http.vhosts=* --http.addr=0.0.0.0 --http.port=8545 --http.api=eth,net,web3,debug,txpool --ws --ws.origins=* --ws.addr=0.0.0.0 --ws.port=8546 --ws.api=eth,net,web3,debug,txpool --graphql --graphql.corsdomain=* --allow-insecure-unlock --rpc.allow-unprotected-txs --http.corsdomain=* --vmdebug --networkid=1337 --rpc.txfeecap=0
port-rpc-gtw: # # command: '["geth"]'
number: 3500 # # args: '["--goerli", "--datadir=/.ethereum", "--gcmode=archive", "--http", "--http.vhosts=*", "--http.addr=0.0.0.0", "--http.port=8545", "--http.api=eth,net,web3,debug,txpool", "--ws", "--ws.origins=*", "--ws.addr=0.0.0.0", "--ws.port=8546", "--ws.api=eth,net,web3,debug,txpool", "--allow-insecure-unlock", "--rpc.allow-unprotected-txs", "--http.corsdomain=*", "--vmdebug", "--rpc.txfeecap=0"]'
protocol: TCP # environment: {}
port-monitoring: # persistence:
number: 8080 # enabled: true
protocol: TCP # mountPath: /geth
persistence: # storageClass: gp3-new
enabled: false # storage: 1000Gi
mountPath: path # resources:
storageClass: gp3-new # limits:
storage: 100Gi # memory:
files: # _default: "8Gi"
enabled: false # cpu:
list: {} # _default: "2"
service: # requests:
# ClusterIP, NodePort or LoadBalancer # memory:
type: ClusterIP # _default: "8Gi"
# enable ingress # cpu:
ingress: # _default: "2"
enabled: false # # node label
host: # nodeSelector:
# enable https # enabled: true
tls: # app: blockscout
enabled: false # service:
environment: {} # # ClusterIP, NodePort or LoadBalancer
resources: # type: ClusterIP
limits: # # enable ingress
memory: # ingress:
_default: "6Gi" # enabled: true
cpu: # host:
_default: "3" # _default: node.test.blockscout.aws-k8s.blockscout.com
requests: # # enable https
memory: # tls:
_default: "6Gi" # enabled: false
cpu: # jwt:
_default: "3" # enabled: true
# mountPath: /geth/geth/jwtsecret
# files:
# enabled: false
# # enable client deploy (Prysm, lighthouse, nimbus, etc.)
# client:
# enabled: true
# image:
# _default: gcr.io/prysmaticlabs/prysm/beacon-chain:stable
# # command: '["sh","./root/init.sh"]'
# args: '["--goerli", "--datadir=/data", "--jwt-secret=/geth/geth/jwtsecret", "--rpc-host=0.0.0.0", "--grpc-gateway-host=0.0.0.0", "--monitoring-host=0.0.0.0", "--execution-endpoint=http://geth-svc:8545", "--checkpoint-sync-url=https://goerli.checkpoint-sync.ethdevops.io", "--genesis-beacon-api-url=https://goerli.checkpoint-sync.ethdevops.io"]'
# ports:
# port-tcp:
# number: 13000
# protocol: TCP
# port-udp:
# number: 12000
# protocol: UDP
# port-rpc:
# number: 4000
# protocol: TCP
# port-rpc-gtw:
# number: 3500
# protocol: TCP
# port-monitoring:
# number: 8080
# protocol: TCP
# persistence:
# enabled: false
# mountPath: path
# storageClass: gp3-new
# storage: 100Gi
# files:
# enabled: false
# list: {}
# service:
# # ClusterIP, NodePort or LoadBalancer
# type: ClusterIP
# # enable ingress
# ingress:
# enabled: false
# host:
# # enable https
# tls:
# enabled: false
# environment: {}
# resources:
# limits:
# memory:
# _default: "6Gi"
# cpu:
# _default: "3"
# requests:
# memory:
# _default: "6Gi"
# cpu:
# _default: "3"
# enable Smart-contract-verifier deploy # enable Smart-contract-verifier deploy
scVerifier: scVerifier:
enabled: true enabled: true
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment