values.yaml 4.1 KB

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