You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The helm template command will render all templates, including any related to testing. So when the service bundle provisions, it ends up creating those resources.
This image should have a way to exclude test-related resources from provision and deprovision.
One possibility is to just identify any pod definitions that have the annotation helm.sh/hooks: test-success or helm.sh/hooks: test-failure and filter them out of the manifest.
The text was updated successfully, but these errors were encountered:
Helm charts can have one or more templates for testing purposes. This is documented here:
https://docs.helm.sh/developing_charts/#chart-tests
The
helm template
command will render all templates, including any related to testing. So when the service bundle provisions, it ends up creating those resources.This image should have a way to exclude test-related resources from provision and deprovision.
One possibility is to just identify any pod definitions that have the annotation
helm.sh/hooks: test-success
orhelm.sh/hooks: test-failure
and filter them out of the manifest.The text was updated successfully, but these errors were encountered: