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.

181 lines
4.6 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 & wikjs "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. ## This will override the postgresql chart values
  96. # externalPostgresql:
  97. # # note: ?sslmode=require => ?ssl=true
  98. # databaseURL: postgresql://postgres:postgres@postgres:5432/wiki?ssl=true
  99. # # For self signed CAs, like DigitalOcean
  100. # NODE_TLS_REJECT_UNAUTHORIZED: "0"
  101. ## Configuration values for the postgresql dependency.
  102. ## ref: https://github.com/kubernetes/charts/blob/master/stable/postgresql/README.md
  103. ##
  104. postgresql:
  105. ## Use the PostgreSQL chart dependency.
  106. ## Set to false if bringing your own PostgreSQL, and set secret value postgresql-uri.
  107. ##
  108. enabled: true
  109. ## ssl enforce SSL communication with PostgresSQL
  110. ## Default to false
  111. ##
  112. # ssl: false
  113. ## ca Certificate of Authority
  114. ## Default to empty, point to location of CA
  115. ##
  116. # ca: "path to ca"
  117. ## postgresqlHost override postgres database host
  118. ## Default to postgres
  119. ##
  120. # postgresqlHost: postgres
  121. ## postgresqlPort port for postgres
  122. ## Default to 5432
  123. ##
  124. # postgresqlPort: 5432
  125. ## PostgreSQL fullname Override
  126. ## Default to wiki-postgresql unless fullname override is set for Chart
  127. ##
  128. fullnameOverride: ""
  129. ## PostgreSQL User to create.
  130. ##
  131. postgresqlUser: postgres
  132. ## PostgreSQL Database to create.
  133. ##
  134. postgresqlDatabase: wiki
  135. ## Persistent Volume Storage configuration.
  136. ## ref: https://kubernetes.io/docs/user-guide/persistent-volumes
  137. ##
  138. replication:
  139. ## Enable PostgreSQL replication (primary/secondary)
  140. ##
  141. enabled: false
  142. persistence:
  143. ## Enable PostgreSQL persistence using Persistent Volume Claims.
  144. ##
  145. enabled: true
  146. ## concourse data Persistent Volume Storage Class
  147. ## If defined, storageClassName: <storageClass>
  148. ## If set to "-", storageClassName: "", which disables dynamic provisioning
  149. ## If undefined (the default) or set to null, no storageClassName spec is
  150. ## set, choosing the default provisioner. (gp2 on AWS, standard on
  151. ## GKE, AWS & OpenStack)
  152. ##
  153. # storageClass: "-"
  154. ## Persistent Volume Access Mode.
  155. ##
  156. accessMode: ReadWriteOnce
  157. ## Persistent Volume Storage Size.
  158. ##
  159. size: 8Gi