values.yaml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. # Default values for wiki.
  2. # This is a YAML-formatted file.
  3. # Declare variables to be passed into your templates.
  4. replicaCount: 1
  5. revisionHistoryLimit: 10
  6. image:
  7. repository: requarks/wiki
  8. imagePullPolicy: IfNotPresent
  9. imagePullSecrets: []
  10. nameOverride: ""
  11. fullnameOverride: ""
  12. serviceAccount:
  13. # Specifies whether a service account should be created
  14. create: true
  15. # Annotations to add to the service account
  16. annotations: {}
  17. # The name of the service account to use.
  18. # If not set and create is true, a name is generated using the fullname template
  19. name:
  20. livenessProbe:
  21. httpGet:
  22. path: /healthz
  23. port: http
  24. readinessProbe:
  25. httpGet:
  26. path: /healthz
  27. port: http
  28. startupProbe:
  29. initialDelaySeconds: 15
  30. periodSeconds: 5
  31. timeoutSeconds: 5
  32. successThreshold: 1
  33. failureThreshold: 60
  34. httpGet:
  35. path: /healthz
  36. port: http
  37. podAnnotations: {}
  38. podSecurityContext: {}
  39. # fsGroup: 2000
  40. securityContext: {}
  41. # capabilities:
  42. # drop:
  43. # - ALL
  44. # readOnlyRootFilesystem: true
  45. # runAsNonRoot: true
  46. # runAsUser: 1000
  47. service:
  48. type: ClusterIP
  49. port: 80
  50. # Annotations applied for services such as externalDNS or
  51. # service type LoadBalancer
  52. # type: LoadBalancer
  53. # httpsPort: 443
  54. # annotations: {}
  55. # loadBalancerIP: 172.16.0.1
  56. ingress:
  57. enabled: true
  58. className: ""
  59. annotations: {}
  60. # kubernetes.io/ingress.class: nginx
  61. # kubernetes.io/tls-acme: "true"
  62. hosts:
  63. - host: wiki.minikube.local
  64. paths:
  65. - path: "/"
  66. pathType: Prefix
  67. tls: []
  68. # - secretName: chart-example-tls
  69. # hosts:
  70. # - chart-example.local
  71. resources: {}
  72. # We usually recommend not to specify default resources and to leave this as a conscious
  73. # choice for the user. This also increases chances charts run on environments with little
  74. # resources, such as Minikube. If you do want to specify resources, uncomment the following
  75. # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
  76. # limits:
  77. # cpu: 100m
  78. # memory: 128Mi
  79. # requests:
  80. # cpu: 100m
  81. # memory: 128Mi
  82. nodeSelector: {}
  83. tolerations: []
  84. affinity: {}
  85. volumeMounts: []
  86. volumes: []
  87. # This will allow us to install locales even without internet access using a initContainer & Wiki.js "sideloading"
  88. sideload:
  89. enabled: false
  90. # Git-Repo containing all locales.json-files you need:
  91. repoURL: https://github.com/Requarks/wiki-localization
  92. ## This can be helpfull if you have internet access over a http proxy:
  93. env: []
  94. # - name: HTTPS_PROXY
  95. # value: http://my.proxy.com:3128
  96. securityContext: {}
  97. # capabilities:
  98. # drop:
  99. # - ALL
  100. # readOnlyRootFilesystem: true
  101. # runAsNonRoot: true
  102. # runAsUser: 1000
  103. resources: {}
  104. # We usually recommend not to specify default resources and to leave this as a conscious
  105. # choice for the user. This also increases chances charts run on environments with little
  106. # resources, such as Minikube. If you do want to specify resources, uncomment the following
  107. # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
  108. # limits:
  109. # cpu: 100m
  110. # memory: 128Mi
  111. # requests:
  112. # cpu: 100m
  113. # memory: 128Mi
  114. ## Append extra trusted certificates for node process from extra volume via NODE_EXTRA_CA_CERTS variable
  115. # nodeExtraCaCerts: "/path/to/certs.pem"
  116. ## This will override the postgresql chart values
  117. # externalPostgresql:
  118. # # note: ?sslmode=require => ?ssl=true
  119. # databaseURL: postgresql://postgres:postgres@postgres:5432/wiki?ssl=true
  120. # # For self signed CAs, like DigitalOcean
  121. # NODE_TLS_REJECT_UNAUTHORIZED: "0"
  122. ## Configuration values for the postgresql dependency.
  123. ## ref: https://github.com/kubernetes/charts/blob/master/stable/postgresql/README.md
  124. ##
  125. postgresql:
  126. ## Use the PostgreSQL chart dependency.
  127. ## Set to false if bringing your own PostgreSQL, and set secret value postgresql-uri.
  128. ##
  129. enabled: true
  130. ## ssl enforce SSL communication with PostgresSQL
  131. ## Default to false
  132. ##
  133. # ssl: false
  134. ## ca Certificate of Authority
  135. ## Default to empty, point to location of CA
  136. ##
  137. # ca: "path to ca"
  138. ## postgresqlHost override postgres database host
  139. ## Default to postgres
  140. ##
  141. # postgresqlHost: postgres
  142. ## postgresqlPort port for postgres
  143. ## Default to 5432
  144. ##
  145. # postgresqlPort: 5432
  146. ## PostgreSQL fullname Override
  147. ## Default to wiki-postgresql unless fullname override is set for Chart
  148. ##
  149. fullnameOverride: ""
  150. ## PostgreSQL User to create.
  151. ##
  152. postgresqlUser: postgres
  153. ## PostgreSQL Database to create.
  154. ##
  155. postgresqlDatabase: wiki
  156. ## Persistent Volume Storage configuration.
  157. ## ref: https://kubernetes.io/docs/user-guide/persistent-volumes
  158. ##
  159. replication:
  160. ## Enable PostgreSQL replication (primary/secondary)
  161. ##
  162. enabled: false
  163. persistence:
  164. ## Enable PostgreSQL persistence using Persistent Volume Claims.
  165. ##
  166. enabled: true
  167. ## concourse data Persistent Volume Storage Class
  168. ## If defined, storageClassName: <storageClass>
  169. ## If set to "-", storageClassName: "", which disables dynamic provisioning
  170. ## If undefined (the default) or set to null, no storageClassName spec is
  171. ## set, choosing the default provisioner. (gp2 on AWS, standard on
  172. ## GKE, AWS & OpenStack)
  173. ##
  174. # storageClass: "-"
  175. ## Persistent Volume Access Mode.
  176. ##
  177. accessMode: ReadWriteOnce
  178. ## Persistent Volume Storage Size.
  179. ##
  180. size: 8Gi