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,14 @@
apiVersion: v2
name: chainlink-ccip
description: Chainlink CCIP (Cross-Chain Interoperability Protocol) Helm chart
type: application
version: 1.0.0
appVersion: "2.0.0"
keywords:
- blockchain
- chainlink
- ccip
- oracle
maintainers:
- name: HC Stack Team

View File

@@ -0,0 +1,77 @@
replicaCount: 1
image:
repository: smartcontract/chainlink
pullPolicy: IfNotPresent
tag: "v2.0.0"
nameOverride: ""
fullnameOverride: ""
serviceAccount:
create: true
annotations: {}
name: ""
service:
type: ClusterIP
port: 6688
apiPort: 6688
ingress:
enabled: false
className: "nginx"
annotations: {}
hosts:
- host: chainlink.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: "chainlink"
username: "chainlink"
password: "chainlink"
ethereum:
rpcUrl: "http://besu:8545"
chainId: 1337
node:
apiPort: 6688
secureCookies: false
sessionTimeout: "24h"
persistence:
enabled: true
storageClass: ""
accessMode: ReadWriteOnce
size: 50Gi
postgres:
enabled: true
image:
repository: postgres
tag: "15"
persistence:
enabled: true
size: 20Gi
resources:
limits:
cpu: 500m
memory: 1Gi
requests:
cpu: 250m
memory: 512Mi