Some checks failed
Test / test (push) Has been cancelled
Co-authored-by: Cursor <cursoragent@cursor.com>
80 lines
1.2 KiB
YAML
80 lines
1.2 KiB
YAML
replicaCount: 1
|
|
|
|
image:
|
|
repository: ghcr.io/hyperledger/firefly
|
|
pullPolicy: IfNotPresent
|
|
tag: "v1.3.0"
|
|
|
|
nameOverride: ""
|
|
fullnameOverride: ""
|
|
|
|
serviceAccount:
|
|
create: true
|
|
annotations: {}
|
|
name: ""
|
|
|
|
service:
|
|
type: ClusterIP
|
|
port: 5000
|
|
apiPort: 5000
|
|
metricsPort: 6060
|
|
|
|
ingress:
|
|
enabled: false
|
|
className: "nginx"
|
|
annotations: {}
|
|
hosts:
|
|
- host: firefly.example.com
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls: []
|
|
|
|
resources:
|
|
limits:
|
|
cpu: 1000m
|
|
memory: 2Gi
|
|
requests:
|
|
cpu: 500m
|
|
memory: 1Gi
|
|
|
|
config:
|
|
database:
|
|
type: "postgres" # Options: postgres, sqlite
|
|
host: "postgres"
|
|
port: 5432
|
|
database: "firefly"
|
|
username: "firefly"
|
|
password: "firefly"
|
|
blockchain:
|
|
provider: "besu"
|
|
rpcUrl: "http://besu:8545"
|
|
ipfs:
|
|
apiUrl: "http://ipfs:5001"
|
|
node:
|
|
name: "firefly-node-1"
|
|
orgName: "org1"
|
|
|
|
persistence:
|
|
enabled: true
|
|
storageClass: ""
|
|
accessMode: ReadWriteOnce
|
|
size: 10Gi
|
|
|
|
postgres:
|
|
enabled: true
|
|
image:
|
|
repository: postgres
|
|
tag: "15"
|
|
persistence:
|
|
enabled: true
|
|
size: 20Gi
|
|
resources:
|
|
limits:
|
|
cpu: 500m
|
|
memory: 1Gi
|
|
requests:
|
|
cpu: 250m
|
|
memory: 512Mi
|
|
|