2
0

values.yaml 3.6 KB

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