github.com/devseccon/trivy@v0.47.1-0.20231123133102-bd902a0bd996/integration/testdata/fixtures/repo/helm_testchart/values.yaml (about)

     1  # Default values for testchart.
     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    {}
    30    # fsGroup: 2000
    31  
    32  securityContext:
    33    {
    34      "capabilities": {
    35        "drop": ["ALL"]
    36      },
    37      "runAsUser": 10001,
    38      "runAsNonRoot": true,
    39      "runAsGroup": 10001,
    40      "readOnlyRootFilesystem": true,
    41    }
    42  
    43  service:
    44    type: ClusterIP
    45    port: 80
    46  
    47  ingress:
    48    enabled: false
    49    className: ""
    50    annotations:
    51      {}
    52      # kubernetes.io/ingress.class: nginx
    53      # kubernetes.io/tls-acme: "true"
    54    hosts:
    55      - host: chart-example.local
    56        paths:
    57          - path: /
    58            pathType: ImplementationSpecific
    59    tls: []
    60    #  - secretName: chart-example-tls
    61    #    hosts:
    62    #      - chart-example.local
    63  
    64  resources:
    65    limits:
    66      cpu: 100m
    67      memory: 128Mi
    68    requests:
    69      cpu: 100m
    70      memory: 126Mi
    71  
    72  autoscaling:
    73    enabled: false
    74    minReplicas: 1
    75    maxReplicas: 100
    76    targetCPUUtilizationPercentage: 80
    77    # targetMemoryUtilizationPercentage: 80
    78  
    79  nodeSelector: {}
    80  
    81  tolerations: []
    82  
    83  affinity: {}