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

     1  # Default values for nyancat.
     2  # This is a YAML-formatted file.
     3  # Declare variables to be passed into your templates.
     4  
     5  replicaCount: 2
     6  
     7  image:
     8    registry: infracreate-registry.cn-zhangjiakou.cr.aliyuncs.com
     9    repository: apecloud/nyancat
    10    pullPolicy: Always
    11    # Overrides the image tag whose default is the chart appVersion.
    12    tag: "latest"
    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  service:
    41    type: ClusterIP
    42    port: 8087
    43  
    44  
    45  resources: {}
    46    # We usually recommend not to specify default resources and to leave this as a conscious
    47    # choice for the user. This also increases chances charts run on environments with little
    48    # resources, such as Minikube. If you do want to specify resources, uncomment the following
    49    # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
    50    # limits:
    51    #   cpu: 100m
    52    #   memory: 128Mi
    53    # requests:
    54    #   cpu: 100m
    55    #   memory: 128Mi
    56  
    57  autoscaling:
    58    enabled: false
    59    minReplicas: 1
    60    maxReplicas: 100
    61    targetCPUUtilizationPercentage: 80
    62    # targetMemoryUtilizationPercentage: 80
    63  
    64  nodeSelector: {}
    65  
    66  tolerations:
    67    - key: kb-controller
    68      operator: Equal
    69      value: "true"
    70      effect: NoSchedule
    71  
    72  affinity:
    73    nodeAffinity:
    74      preferredDuringSchedulingIgnoredDuringExecution:
    75        - weight: 100
    76          preference:
    77            matchExpressions:
    78              - key: kb-controller
    79                operator: In
    80                values:
    81                  - "true"