diff --git a/controller/api/destination/test_util.go b/controller/api/destination/test_util.go index 96070fe2b..316060dfb 100644 --- a/controller/api/destination/test_util.go +++ b/controller/api/destination/test_util.go @@ -694,7 +694,7 @@ spec: t.Fatalf("can't create cluster store: %s", err) } - // Sync after creating watchers so that the the indexers added get updated + // Sync after creating watchers so that the indexers added get updated // properly k8sAPI.Sync(nil) metadataAPI.Sync(nil) diff --git a/jaeger/charts/linkerd-jaeger/README.md b/jaeger/charts/linkerd-jaeger/README.md index 14defa40b..0a0c355fd 100644 --- a/jaeger/charts/linkerd-jaeger/README.md +++ b/jaeger/charts/linkerd-jaeger/README.md @@ -119,7 +119,7 @@ Kubernetes: `>=1.22.0-0` | webhook.UID | string | `nil` | UID for the webhook resource | | webhook.caBundle | string | `""` | Bundle of CA certificates for webhook. If not provided nor injected with cert-manager, then Helm will use the certificate generated for `webhook.crtPEM`. If `webhook.externalSecret` is set to true, this value, injectCaFrom, or injectCaFromSecret must be set, as no certificate will be generated. See the cert-manager [CA Injector Docs](https://cert-manager.io/docs/concepts/ca-injector) for more information. | | webhook.collectorSvcAccount | string | `"collector"` | service account associated with the collector instance | -| webhook.collectorSvcAddr | string | `"collector.linkerd-jaeger:55678"` | collector service address for the proxies to send trace data. Points by default to the the linkerd-jaeger collector | +| webhook.collectorSvcAddr | string | `"collector.linkerd-jaeger:55678"` | collector service address for the proxies to send trace data. Points by default to the linkerd-jaeger collector | | webhook.crtPEM | string | `""` | Certificate for the webhook. If not provided and not using an external secret then Helm will generate one. | | webhook.externalSecret | bool | `false` | Do not create a secret resource for the webhook. If this is set to `true`, the value `webhook.caBundle` must be set or the ca bundle must injected with cert-manager ca injector using `webhook.injectCaFrom` or `webhook.injectCaFromSecret` (see below). | | webhook.failurePolicy | string | `"Ignore"` | | diff --git a/jaeger/charts/linkerd-jaeger/values.yaml b/jaeger/charts/linkerd-jaeger/values.yaml index 2cbebc27a..4386c367e 100644 --- a/jaeger/charts/linkerd-jaeger/values.yaml +++ b/jaeger/charts/linkerd-jaeger/values.yaml @@ -276,7 +276,7 @@ webhook: injectCaFromSecret: "" # -- collector service address for the proxies to send trace data. - # Points by default to the the linkerd-jaeger collector + # Points by default to the linkerd-jaeger collector collectorSvcAddr: collector.linkerd-jaeger:55678 # -- service account associated with the collector instance collectorSvcAccount: collector diff --git a/pkg/inject/inject.go b/pkg/inject/inject.go index a642b6526..aed727a0d 100644 --- a/pkg/inject/inject.go +++ b/pkg/inject/inject.go @@ -353,7 +353,7 @@ func (conf *ResourceConfig) GetPodPatch(injectProxy bool) ([]byte, error) { return res, nil } -// GetConfigAnnotation returns two values. The first value is the the annotation +// GetConfigAnnotation returns two values. The first value is the annotation // value for a given key. The second is used to decide whether or not the caller // should add the annotation. The caller should not add the annotation if the // resource already has its own. diff --git a/policy-controller/k8s/index/src/lib.rs b/policy-controller/k8s/index/src/lib.rs index fb7651e02..fae5f8132 100644 --- a/policy-controller/k8s/index/src/lib.rs +++ b/policy-controller/k8s/index/src/lib.rs @@ -14,7 +14,7 @@ //! [ Pod ] -> [ Port ] <- [ Server ] <- [ ServerAuthorization ] //! ``` //! -//! Lookups against this index are are initiated for a single pod & port. +//! Lookups against this index are initiated for a single pod & port. //! //! The Pod, Server, and ServerAuthorization indices are all scoped within a namespace index, as //! these resources cannot reference resources in other namespaces. This scoping helps to narrow the