Skip to content

Commit

Permalink
Drop --strict flag on ko (#5303)
Browse files Browse the repository at this point in the history
  • Loading branch information
markusthoemmes authored Apr 26, 2021
1 parent a0a3302 commit 83a1713
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e-common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -244,12 +244,12 @@ function unleash_duck() {
echo "enable debug logging"
cat test/config/config-logging.yaml | \
sed "s/namespace: ${KNATIVE_DEFAULT_NAMESPACE}/namespace: ${SYSTEM_NAMESPACE}/g" | \
ko apply --strict ${KO_FLAGS} -f - || return $?
ko apply ${KO_FLAGS} -f - || return $?

echo "unleash the duck"
cat test/config/chaosduck.yaml | \
sed "s/namespace: ${KNATIVE_DEFAULT_NAMESPACE}/namespace: ${SYSTEM_NAMESPACE}/g" | \
ko apply --strict ${KO_FLAGS} -f - || return $?
ko apply ${KO_FLAGS} -f - || return $?
}

# Teardown the Knative environment after tests finish.
Expand Down

0 comments on commit 83a1713

Please sign in to comment.