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.

104 lines
2.7 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. ingress:
  32. enabled: false
  33. annotations: {}
  34. # kubernetes.io/ingress.class: nginx
  35. # kubernetes.io/tls-acme: "true"
  36. hosts:
  37. - host: wiki.local
  38. paths: ["/"]
  39. tls: []
  40. # - secretName: chart-example-tls
  41. # hosts:
  42. # - chart-example.local
  43. resources: {}
  44. # We usually recommend not to specify default resources and to leave this as a conscious
  45. # choice for the user. This also increases chances charts run on environments with little
  46. # resources, such as Minikube. If you do want to specify resources, uncomment the following
  47. # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
  48. # limits:
  49. # cpu: 100m
  50. # memory: 128Mi
  51. # requests:
  52. # cpu: 100m
  53. # memory: 128Mi
  54. nodeSelector: {}
  55. tolerations: []
  56. affinity: {}
  57. ## Configuration values for the postgresql dependency.
  58. ## ref: https://github.com/kubernetes/charts/blob/master/stable/postgresql/README.md
  59. ##
  60. postgresql:
  61. ## Use the PostgreSQL chart dependency.
  62. ## Set to false if bringing your own PostgreSQL, and set secret value postgresql-uri.
  63. ##
  64. enabled: true
  65. ### PostgreSQL User to create.
  66. ##
  67. postgresqlUser: postgres
  68. ## PostgreSQL Database to create.
  69. ##
  70. postgresqlDatabase: wiki
  71. ## Persistent Volume Storage configuration.
  72. ## ref: https://kubernetes.io/docs/user-guide/persistent-volumes
  73. ##
  74. persistence:
  75. ## Enable PostgreSQL persistence using Persistent Volume Claims.
  76. ##
  77. enabled: true
  78. ## concourse data Persistent Volume Storage Class
  79. ## If defined, storageClassName: <storageClass>
  80. ## If set to "-", storageClassName: "", which disables dynamic provisioning
  81. ## If undefined (the default) or set to null, no storageClassName spec is
  82. ## set, choosing the default provisioner. (gp2 on AWS, standard on
  83. ## GKE, AWS & OpenStack)
  84. ##
  85. # storageClass: "-"
  86. ## Persistent Volume Access Mode.
  87. ##
  88. accessMode: ReadWriteOnce
  89. ## Persistent Volume Storage Size.
  90. ##
  91. size: 8Gi