values.yaml 3.8 KB

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