github.com/banzaicloud/operator-tools@v0.28.10/pkg/helm/testdata/crds-only/logging-operator/values.yaml (about)

     1  # Default values for logging-operator.
     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: ghcr.io/banzaicloud/logging-operator
     9    tag: 3.7.1
    10    pullPolicy: IfNotPresent
    11  
    12  imagePullSecrets: []
    13  nameOverride: ""
    14  fullnameOverride: ""
    15  namespaceOverride: ""
    16  
    17  annotations: {}
    18  
    19  ## Deploy CRDs used by Logging Operator.
    20  ##
    21  createCustomResource: true
    22  
    23  resources: {}
    24    # We usually recommend not to specify default resources and to leave this as a conscious
    25    # choice for the user. This also increases chances charts run on environments with little
    26    # resources, such as Minikube. If you do want to specify resources, uncomment the following
    27    # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
    28    # limits:
    29    #   cpu: 100m
    30    #   memory: 128Mi
    31    # requests:
    32    #   cpu: 100m
    33    #   memory: 128Mi
    34  
    35  nodeSelector: {}
    36  
    37  tolerations: []
    38  
    39  affinity: {}
    40  
    41  http:
    42    # http listen port number
    43    port: 8080
    44    # Service definition for query http service
    45    service:
    46      type: ClusterIP
    47      clusterIP: None
    48      # Annotations to query http service
    49      annotations: {}
    50      # Labels to query http service
    51      labels: {}
    52  
    53  rbac:
    54    enabled: true
    55    psp:
    56      enabled: false
    57  
    58  ## SecurityContext holds pod-level security attributes and common container settings.
    59  ## This defaults to non root user with uid 1000 and gid 2000.	*v1.PodSecurityContext	false
    60  ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/
    61  ##
    62  podSecurityContext: {}
    63  #  runAsNonRoot: true
    64  #  runAsUser: 1000
    65  #  fsGroup: 2000
    66  securityContext: {}
    67  #  allowPrivilegeEscalation: false
    68  #  readOnlyRootFilesystem: true
    69    # capabilities:
    70    #   drop: ["ALL"]
    71  
    72  ## Operator priorityClassName
    73  ##
    74  priorityClassName: {}
    75  
    76  monitoring:
    77    # Create a Prometheus Operator ServiceMonitor object
    78    serviceMonitor:
    79      enabled: false