github.com/1aal/kubeblocks@v0.0.0-20231107070852-e1c03e598921/deploy/elasticsearch/values.yaml (about) 1 # Default values for elasticsearch. 2 # This is a YAML-formatted file. 3 # Declare variables to be passed into your templates. 4 5 replicaCount: 1 6 7 image: 8 # bitnami/elasticsearch 9 # docker pull bitnami/elasticsearch 10 registry: docker.io 11 repository: apecloud/elasticsearch 12 pullPolicy: IfNotPresent 13 # Overrides the image tag whose default is the chart appVersion. 14 tag: "" 15 metrics: 16 repository: bitnami/elasticsearch-exporter 17 tag: "1.5.0-debian-11-r102" 18 19 imagePullSecrets: [] 20 nameOverride: "" 21 fullnameOverride: "" 22 clusterVersionOverride: "" 23 24 serviceAccount: 25 # Specifies whether a service account should be created 26 create: true 27 # Annotations to add to the service account 28 annotations: {} 29 # The name of the service account to use. 30 # If not set and create is true, a name is generated using the fullname template 31 name: "" 32 33 podAnnotations: {} 34 35 podSecurityContext: {} 36 # fsGroup: 2000 37 38 securityContext: {} 39 # capabilities: 40 # drop: 41 # - ALL 42 # readOnlyRootFilesystem: true 43 # runAsNonRoot: true 44 # runAsUser: 1000 45 46 resources: {} 47 # We usually recommend not to specify default resources and to leave this as a conscious 48 # choice for the user. This also increases chances charts run on environments with little 49 # resources, such as Minikube. If you do want to specify resources, uncomment the following 50 # lines, adjust them as necessary, and remove the curly braces after 'resources:'. 51 # limits: 52 # cpu: 100m 53 # memory: 128Mi 54 # requests: 55 # cpu: 100m 56 # memory: 128Mi 57 58 nodeSelector: {} 59 60 tolerations: [] 61 62 affinity: {} 63 64 ingress: 65 enabled: false 66 67 service: 68 type: ClusterIP 69