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.

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