Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding File Name and Line Number to Logs #72

Merged
merged 23 commits into from
Jul 20, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
moved full run to script
jaiveerk committed Jun 6, 2023
commit 1c5b1467ad4e1cbbd1cea3c52de6eced7833691c
21 changes: 1 addition & 20 deletions Makefile
Original file line number Diff line number Diff line change
@@ -53,26 +53,7 @@ run-e2e:

# runs full test suite for all scenarios
all: clean
echo "running all"
make private-cluster-public-dns
make deploy-operator
make push
make e2e

make private-cluster-private-dns
make deploy-operator
make e2e

echo "beginning public cluster tests..."
make clean
make public-cluster-public-dns
make push
make deploy-operator
make e2e

make public-cluster-private-dns
make deploy-operator
make e2e
./devenv/scripts/run_all.sh



21 changes: 21 additions & 0 deletions devenv/scripts/run_all.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
echo "running all"
make private-cluster-public-dns
make deploy-operator
make push
make e2e

make private-cluster-private-dns
make deploy-operator
make push
make e2e

echo "beginning public cluster tests..."
make clean
make public-cluster-public-dns
make push
make deploy-operator
make e2e

make public-cluster-private-dns
make deploy-operator
make e2e