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.

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