- Introduced Aggregator.sol for Chainlink-compatible oracle functionality, including round-based updates and access control. - Added OracleWithCCIP.sol to extend Aggregator with CCIP cross-chain messaging capabilities. - Created .gitmodules to include OpenZeppelin contracts as a submodule. - Developed a comprehensive deployment guide in NEXT_STEPS_COMPLETE_GUIDE.md for Phase 2 and smart contract deployment. - Implemented Vite configuration for the orchestration portal, supporting both Vue and React frameworks. - Added server-side logic for the Multi-Cloud Orchestration Portal, including API endpoints for environment management and monitoring. - Created scripts for resource import and usage validation across non-US regions. - Added tests for CCIP error handling and integration to ensure robust functionality. - Included various new files and directories for the orchestration portal and deployment scripts.
65 lines
1.1 KiB
YAML
65 lines
1.1 KiB
YAML
# Firefly Helm Chart Values
|
|
|
|
global:
|
|
namespace: firefly
|
|
chainId: 138
|
|
|
|
firefly:
|
|
image:
|
|
repository: hyperledger/firefly
|
|
tag: latest
|
|
pullPolicy: IfNotPresent
|
|
|
|
replicaCount: 1
|
|
|
|
resources:
|
|
requests:
|
|
cpu: "1"
|
|
memory: "2Gi"
|
|
limits:
|
|
cpu: "2"
|
|
memory: "4Gi"
|
|
|
|
config:
|
|
database:
|
|
type: postgres
|
|
host: firefly-postgres
|
|
port: 5432
|
|
database: firefly
|
|
username: firefly
|
|
|
|
blockchain:
|
|
type: ethereum
|
|
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
|
|
|
|
api:
|
|
publicURL: http://firefly-api:5000
|
|
port: 5000
|
|
|
|
ipfs:
|
|
api: http://firefly-ipfs:5001
|
|
gateway: http://firefly-ipfs:8080
|
|
|
|
postgresql:
|
|
enabled: true
|
|
auth:
|
|
username: firefly
|
|
password: firefly
|
|
database: firefly
|
|
persistence:
|
|
size: 50Gi
|
|
storageClass: managed-premium
|
|
|
|
ipfs:
|
|
enabled: true
|
|
image:
|
|
repository: ipfs/kubo
|
|
tag: latest
|
|
persistence:
|
|
size: 100Gi
|
|
storageClass: managed-premium
|
|
|