Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing troubleshooting slugs #1882

Merged
merged 2 commits into from
Dec 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 25 additions & 1 deletion linkerd.io/content/2-edge/tasks/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -1084,7 +1084,21 @@ Example warning:
This happens when one of the control plane pods doesn't have at least two
replicas running. This is likely caused by insufficient node resources.

### The "extensions" checks {#extensions}
## Extensions {#extensions}

### √ namespace configuration for extensions {#l5d-extension-namespaces}

Linkerd's extension model requires that each namespace that "owns" an extension
to be labelled with the extension name. For example, the namespace viz is
installed in would be labelled with `linkerd.io/extension=viz`. This warning is
triggered if an extension value is used for the label key more than once across
the cluster.

To resolve this warning, ensure that the `linkerd.io/extension` namespace label
does not have any dupliate values, indicating that an extension has been
installed more than once in different namespaces.

### Extensions checks

When any [Extensions](../extensions/) are installed, The Linkerd binary tries to
invoke `check --output json` on the extension binaries. It is important that the
Expand Down Expand Up @@ -1313,6 +1327,16 @@ Example error:

Make sure all the link objects are specified in the expected format.

### √ Link and CLI versions match {#l5d-multicluster-links-version}

This warning indicates that there are Link resources which do not match the
version of the CLI. This usually means that the CLI has been upgraded but that
the Link resources have not and certain features may not be supported on those
Links until they are upgraded.

To upgrade a Link, regenerate it. Refer to the [multicluster docs](../multicluster/#linking-the-clusters)
for instructions on how to do this.

### √ remote cluster access credentials are valid {#l5d-smc-target-clusters-access}

Example error:
Expand Down
Loading