sigs.k8s.io/cluster-api-provider-azure@v1.14.3/hack/observability/jaeger/chart/values.yaml (about)

     1  # Default values for jaeger-all-in-one.
     2  # This is a YAML-formatted file.
     3  # Declare variables to be passed into your templates.
     4  
     5  enabled: true
     6  replicaCount: 1
     7  
     8  image:
     9    repository: jaegertracing/all-in-one
    10    pullPolicy: IfNotPresent
    11    versionOverride: "*"
    12  
    13  healthCheckUrl: /
    14  imagePullSecrets: []
    15  nameOverride: ""
    16  fullnameOverride: ""
    17  terminationGracePeriodSeconds: 10
    18  environmentVariables:
    19    MEMORY_MAX_TRACES: 100000
    20    SPAN_STORAGE_TYPE: badger
    21    BADGER_EPHEMERAL: false
    22    BADGER_DIRECTORY_VALUE: /badger/data
    23    BADGER_DIRECTORY_KEY: /badger/key
    24  
    25  enableHttpZipkinCollector: false
    26  enableHttpOpenTelemetryCollector: true
    27  
    28  serviceAccount:
    29    # Specifies whether a service account should be created
    30    create: true
    31    # The name of the service account to use.
    32    # If not set and create is true, a name is generated using the fullname template
    33    name:
    34  
    35  podAnnotations:
    36    prometheus.io/scrape: "true"
    37    prometheus.io/path: "/metrics"
    38    prometheus.io/port: "14269"
    39  
    40  podSecurityContext: {}
    41    # fsGroup: 2000
    42  
    43  securityContext: {}
    44    # capabilities:
    45    #   drop:
    46    #   - ALL
    47    # readOnlyRootFilesystem: true
    48    # runAsNonRoot: true
    49    # runAsUser: 1000
    50  
    51  service:
    52    type: ClusterIP
    53    port: 16686
    54    annotations:
    55      prometheus.io/probe: "true"
    56      prometheus.io/probe-path: "/"
    57    headless:
    58      annotations: {}
    59  
    60  ingress:
    61    enabled: false
    62    className: ""
    63    annotations: {}
    64      # kubernetes.io/ingress.class: nginx
    65      # cert-manager.io/cluster-issuer: letsencrypt
    66      # nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
    67      # nginx.ingress.kubernetes.io/from-to-www-redirect: "true"
    68    hosts:
    69      - host: jaeger.local
    70        paths:
    71          - path: /
    72            pathType: ImplementationSpecific
    73    tls: []
    74    #  - secretName: jaeger-tls
    75    #    hosts:
    76    #      - jaeger.local
    77  
    78  resources: {}
    79    # We usually recommend not to specify default resources and to leave this as a conscious
    80    # choice for the user. This also increases chances charts run on environments with little
    81    # resources, such as Minikube. If you do want to specify resources, uncomment the following
    82    # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
    83    # limits:
    84    #   cpu: 100m
    85    #   memory: 128Mi
    86    # requests:
    87    #   cpu: 100m
    88    #   memory: 128Mi
    89  
    90  nodeSelector: {}
    91  
    92  tolerations: []
    93  
    94  affinity: {}
    95  
    96  volume:
    97    enabled: true
    98    className: ""
    99    size: 3Gi
   100  
   101  tests:
   102    enabled: true