Skip to content
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
11 changes: 11 additions & 0 deletions ct-install.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Configuration for chart-testing (ct) install command
# See: https://github.com/helm/chart-testing

chart-dirs:
- deploy/charts
validate-maintainers: false
remote: origin
target-branch: main

# Install all charts, not just changed ones.
# This is required because the operator chart depends on the operator-crds chart.
# Without 'all: true', ct only installs charts that have changed in the PR.
# If a PR only changes the operator chart (not operator-crds), the operator
# will fail to start because the CRDs are not installed in the test cluster.
# The operator requires CRDs at startup to create field indexes (e.g., spec.groupRef).
all: true
Loading