values.yaml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. # Default values for cello-master.
  2. # This is a YAML-formatted file.
  3. # Declare variables to be passed into your templates.
  4. replicaCount: 1
  5. operatorDashboardImage:
  6. repository: hyperledger/cello-operator-dashboard
  7. tag: latest
  8. userDashboardImage:
  9. repository: hyperledger/cello-user-dashboard
  10. tag: latest
  11. engineImage:
  12. repository: hyperledger/cello-engine
  13. tag: latest
  14. watchDogImage:
  15. repository: hyperledger/cello-watchdog
  16. tag: latest
  17. mongoImage:
  18. repository: mongo
  19. tag: 3.4.10
  20. nfsImage:
  21. repository: quay.io/kubernetes_incubator/nfs-provisioner
  22. tag: v1.0.9
  23. image:
  24. pullPolicy: IfNotPresent
  25. nfs:
  26. storePath: "/opt/cello/config"
  27. size: 10Gi
  28. nfsPort: 2049
  29. mountdPort: 20048
  30. rpcbindPort: 51413
  31. # nfsNodePort:
  32. # mountdNodePort:
  33. # rpcbindNodePort:
  34. mountdPort: 20048
  35. rpcbindPort: 51413
  36. storageClass: "-"
  37. service:
  38. type: NodePort
  39. ingress:
  40. enabled: false
  41. # Used to create an Ingress record.
  42. hosts:
  43. - chart-example.local
  44. annotations:
  45. # kubernetes.io/ingress.class: nginx
  46. # kubernetes.io/tls-acme: "true"
  47. tls:
  48. # Secrets must be manually created in the namespace.
  49. # - secretName: chart-example-tls
  50. # hosts:
  51. # - chart-example.local
  52. mongo:
  53. storeEnabled: false
  54. size: 10Gi
  55. storePath: "/opt/cello/mongo"
  56. storageClass: "-"
  57. operator:
  58. debug: "False"
  59. userDashboard:
  60. enableEmailActive: "False"
  61. webRoot: "/"
  62. storePath: "/opt/cello/baas"
  63. storageClass: "-"
  64. size: 10Gi
  65. mongo:
  66. host: 127.0.0.1
  67. port: 27017
  68. database: user_dashboard
  69. autoStorageClass: true
  70. minio:
  71. persistence:
  72. storePath: "/opt/cello/minio"
  73. storageClass: "cello-minio"
  74. resources: {}
  75. # We usually recommend not to specify default resources and to leave this as a conscious
  76. # choice for the user. This also increases chances charts run on environments with little
  77. # resources, such as Minikube. If you do want to specify resources, uncomment the following
  78. # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
  79. # limits:
  80. # cpu: 100m
  81. # memory: 128Mi
  82. # requests:
  83. # cpu: 100m
  84. # memory: 128Mi