github.com/1aal/kubeblocks@v0.0.0-20231107070852-e1c03e598921/deploy/csi-hostpath-driver/values.yaml (about)

     1  # Default values for csi-hostpath-driver.
     2  # This is a YAML-formatted file.
     3  # Declare variables to be passed into your templates.
     4  
     5  replicaCount: 1
     6  
     7  image:
     8    registry: infracreate-registry.cn-zhangjiakou.cr.aliyuncs.com
     9    repository: apecloud/hostpathplugin
    10    pullPolicy: IfNotPresent
    11    # Overrides the image tag whose default is the chart appVersion.
    12    tag: ""
    13  
    14  imagePullSecrets: []
    15  nameOverride: ""
    16  fullnameOverride: ""
    17  
    18  serviceAccount:
    19    # Specifies whether a service account should be created
    20    create: true
    21    # Annotations to add to the service account
    22    annotations: {}
    23    # The name of the service account to use.
    24    # If not set and create is true, a name is generated using the fullname template
    25    name: ""
    26  
    27  podAnnotations: {}
    28  
    29  podSecurityContext: {}
    30    # fsGroup: 2000
    31  
    32  securityContext: {}
    33    # capabilities:
    34    #   drop:
    35    #   - ALL
    36    # readOnlyRootFilesystem: true
    37    # runAsNonRoot: true
    38    # runAsUser: 1000
    39  
    40  resources: {}
    41    # We usually recommend not to specify default resources and to leave this as a conscious
    42    # choice for the user. This also increases chances charts run on environments with little
    43    # resources, such as Minikube. If you do want to specify resources, uncomment the following
    44    # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
    45    # limits:
    46    #   cpu: 100m
    47    #   memory: 128Mi
    48    # requests:
    49    #   cpu: 100m
    50    #   memory: 128Mi
    51  
    52  nodeSelector: {}
    53  
    54  tolerations:
    55    - key: kb-controller
    56      operator: Equal
    57      value: "true"
    58      effect: NoSchedule
    59  
    60  affinity:
    61    nodeAffinity:
    62      preferredDuringSchedulingIgnoredDuringExecution:
    63        - weight: 100
    64          preference:
    65            matchExpressions:
    66              - key: kb-controller
    67                operator: In
    68                values:
    69                  - "true"
    70  
    71  sidecars:
    72    healthmonitor:
    73      image:
    74        repository: apecloud/csi-external-health-monitor-controller
    75        tag: v0.7.0
    76    registrar:
    77      image:
    78        repository: apecloud/csi-node-driver-registrar
    79        tag: v2.6.0
    80    livenessprobe:
    81      image:
    82        repository: apecloud/livenessprobe
    83        tag: v2.8.0
    84    attacher:
    85      image:
    86        repository: apecloud/csi-attacher
    87        tag: v4.0.0
    88    provisioner:
    89      image:
    90        repository: apecloud/csi-provisioner
    91        tag: v3.3.0
    92    resizer:
    93      image:
    94        repository: apecloud/csi-resizer
    95        tag: v1.6.0
    96    snapshotter:
    97      image:
    98        repository: apecloud/csi-snapshotter
    99        tag: v6.1.0
   100  
   101  storageClass:
   102    create: true
   103    default: true