From e1c6801a3f72fab71bde9e0ad177586292b93fc3 Mon Sep 17 00:00:00 2001 From: niam0522 Date: Wed, 18 Dec 2024 15:52:21 +0530 Subject: [PATCH] KME0014 was missing --- documentation/Troubleshooting.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/documentation/Troubleshooting.md b/documentation/Troubleshooting.md index 2aaf982c7..afb32e3bd 100644 --- a/documentation/Troubleshooting.md +++ b/documentation/Troubleshooting.md @@ -16,6 +16,7 @@ This section provides troubleshooting information for Kubemarine and Kubernetes - [KME0011: Redefined Key in Third-Party Configuration](#kme0011-redefined-key-in-third-party-configuration) - [KME0012: Procedure Restricted by OS Family Compatibility](#kme0012-procedure-restricted-by-os-family-compatibility) - [KME0013: Redefined Key in Containerd Configuration](#kme0013-redefined-key-in-containerd-configuration) + - [KME0014: Invalid Helm Chart URL](#kme0014-invalid-helm-chart-url) - [Troubleshooting Tools](#troubleshooting-tools) - [etcdctl Script](#etcdctl-script) - [Troubleshooting Kubernetes Generic Issues](#troubleshooting-kubernetes-generic-issues) @@ -462,6 +463,31 @@ Not applicable. >**Note** >If you resolve the problem, consider [opening a new PR](https://github.com/Netcracker/KubeMarine/pulls) to document your solution, which will help others in the community. +## KME0014: Invalid Helm Chart URL + +### Description +This error occurs when the provided Helm chart URL does not return the expected content type in the specified file. If the URL is pointing to a private repository, the correct authentication may be missing. + +### Alerts +- **Alert:** Helm chart URL does not return the expected content. + +### Stack trace(s) +Not applicable. + +### How to solve +1. Verify the Helm chart URL. +2. Ensure the URL returns the correct content type in the file located at destination. +3. If the repository is private, check that the correct authentication (such as a token or credentials) is provided. +4. Test the URL manually to confirm it is accessible and returning the expected content. +5. Re-run the procedure after validating the URL and authentication. + +### Recommendations +- Always verify the Helm chart URL before using it in your configuration. +- Ensure proper authentication is provided for private repositories to avoid access issues. + +>**Note** +>If you resolve the problem, consider [opening a new PR](https://github.com/Netcracker/KubeMarine/pulls) to document your solution, which will help others in the community. + # Troubleshooting Tools