github.com/1aal/kubeblocks@v0.0.0-20231107070852-e1c03e598921/deploy/openldap-cluster/values.yaml (about) 1 # Default values for openldap-cluster. 2 # This is a YAML-formatted file. 3 # Declare variables to be passed into your templates. 4 5 replication: false 6 terminationPolicy: Halt 7 8 nameOverride: "" 9 fullnameOverride: "" 10 11 image: 12 repository: osixia/openldap 13 pullPolicy: IfNotPresent 14 # Overrides the image tag whose default is the chart appVersion. 15 tag: "1.5.0" 16 17 serviceAccount: 18 # Specifies whether a service account should be created 19 create: true 20 # Annotations to add to the service account 21 annotations: {} 22 # The name of the service account to use. 23 # If not set and create is true, a name is generated using the fullname template 24 name: "" 25 26 resources: {} 27 # We usually recommend not to specify default resources and to leave this as a conscious 28 # choice for the user. This also increases chances charts run on environments with little 29 # resources, such as Minikube. If you do want to specify resources, uncomment the following 30 # lines, adjust them as necessary, and remove the curly braces after 'resources:'. 31 # limits: 32 # cpu: 100m 33 # memory: 128Mi 34 # requests: 35 # cpu: 100m 36 # memory: 128Mi 37 38 topologyKeys: 39 - kubernetes.io/hostname 40 41 tolerations: [] 42 43 ## Enable persistence using Persistent Volume Claims 44 ## ref: https://kubernetes.io/docs/user-guide/persistent-volumes/ 45 ## 46 persistence: 47 ## @param shard[*].persistence.enabled Enable persistence using Persistent Volume Claims 48 ## 49 enabled: true 50 ## `data` volume settings 51 ## 52 data: 53 ## @param shard[*].persistence.data.storageClassName Storage class of backing PVC 54 ## If defined, storageClassName: <storageClass> 55 ## If set to "-", storageClassName: "", which disables dynamic provisioning 56 ## If undefined (the default) or set to null, no storageClassName spec is 57 ## set, choosing the default provisioner. (gp2 on AWS, standard on 58 ## GKE, AWS & OpenStack) 59 ## 60 storageClassName: 61 ## @param shard[*].persistence.size Size of data volume 62 ## 63 size: 10Gi