- 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.
55 lines
988 B
YAML
55 lines
988 B
YAML
# RPC-specific values
|
|
# Use with: helm install besu-rpc ./helm/besu-network -f values-rpc.yaml
|
|
|
|
validators:
|
|
enabled: false
|
|
|
|
sentries:
|
|
enabled: false
|
|
|
|
rpc:
|
|
enabled: true
|
|
replicas: 3
|
|
nodeSelector:
|
|
pool: rpc
|
|
role: rpc
|
|
resources:
|
|
requests:
|
|
cpu: "8"
|
|
memory: "16Gi"
|
|
limits:
|
|
cpu: "16"
|
|
memory: "32Gi"
|
|
storage:
|
|
storageClass: managed-premium
|
|
size: 500Gi
|
|
config:
|
|
rpcPort: 8545
|
|
wsPort: 8546
|
|
metricsPort: 9545
|
|
syncMode: "SNAP"
|
|
rpcEnabled: true
|
|
rpcHost: "0.0.0.0"
|
|
# CORS and host allowlist - Update after DNS configuration
|
|
# TODO: Restrict to specific domains/hosts in production
|
|
corsOrigins: ["*"]
|
|
hostAllowlist: ["*"]
|
|
rpcMaxLogsRange: 10000
|
|
rpcMaxTraceRange: 10000
|
|
|
|
pdb:
|
|
rpc:
|
|
minAvailable: 2
|
|
|
|
service:
|
|
rpc:
|
|
type: ClusterIP
|
|
|
|
# Gateway configuration
|
|
gateway:
|
|
enabled: true
|
|
type: ClusterIP
|
|
annotations:
|
|
service.beta.kubernetes.io/azure-load-balancer-internal: "false"
|
|
|