values.yaml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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. ## ssl enforce SSL communication with PostgresSQL
  71. ## Default to false
  72. ##
  73. # ssl: false
  74. ## ca Certificate of Authority
  75. ## Default to empty, point to location of CA
  76. ##
  77. # ca: "path to ca"
  78. ## postgresqlHost override postgres database host
  79. ## Default to postgres
  80. ##
  81. # postgresqlHost: postgres
  82. ## postgresqlPort port for postgres
  83. ## Default to 5432
  84. ##
  85. # postgresqlPort: 5432
  86. ## PostgreSQL fullname Override
  87. ## Default to wiki-postgresql unless fullname override is set for Chart
  88. ##
  89. fullnameOverride: ""
  90. ## PostgreSQL User to create.
  91. ##
  92. postgresqlUser: postgres
  93. ## PostgreSQL Database to create.
  94. ##
  95. postgresqlDatabase: wiki
  96. ## Persistent Volume Storage configuration.
  97. ## ref: https://kubernetes.io/docs/user-guide/persistent-volumes
  98. ##
  99. replication:
  100. ## Enable PostgreSQL replication (primary/secondary)
  101. ##
  102. enabled: false
  103. persistence:
  104. ## Enable PostgreSQL persistence using Persistent Volume Claims.
  105. ##
  106. enabled: true
  107. ## concourse data Persistent Volume Storage Class
  108. ## If defined, storageClassName: <storageClass>
  109. ## If set to "-", storageClassName: "", which disables dynamic provisioning
  110. ## If undefined (the default) or set to null, no storageClassName spec is
  111. ## set, choosing the default provisioner. (gp2 on AWS, standard on
  112. ## GKE, AWS & OpenStack)
  113. ##
  114. # storageClass: "-"
  115. ## Persistent Volume Access Mode.
  116. ##
  117. accessMode: ReadWriteOnce
  118. ## Persistent Volume Storage Size.
  119. ##
  120. size: 8Gi