You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

184 lines
4.7 KiB

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