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

     1  # Default values for neonvm.
     2  # This is a YAML-formatted file.
     3  # Declare variables to be passed into your templates.
     4  
     5  replicaCount: 1
     6  
     7  image:
     8    repository: nginx
     9    pullPolicy: IfNotPresent
    10    # Overrides the image tag whose default is the chart appVersion.
    11    tag: ""
    12  
    13  imagePullSecrets: []
    14  nameOverride: ""
    15  fullnameOverride: ""
    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  podAnnotations: {}
    27  
    28  podSecurityContext: {}
    29    # fsGroup: 2000
    30  
    31  securityContext: {}
    32    # capabilities:
    33    #   drop:
    34    #   - ALL
    35    # readOnlyRootFilesystem: true
    36    # runAsNonRoot: true
    37    # runAsUser: 1000
    38  
    39  service:
    40    type: ClusterIP
    41    port: 80
    42  
    43  ingress:
    44    enabled: false
    45    className: ""
    46    annotations: {}
    47      # kubernetes.io/ingress.class: nginx
    48      # kubernetes.io/tls-acme: "true"
    49    hosts:
    50      - host: chart-example.local
    51        paths:
    52          - path: /
    53            pathType: ImplementationSpecific
    54    tls: []
    55    #  - secretName: chart-example-tls
    56    #    hosts:
    57    #      - chart-example.local
    58  
    59  resources: {}
    60    # We usually recommend not to specify default resources and to leave this as a conscious
    61    # choice for the user. This also increases chances charts run on environments with little
    62    # resources, such as Minikube. If you do want to specify resources, uncomment the following
    63    # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
    64    # limits:
    65    #   cpu: 100m
    66    #   memory: 128Mi
    67    # requests:
    68    #   cpu: 100m
    69    #   memory: 128Mi
    70  
    71  autoscaling:
    72    enabled: false
    73    minReplicas: 1
    74    maxReplicas: 100
    75    targetCPUUtilizationPercentage: 80
    76    # targetMemoryUtilizationPercentage: 80
    77  
    78  nodeSelector: {}
    79  
    80  tolerations: []
    81  
    82  affinity: {}