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.

117 lines
3.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. 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. podSecurityContext: {}
  20. # fsGroup: 2000
  21. securityContext: {}
  22. # capabilities:
  23. # drop:
  24. # - ALL
  25. # readOnlyRootFilesystem: true
  26. # runAsNonRoot: true
  27. # runAsUser: 1000
  28. service:
  29. type: ClusterIP
  30. port: 80
  31. # Annotations applied for services such as externalDNS or
  32. # service type LoadBalancer
  33. # type: LoadBalancer
  34. # httpsPort: 443
  35. # annotations: {}
  36. ingress:
  37. enabled: false
  38. annotations: {}
  39. # kubernetes.io/ingress.class: nginx
  40. # kubernetes.io/tls-acme: "true"
  41. hosts:
  42. - host: wiki.local
  43. paths: ["/"]
  44. tls: []
  45. # - secretName: chart-example-tls
  46. # hosts:
  47. # - chart-example.local
  48. resources: {}
  49. # We usually recommend not to specify default resources and to leave this as a conscious
  50. # choice for the user. This also increases chances charts run on environments with little
  51. # resources, such as Minikube. If you do want to specify resources, uncomment the following
  52. # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
  53. # limits:
  54. # cpu: 100m
  55. # memory: 128Mi
  56. # requests:
  57. # cpu: 100m
  58. # memory: 128Mi
  59. nodeSelector: {}
  60. tolerations: []
  61. affinity: {}
  62. ## Configuration values for the postgresql dependency.
  63. ## ref: https://github.com/kubernetes/charts/blob/master/stable/postgresql/README.md
  64. ##
  65. postgresql:
  66. ## Use the PostgreSQL chart dependency.
  67. ## Set to false if bringing your own PostgreSQL, and set secret value postgresql-uri.
  68. ##
  69. enabled: true
  70. ## PostgreSQL fullname Override
  71. ## Default to wiki-postgresql unless fullname override is set for Chart
  72. ##
  73. fullnameOverride: ""
  74. ## PostgreSQL User to create.
  75. ##
  76. postgresqlUser: postgres
  77. ## PostgreSQL Database to create.
  78. ##
  79. postgresqlDatabase: wiki
  80. ## Persistent Volume Storage configuration.
  81. ## ref: https://kubernetes.io/docs/user-guide/persistent-volumes
  82. ##
  83. replication:
  84. ## Enable PostgreSQL replication (primary/secondary)
  85. ##
  86. enabled: false
  87. persistence:
  88. ## Enable PostgreSQL persistence using Persistent Volume Claims.
  89. ##
  90. enabled: true
  91. ## concourse data Persistent Volume Storage Class
  92. ## If defined, storageClassName: <storageClass>
  93. ## If set to "-", storageClassName: "", which disables dynamic provisioning
  94. ## If undefined (the default) or set to null, no storageClassName spec is
  95. ## set, choosing the default provisioner. (gp2 on AWS, standard on
  96. ## GKE, AWS & OpenStack)
  97. ##
  98. # storageClass: "-"
  99. ## Persistent Volume Access Mode.
  100. ##
  101. accessMode: ReadWriteOnce
  102. ## Persistent Volume Storage Size.
  103. ##
  104. size: 8Gi