Initial commit: loc_az_hci (smom-dbis-138 excluded via .gitignore)
Some checks failed
Test / test (push) Has been cancelled

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
defiQUG
2026-02-08 09:04:46 -08:00
commit c39465c2bd
386 changed files with 50649 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
apiVersion: v2
name: blockscout
description: Blockscout blockchain explorer Helm chart
type: application
version: 1.0.0
appVersion: "5.0.0"
keywords:
- blockchain
- explorer
- ethereum
maintainers:
- name: HC Stack Team

View File

@@ -0,0 +1,75 @@
replicaCount: 1
image:
repository: blockscout/blockscout
pullPolicy: IfNotPresent
tag: "5.0.0"
nameOverride: ""
fullnameOverride: ""
serviceAccount:
create: true
annotations: {}
name: ""
service:
type: ClusterIP
port: 4000
ingress:
enabled: false
className: "nginx"
annotations: {}
hosts:
- host: blockscout.example.com
paths:
- path: /
pathType: Prefix
tls: []
resources:
limits:
cpu: 2000m
memory: 4Gi
requests:
cpu: 1000m
memory: 2Gi
config:
database:
type: "postgres"
host: "postgres"
port: 5432
database: "blockscout"
username: "blockscout"
password: "blockscout"
ethereum:
rpcUrl: "http://besu:8545"
wsUrl: "ws://besu:8546"
node:
host: "0.0.0.0"
port: 4000
persistence:
enabled: true
storageClass: ""
accessMode: ReadWriteOnce
size: 20Gi
postgres:
enabled: true
image:
repository: postgres
tag: "15"
persistence:
enabled: true
size: 50Gi
resources:
limits:
cpu: 1000m
memory: 2Gi
requests:
cpu: 500m
memory: 1Gi