Search⌘ K
AI Features

Lint a Chart

Explore the use of the helm lint command to validate and troubleshoot Helm charts by detecting syntax issues and YAML errors. Understand how to improve chart quality before deployment while recognizing the limits of linting and the need for additional security and best practice tools.

We'll cover the following...

The helm lint command

Many people consider writing tests to be the first thing to do to ensure the quality of a Helm chart. The next step would be to scan it using static code analysis tools to verify that there are no errors, security vulnerabilities, and that we’ve met all the best practices.

If we’re using VS Code, IntelliJ IDEA, or any other popular ...