values.yaml 3.6 KB

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