Initial commit: loc_az_hci (smom-dbis-138 excluded via .gitignore)
Some checks failed
Test / test (push) Has been cancelled
Some checks failed
Test / test (push) Has been cancelled
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
13
gitops/apps/firefly/Chart.yaml
Normal file
13
gitops/apps/firefly/Chart.yaml
Normal file
@@ -0,0 +1,13 @@
|
||||
apiVersion: v2
|
||||
name: firefly
|
||||
description: Hyperledger Firefly blockchain middleware Helm chart
|
||||
type: application
|
||||
version: 1.0.0
|
||||
appVersion: "1.3.0"
|
||||
keywords:
|
||||
- blockchain
|
||||
- firefly
|
||||
- middleware
|
||||
maintainers:
|
||||
- name: HC Stack Team
|
||||
|
||||
79
gitops/apps/firefly/values.yaml
Normal file
79
gitops/apps/firefly/values.yaml
Normal file
@@ -0,0 +1,79 @@
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user