Merge pull request #133503 from p0lyn0mial/upstream-disable-panic-watch-decode-err-for-integration

test-integration: set KUBE_PANIC_WATCH_DECODE_ERROR to false
This commit is contained in:
Kubernetes Prow Robot 2025-10-31 02:52:03 -07:00 committed by GitHub
commit 710c80f72a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -30,8 +30,9 @@ set -x
KUBE_CACHE_MUTATION_DETECTOR="${KUBE_CACHE_MUTATION_DETECTOR:-true}"
export KUBE_CACHE_MUTATION_DETECTOR
# panic the server on watch decode errors since they are considered coder mistakes
KUBE_PANIC_WATCH_DECODE_ERROR="${KUBE_PANIC_WATCH_DECODE_ERROR:-true}"
# default set to "false" to avoid panic on decode errors.
# integration tests intentionally insert data that cannot be decoded.
KUBE_PANIC_WATCH_DECODE_ERROR="${KUBE_PANIC_WATCH_DECODE_ERROR:-false}"
export KUBE_PANIC_WATCH_DECODE_ERROR
KUBE_INTEGRATION_TEST_MAX_CONCURRENCY=${KUBE_INTEGRATION_TEST_MAX_CONCURRENCY:-"-1"}