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.

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