Updated the chart version from 3.6.2 to 3.6.3 in the Helm test snapshots
to reflect the latest changes and ensure consistency across deployments.
## Description
> [!TIP]
> _Add a TL;DR when the description is longer than 500 words or
extremely technical (helps the content, marketing, and DevRel team)._
>
> _Please also include relevant motivation and context. List any
dependencies that are required for this change. Add links to Notion,
Figma or any other documents that might be relevant to the PR._
Fixes #`Issue Number`
_or_
Fixes `Issue URL`
> [!WARNING]
> _If no issue exists, please create an issue first, and check with the
maintainers if the issue is valid._
## Automation
/ok-to-test tags=""
### 🔍 Cypress test results
<!-- This is an auto-generated comment: Cypress test results -->
> [!CAUTION]
> If you modify the content in this section, you are likely to disrupt
the CI result for your PR.
<!-- end of auto-generated comment: Cypress test results -->
## Communication
Should the DevRel and Marketing teams inform users about this change?
- [ ] Yes
- [ ] No
|
||
|---|---|---|
| .. | ||
| __snapshot__ | ||
| defaults_snapshot_test.yaml | ||
| README.md | ||
| runAsUser_test.yaml | ||
Helm Chart Unit Tests
This directory contains unit tests for our Helm charts using helm-unittest, a BDD-style testing framework for Helm charts.
Running Tests Locally
You can run the tests locally using Docker:
docker run -ti --rm -v $(pwd):/apps helmunittest/helm-unittest .
Snapshot Testing
Our tests use snapshot testing to validate the rendered Kubernetes manifests. This ensures that any changes to the defaults are intentional and reviewed.
Updating Snapshots
When making changes that affect the rendered output (like updating labels or other metadata), you'll need to update the snapshots. This is particularly important during releases when labels are updated.
To update snapshots, run the tests with the -u flag:
docker run -ti --rm -v $(pwd):/apps helmunittest/helm-unittest -u .
Important: Always review the changes in the snapshots before committing them to ensure they match your expectations.
Documentation
For more information about helm-unittest, including:
- Writing test cases
- Available assertions
- Test suite configuration
- Best practices
Please refer to the official helm-unittest documentation.