values.yaml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. # -- (docs/README.md)
  2. global:
  3. labels: {}
  4. annotations: {}
  5. minNodePort: 9000
  6. # -- (docs/README.md)
  7. fallbackDefaults:
  8. probeType: http
  9. serviceProtocol: tcp
  10. serviceType: ClusterIP
  11. persistenceType: emptyDir # TODO: Maybe something else?
  12. probeTimeouts:
  13. liveness:
  14. initialDelaySeconds: 10
  15. periodSeconds: 10
  16. timeoutSeconds: 5
  17. failureThreshold: 5
  18. successThreshold: 1
  19. readiness:
  20. initialDelaySeconds: 10
  21. periodSeconds: 10
  22. timeoutSeconds: 5
  23. failureThreshold: 5
  24. successThreshold: 2
  25. startup:
  26. initialDelaySeconds: 10
  27. periodSeconds: 5
  28. timeoutSeconds: 2
  29. failureThreshold: 60
  30. successThreshold: 1
  31. # -- (docs/README.md)
  32. image:
  33. repository: ""
  34. tag: ""
  35. pullPolicy: IfNotPresent
  36. # -- (docs/README.md)
  37. securityContext:
  38. container:
  39. runAsNonRoot: true
  40. runAsUser: 568
  41. runAsGroup: 568
  42. readOnlyRootFilesystem: true
  43. allowPrivilegeEscalation: false
  44. privileged: false
  45. seccompProfile:
  46. type: RuntimeDefault
  47. capabilities:
  48. add: []
  49. drop:
  50. - ALL
  51. pod:
  52. fsGroup: 568
  53. fsGroupChangePolicy: OnRootMismatch
  54. supplementalGroups: []
  55. sysctls: []
  56. # -- (docs/README.md)
  57. containerOptions:
  58. PUID: 568
  59. UMASK: "002"
  60. NVIDIA_CAPS:
  61. - all
  62. resources:
  63. limits:
  64. cpu: 4000m
  65. memory: 8Gi
  66. requests:
  67. cpu: 10m
  68. memory: 50Mi
  69. # -- (docs/README.md)
  70. podOptions:
  71. enableServiceLinks: false
  72. hostNetwork: false
  73. restartPolicy: Always
  74. dnsPolicy: ClusterFirst
  75. dnsConfig:
  76. options:
  77. - name: ndots
  78. value: "2"
  79. hostAliases: []
  80. tolerations: []
  81. runtimeClassName: ""
  82. automountServiceAccountToken: false
  83. terminationGracePeriodSeconds: 120
  84. # -- (docs/notes.md)
  85. notes:
  86. header: |
  87. # Welcome to SCALE
  88. Thank you for installing <{{ .Chart.Name }}>.
  89. # custom: "{{ toYaml $.Values }}"
  90. custom: ""
  91. footer: |
  92. # Documentation
  93. Documentation for this chart can be found at ...
  94. # Bug reports
  95. If you find a bug in this chart, please file an issue at ...
  96. # -- Timezone used everywhere applicable
  97. TZ: UTC
  98. # -- (docs/workload/README.md)
  99. workload: {}
  100. # -- (docs/service/README.md)
  101. service: {}
  102. # -- (docs/persistence/README.md)
  103. persistence: {}
  104. # shared:
  105. # enabled: false # TODO: Enable by default?
  106. # type: emptyDir
  107. # mountPath: /shared
  108. # targetSelectAll: true
  109. # varlogs:
  110. # enabled: false # TODO: Enable by default?
  111. # type: emptyDir
  112. # mountPath: /var/logs
  113. # targetSelectAll: true
  114. # tmp:
  115. # enabled: false # TODO: Enable by default?
  116. # type: emptyDir
  117. # mountPath: /tmp
  118. # targetSelectAll: true
  119. # devshm:
  120. # enabled: false # TODO: Enable by default?
  121. # type: emptyDir
  122. # mountPath: /dev/shm
  123. # targetSelectAll: true
  124. # -- Injected from SCALE middleware
  125. # Only for reference here
  126. ixExternalInterfacesConfiguration: []
  127. # -- Injected from SCALE middleware
  128. # Only for reference here
  129. ixExternalInterfacesConfigurationNames: []
  130. # -- Injected from SCALE middleware
  131. # Only for reference here
  132. ixCertificates: []
  133. # -- Injected from SCALE middleware
  134. # Only for reference here
  135. ixVolumes: []
  136. # -- (docs/imagePullSecrets.md)
  137. imagePullSecret: []
  138. # -- (docs/configmap.md)
  139. configmap: {}
  140. # -- (docs/secret.md)
  141. secret: {}
  142. # -- (docs/serviceAccount.md)
  143. serviceAccount: {}
  144. # -- (docs/rbac.md)
  145. rbac: {}
  146. # -- (docs/scaleExternalInterface.md)
  147. scaleExternalInterface: []
  148. # -- (docs/scaleCertificate.md)
  149. scaleCertificate: {}
  150. # -- (docs/scaleGPU.md)
  151. scaleGPU: []
  152. # TODO:
  153. portal: {}