values.yaml 837 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # Version
  2. # description: Cluster version.
  3. # default: 5.26.5
  4. # one of: [5.26.5, 4.4.42]
  5. version: 5.26.5
  6. # Mode
  7. # description: Cluster topology mode.
  8. # default: singlealone
  9. # one of: [singlealone]
  10. mode: singlealone
  11. # CPU
  12. # description: CPU cores.
  13. # default: 2
  14. # minimum: 2
  15. # maximum: 64
  16. cpu: 2
  17. # Memory(Gi)
  18. # description: Memory, the unit is Gi.
  19. # default: 2
  20. # minimum: 2
  21. # maximum: 1000
  22. memory: 4
  23. # Storage(Gi)
  24. # description: Storage size, the unit is Gi.
  25. # default: 20
  26. # minimum: 1
  27. # maximum: 10000
  28. storage: 20
  29. # Replicas
  30. # description: The number of replicas, for standalone mode, the replicas is 1, for replicaset mode, the default replicas is 3.
  31. # default: 1
  32. # minimum: 1
  33. # maximum: 5
  34. replicas: 1
  35. # Storage Class Name
  36. # description: Storage class name of the data volume
  37. storageClassName: ""
  38. extra:
  39. terminationPolicy: Delete