values.yaml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  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. bashImage:
  37. repository: bash
  38. tag: "4.4.23"
  39. pullPolicy: IfNotPresent
  40. postgresImage:
  41. repository: postgres
  42. tag: "15.2"
  43. pullPolicy: IfNotPresent
  44. mariadbImage:
  45. repository: mariadb
  46. tag: "10.6.14"
  47. pullPolicy: IfNotPresent
  48. # -- (docs/README.md)
  49. securityContext:
  50. container:
  51. PUID: 568
  52. UMASK: "002"
  53. runAsNonRoot: true
  54. runAsUser: 568
  55. runAsGroup: 568
  56. readOnlyRootFilesystem: true
  57. allowPrivilegeEscalation: false
  58. privileged: false
  59. seccompProfile:
  60. type: RuntimeDefault
  61. capabilities:
  62. add: []
  63. drop:
  64. - ALL
  65. pod:
  66. fsGroup: 568
  67. fsGroupChangePolicy: OnRootMismatch
  68. supplementalGroups: []
  69. sysctls: []
  70. # -- (docs/README.md)
  71. resources:
  72. limits:
  73. cpu: 4000m
  74. memory: 8Gi
  75. requests:
  76. cpu: 10m
  77. memory: 50Mi
  78. NVIDIA_CAPS:
  79. - all
  80. # -- (docs/README.md)
  81. podOptions:
  82. enableServiceLinks: false
  83. hostNetwork: false
  84. restartPolicy: Always
  85. dnsPolicy: ClusterFirst
  86. dnsConfig:
  87. options:
  88. - name: ndots
  89. value: "2"
  90. hostAliases: []
  91. tolerations: []
  92. runtimeClassName: ""
  93. automountServiceAccountToken: false
  94. terminationGracePeriodSeconds: 30
  95. # -- (docs/notes.md)
  96. notes:
  97. header: |
  98. # Welcome to TrueNAS SCALE
  99. Thank you for installing {{ .Chart.Annotations.title }} App.
  100. # custom: "{{ toYaml $.Values }}"
  101. custom: ""
  102. footer: |
  103. # Documentation
  104. Documentation for this app can be found at https://docs.ixsystems.com.
  105. # Bug reports
  106. If you find a bug in this app, please file an issue at https://jira.ixsystems.com
  107. # -- Timezone used everywhere applicable
  108. TZ: UTC
  109. # -- (docs/workload/README.md)
  110. workload: {}
  111. # -- (docs/service/README.md)
  112. service: {}
  113. # -- (docs/persistence/README.md)
  114. persistence: {}
  115. # shared:
  116. # enabled: false # TODO: Enable by default?
  117. # type: emptyDir
  118. # mountPath: /shared
  119. # targetSelectAll: true
  120. # varlogs:
  121. # enabled: false # TODO: Enable by default?
  122. # type: emptyDir
  123. # mountPath: /var/logs
  124. # targetSelectAll: true
  125. # tmp:
  126. # enabled: false # TODO: Enable by default?
  127. # type: emptyDir
  128. # mountPath: /tmp
  129. # targetSelectAll: true
  130. # devshm:
  131. # enabled: false # TODO: Enable by default?
  132. # type: emptyDir
  133. # mountPath: /dev/shm
  134. # targetSelectAll: true
  135. # -- Injected from SCALE middleware
  136. # Only for reference here
  137. ixExternalInterfacesConfiguration: []
  138. # -- Injected from SCALE middleware
  139. # Only for reference here
  140. ixExternalInterfacesConfigurationNames: []
  141. # -- Injected from SCALE middleware
  142. # Only for reference here
  143. ixCertificates: []
  144. # -- Injected from SCALE middleware
  145. # Only for reference here
  146. ixVolumes: []
  147. # -- (docs/imagePullSecrets.md)
  148. imagePullSecret: []
  149. # -- (docs/configmap.md)
  150. configmap: {}
  151. # -- (docs/secret.md)
  152. secret: {}
  153. # -- (docs/serviceAccount.md)
  154. serviceAccount: {}
  155. # -- (docs/rbac.md)
  156. rbac: {}
  157. # -- (docs/scaleExternalInterface.md)
  158. scaleExternalInterface: []
  159. # -- (docs/scaleCertificate.md)
  160. scaleCertificate: {}
  161. # -- (docs/scaleGPU.md)
  162. scaleGPU: []
  163. # TODO:
  164. portal: {}