github.com/stefanmcshane/helm@v0.0.0-20221213002717-88a4a2c6e77d/pkg/lint/rules/testdata/v3-fail/values.yaml (about) 1 # Default values for v3-fail. 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 11 imagePullSecrets: [] 12 nameOverride: "" 13 fullnameOverride: "" 14 15 serviceAccount: 16 # Specifies whether a service account should be created 17 create: true 18 # The name of the service account to use. 19 # If not set and create is true, a name is generated using the fullname template 20 name: 21 22 podSecurityContext: {} 23 # fsGroup: 2000 24 25 securityContext: {} 26 # capabilities: 27 # drop: 28 # - ALL 29 # readOnlyRootFilesystem: true 30 # runAsNonRoot: true 31 # runAsUser: 1000 32 33 service: 34 type: ClusterIP 35 port: 80 36 37 ingress: 38 enabled: false 39 annotations: {} 40 # kubernetes.io/ingress.class: nginx 41 # kubernetes.io/tls-acme: "true" 42 hosts: 43 - host: chart-example.local 44 paths: [] 45 tls: [] 46 # - secretName: chart-example-tls 47 # hosts: 48 # - chart-example.local 49 50 resources: {} 51 # We usually recommend not to specify default resources and to leave this as a conscious 52 # choice for the user. This also increases chances charts run on environments with little 53 # resources, such as Minikube. If you do want to specify resources, uncomment the following 54 # lines, adjust them as necessary, and remove the curly braces after 'resources:'. 55 # limits: 56 # cpu: 100m 57 # memory: 128Mi 58 # requests: 59 # cpu: 100m 60 # memory: 128Mi 61 62 nodeSelector: {} 63 64 tolerations: [] 65 66 affinity: {}