values.yaml 4.5 KB

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