github.com/1aal/kubeblocks@v0.0.0-20231107070852-e1c03e598921/deploy/foxlake-cluster/values.yaml (about)

     1  # Default values for foxlake-cluster.
     2  # This is a YAML-formatted file.
     3  # Declare variables to be passed into your templates.
     4  
     5  
     6  imagePullSecrets: []
     7  nameOverride: ""
     8  fullnameOverride: ""
     9  
    10  clusterVersionOverride: ""
    11  
    12  terminationPolicy: Delete
    13  
    14  ## @param tolerations define global Tolerations for the cluster all pod's assignment
    15  ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
    16  ##
    17  tolerations: []
    18  
    19  
    20  ## @param topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template
    21  ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods
    22  ##
    23  topologyKeys:
    24    - kubernetes.io/hostname
    25  
    26  ## @param cpu
    27  ##
    28  cpu: 1
    29  
    30  ## @param memory, the unit is Gi
    31  ##
    32  memory: 2
    33  
    34  ## @param requests.cpu if not set, use cpu
    35  ## @param requests.memory, if not set, use memory
    36  ##
    37  requests:
    38  #  cpu:
    39  #  memory:
    40  
    41  ## @param storage FoxLake metadb storage size, the unit is Gi
    42  ##
    43  storage: 20
    44  
    45  ## @param storageCreate If it is true, the default storage will be created automatically.
    46  ##
    47  storageCreate: false
    48  
    49  ## @param storageAccessKey Access key for the object storage service.
    50  ## For AWS S3 storage, this is the same as AWS_ACCESS_KEY_ID
    51  ##
    52  storageAccessKey: ""
    53  
    54  ## @param storageSecretKey Secret key for the object storage service.
    55  ## For AWS S3 storage, this is the same as AWS_SECRET_ACCESS_KEY
    56  ##
    57  storageSecretKey: ""
    58  
    59  ## @param storageEndpoint Endpoint for the object storage service.
    60  ## For AWS S3 storage, you can use the following link to query the endpoint of the region where the object is located:
    61  ## https://docs.aws.amazon.com/general/latest/gr/s3.html
    62  ##
    63  storageEndpoint: ""
    64  
    65  ## @param storageUri Object Storage URI Format.
    66  ## The format of the Object Storage URI is as follows:
    67  ## <StorageProvider>://<bucket>/<prefix>
    68  ## Example:
    69  ## s3://my-bucket/my-folder/my-object
    70  ## minio://my-bucket/my-object
    71  ## In this format:
    72  ## - <StorageProvider> represents the type of storage provider, such as "s3" for AWS S3, "minio" for MinIO, etc.
    73  ## - <bucket> represents the name of the bucket where the object is stored.
    74  ## - <prefix> represents the optional prefix or folder structure within the bucket where the object is located.
    75  storageUri: ""
    76  
    77  mppWorkerTolerations: ""