...
1# -- Docker image for the Service mirror component (uses the Linkerd controller
2# image)
3controllerImage: cr.l5d.io/linkerd/controller
4# -- Tag for the Service Mirror container Docker image
5controllerImageVersion: linkerdVersionValue
6# -- For Private docker registries, authentication is needed.
7# Registry secrets are applied to the respective service accounts
8imagePullSecrets: []
9# -- Additional annotations to add to all pods
10podAnnotations: {}
11# -- Additional labels to add to all pods
12podLabels: {}
13# -- Labels to apply to all resources
14commonLabels: {}
15# -- Toggle support for mirroring headless services
16enableHeadlessServices: false
17# -- Enables Pod Anti Affinity logic to balance the placement of replicas
18# across hosts and zones for High Availability.
19# Enable this only when you have multiple replicas of components.
20enablePodAntiAffinity: false
21gateway:
22 # -- Controls whether link will create a probe service for the gateway
23 enabled: true
24 probe:
25 # -- The port used for liveliness probing
26 port: 4191
27# -- Log level for the Multicluster components
28logLevel: info
29# -- Log format (`plain` or `json`)
30logFormat: plain
31# -- Node selectors for the Service mirror pod
32nodeSelector: {}
33# -- Number of service mirror replicas to run
34replicas: 1
35# -- Resources for the Service mirror container
36resources: {}
37# -- Number of times update from the remote cluster is allowed to be requeued
38# (retried)
39serviceMirrorRetryLimit: 3
40# -- User id under which the Service Mirror shall be ran
41serviceMirrorUID: 2103
42# -- Group id under which the Service Mirror shall be ran
43serviceMirrorGID: 2103
44# -- Name of the target cluster that's going to be linked
45targetClusterName: ""
46# -- Tolerations for the Service mirror pod
47tolerations: {}
48
49# -- Create RoleBindings to associate ServiceAccount of target cluster Service
50# Mirror to the control plane PSP resource. This requires that `enabledPSP` is
51# set to true on the extension and control plane install. Note PSP has been
52# deprecated since k8s v1.21
53enablePSP: false
54
55# -- Specifies the number of old ReplicaSets to retain to allow rollback.
56revisionHistoryLimit: 10
View as plain text