Anton Zharovtsev
Anton Zharovtsev
https://github.com/sorintlab/stolon/pull/774
Got the same issue with werf v1.2.199. `werf helm test...` breakes the release and `werf converge...` cannot deploy the release one more.
Just tested multiple werf versions and found that v1.2.109 works fine and v1.2.110 does not work. Testing commands: ``` werf converge --repo=localhost:5000/${MY_REPO} werf helm test --filter name=${MY_TESTNAME} werf converge --repo=localhost:5000/${MY_REPO}...
B.t.w. this code works: ``` werf converge --repo=localhost:5000/${MY_PROJECT} --values .helm/run-test.yaml werf helm test --filter name=${WERF_RELEASE}-my-test --timeout 20m --status-progress-period=-1 --hooks-status-progress-period=-1 ${WERF_RELEASE} || true helm uninstall ${WERF_RELEASE} ``` Note: the last command...