## Description Hardcoded image reference was missed in the previous Bitnami image fix. see: https://github.com/bitnami/charts/issues/35256 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 <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - New Features - Init container images for Redis, MongoDB, and PostgreSQL now respect chart values for registry, repository, and tag, allowing customization and private registry support. Defaults are no longer hardcoded; behavior for explicitly provided custom images remains unchanged. This helps with compliance, air-gapped deployments, and consistency. - Chores - Bumped Helm chart to 3.6.5. <!-- end of auto-generated comment: release notes by coderabbit.ai --> |
||
|---|---|---|
| .. | ||
| __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.