mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-19 08:15:08 +00:00
* Import Full Stack Asset Transfer Guide at commit fb554befdbbeff9e69159b54fce0b811603f29c7 Signed-off-by: Josh Kneubuhl <jkneubuh@us.ibm.com> * Update the workshop with a new WORKSHOP_PATH under fabric-samples Signed-off-by: Josh Kneubuhl <jkneubuh@us.ibm.com> * Update the workshop with a new WORKSHOP_PATH under fabric-samples Signed-off-by: Josh Kneubuhl <jkneubuh@us.ibm.com> * missed a .git ignored directory on add Signed-off-by: Josh Kneubuhl <jkneubuh@us.ibm.com> * Updates to run the workshop on the Apple M1 Signed-off-by: Josh Kneubuhl <jkneubuh@us.ibm.com> * Workaround for https://github.com/eslint/eslint/issues/15299 in the contract tslinter Signed-off-by: Josh Kneubuhl <jkneubuh@us.ibm.com> * Build an arch-specific CC images on M1 Signed-off-by: Josh Kneubuhl <jkneubuh@us.ibm.com> * empty commit - force a build Signed-off-by: Josh Kneubuhl <jkneubuh@us.ibm.com> * revert an accidental commit that was building the top-level asset-transfer as arm64 Signed-off-by: Josh Kneubuhl <jkneubuh@us.ibm.com> Signed-off-by: Josh Kneubuhl <jkneubuh@us.ibm.com>
80 lines
No EOL
1.7 KiB
YAML
80 lines
No EOL
1.7 KiB
YAML
---
|
|
apiVersion: ibp.com/v1beta1
|
|
kind: IBPConsole
|
|
metadata:
|
|
name: hlf-console
|
|
spec:
|
|
arch:
|
|
- amd64
|
|
license:
|
|
accept: true
|
|
serviceAccountName: default
|
|
email: "${CONSOLE_USERNAME}"
|
|
password: "${CONSOLE_PASSWORD}"
|
|
allowDefaultPassword: true
|
|
# registryURL: ghcr.io/ibm-blockchain
|
|
imagePullSecrets:
|
|
- ghcr-pull-secret
|
|
images:
|
|
consoleInitImage: ${INIT_IMAGE}
|
|
consoleInitTag: ${INIT_IMAGE_LABEL}
|
|
consoleImage: ${CONSOLE_IMAGE}
|
|
consoleTag: ${CONSOLE_IMAGE_LABEL}
|
|
deployerImage: ${DEPLOYER_IMAGE}
|
|
deployerTag: ${DEPLOYER_IMAGE_LABEL}
|
|
configtxlatorImage: ${TOOLS_IMAGE}
|
|
configtxlatorTag: ${TOOLS_IMAGE_LABEL}
|
|
couchdbImage: ${COUCHDB_IMAGE}
|
|
couchdbTag: ${COUCHDB_IMAGE_LABEL}
|
|
networkinfo:
|
|
domain: "${CONSOLE_DOMAIN}"
|
|
storage:
|
|
console:
|
|
class: "${STORAGE_CLASS}"
|
|
size: 5Gi
|
|
usetags: true
|
|
version: 1.0.0
|
|
resources:
|
|
init:
|
|
limits:
|
|
cpu: 100m
|
|
memory: 200M
|
|
requests:
|
|
cpu: 10m
|
|
memory: 20M
|
|
configtxlator:
|
|
limits:
|
|
cpu: 25m
|
|
ephemeral-storage: 1G
|
|
memory: 50Mi
|
|
requests:
|
|
cpu: 25m
|
|
ephemeral-storage: 100M
|
|
memory: 50Mi
|
|
couchdb:
|
|
limits:
|
|
cpu: 500m
|
|
ephemeral-storage: 1Gi
|
|
memory: 1000Mi
|
|
requests:
|
|
cpu: 50m
|
|
ephemeral-storage: 100Mi
|
|
memory: 128Mi
|
|
deployer:
|
|
limits:
|
|
cpu: 100m
|
|
ephemeral-storage: 1G
|
|
memory: 200Mi
|
|
requests:
|
|
cpu: 100m
|
|
ephemeral-storage: 100M
|
|
memory: 128Mi
|
|
console:
|
|
limits:
|
|
cpu: 500m
|
|
ephemeral-storage: 1G
|
|
memory: 1000Mi
|
|
requests:
|
|
cpu: 50m
|
|
ephemeral-storage: 100M
|
|
memory: 128Mi |