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.

157 lines
4.0 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. # This will allow us to install locales even without internet access using a initContainer & wikjs "sideloading"
  73. sideload:
  74. enabled: false
  75. # Git-Repo containing all locales.json-files you need:
  76. repoURL: https://github.com/Requarks/wiki-localization
  77. ## This can be helpfull if you have internet access over a http proxy:
  78. env: []
  79. # - name: HTTPS_PROXY
  80. # value: http://my.proxy.com:3128
  81. ## Configuration values for the postgresql dependency.
  82. ## ref: https://github.com/kubernetes/charts/blob/master/stable/postgresql/README.md
  83. ##
  84. postgresql:
  85. ## Use the PostgreSQL chart dependency.
  86. ## Set to false if bringing your own PostgreSQL, and set secret value postgresql-uri.
  87. ##
  88. enabled: true
  89. ## ssl enforce SSL communication with PostgresSQL
  90. ## Default to false
  91. ##
  92. # ssl: false
  93. ## ca Certificate of Authority
  94. ## Default to empty, point to location of CA
  95. ##
  96. # ca: "path to ca"
  97. ## postgresqlHost override postgres database host
  98. ## Default to postgres
  99. ##
  100. # postgresqlHost: postgres
  101. ## postgresqlPort port for postgres
  102. ## Default to 5432
  103. ##
  104. # postgresqlPort: 5432
  105. ## PostgreSQL fullname Override
  106. ## Default to wiki-postgresql unless fullname override is set for Chart
  107. ##
  108. fullnameOverride: ""
  109. ## PostgreSQL User to create.
  110. ##
  111. postgresqlUser: postgres
  112. ## PostgreSQL Database to create.
  113. ##
  114. postgresqlDatabase: wiki
  115. ## Persistent Volume Storage configuration.
  116. ## ref: https://kubernetes.io/docs/user-guide/persistent-volumes
  117. ##
  118. replication:
  119. ## Enable PostgreSQL replication (primary/secondary)
  120. ##
  121. enabled: false
  122. persistence:
  123. ## Enable PostgreSQL persistence using Persistent Volume Claims.
  124. ##
  125. enabled: true
  126. ## concourse data Persistent Volume Storage Class
  127. ## If defined, storageClassName: <storageClass>
  128. ## If set to "-", storageClassName: "", which disables dynamic provisioning
  129. ## If undefined (the default) or set to null, no storageClassName spec is
  130. ## set, choosing the default provisioner. (gp2 on AWS, standard on
  131. ## GKE, AWS & OpenStack)
  132. ##
  133. # storageClass: "-"
  134. ## Persistent Volume Access Mode.
  135. ##
  136. accessMode: ReadWriteOnce
  137. ## Persistent Volume Storage Size.
  138. ##
  139. size: 8Gi