...

Text file src/github.com/linkerd/linkerd2/viz/charts/linkerd-viz/values-ha.yaml

Documentation: github.com/linkerd/linkerd2/viz/charts/linkerd-viz

     1# This values.yaml file contains the values needed to enable HA mode.
     2# Usage:
     3#   helm install -f values.yaml -f values-ha.yaml
     4
     5enablePodAntiAffinity: true
     6enablePodDisruptionBudget: true
     7
     8# nodeAffinity:
     9
    10resources: &ha_resources
    11  cpu: &ha_resources_cpu
    12    limit: ""
    13    request: 100m
    14  memory:
    15    limit: 250Mi
    16    request: 50Mi
    17
    18
    19# tap configuration
    20tap:
    21  replicas: 3
    22  resources: *ha_resources
    23
    24# web configuration
    25dashboard:
    26  resources: *ha_resources
    27
    28# prometheus configuration
    29prometheus:
    30  resources:
    31    cpu:
    32      limit: ""
    33      request: 300m
    34    memory:
    35      limit: 8192Mi
    36      request: 300Mi

View as plain text