Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
60467ee
Move POC rest impl. to quota plubins.
dmatch01 Dec 14, 2022
7c07738
Merge branch 'main' into quota-management
dmatch01 Jan 23, 2023
8948ab7
Initial checkin of new quota management.
dmatch01 Feb 8, 2023
7cd8090
Merged latest from main.
dmatch01 Feb 8, 2023
0378855
Partial update to e2e script to enable instatiate 2 differently confi…
dmatch01 Feb 8, 2023
5bc0778
Added kuttl installation to e2e test.
dmatch01 Feb 27, 2023
cbd3d75
Synced version file.
dmatch01 Feb 27, 2023
b13e19c
Modified kuttl installation to include sudo for commands.
dmatch01 Feb 27, 2023
bf63654
Added startup of MCAD with Quota Management enabled
dmatch01 Feb 27, 2023
1c78b03
Added kuttl test command to e2e testing.
dmatch01 Feb 27, 2023
ac23d9b
Provided an alternative to the travis_wait command.
dmatch01 Feb 27, 2023
2d41a5d
Added full e2e testing back.
dmatch01 Feb 27, 2023
2c69afa
Added explicit kuttl config file.
dmatch01 Feb 27, 2023
e92994a
Set e2e test to above if kuttl test fails.
dmatch01 Feb 28, 2023
d6a6bbd
Uptick of release number.
dmatch01 Feb 28, 2023
e7d6013
Fix syntax error.
dmatch01 Mar 1, 2023
98a4d0b
Merge branch 'main' into quota-management
dmatch01 Mar 1, 2023
8357cd5
Added creation of test namespace to kuttl testing steps.
dmatch01 Mar 1, 2023
7282c64
Test kuttl failure in Travis run.
dmatch01 Mar 1, 2023
499a7c2
Test fix to make e2e test failure in background mode.
dmatch01 Mar 1, 2023
f23f333
Test fix to make e2e test failure in background mode.
dmatch01 Mar 1, 2023
3b67951
Test fix to make e2e test kuttle success run in background mode.
dmatch01 Mar 1, 2023
f2930b1
Fix job names to match file names and increased timeout for preemptio…
dmatch01 Mar 1, 2023
5a38984
Increase kuttle timeout.
dmatch01 Mar 1, 2023
92e79e3
Test fix to make e2e test failure in background mode.
dmatch01 Mar 1, 2023
854a598
Test fix to make e2e test failure in background mode.
dmatch01 Mar 1, 2023
bf8af82
Test fix to make e2e test kuttle success run in background mode.
dmatch01 Mar 1, 2023
879c47e
Use different color code for e2e PID message.
dmatch01 Mar 1, 2023
1e969c8
Debugging kuttl failure.
dmatch01 Mar 1, 2023
42afea9
Rearrange setup of kuttl test for more stability of test.
dmatch01 Mar 1, 2023
293c8ad
Introduced forced error test to validate new Travis workaround for lo…
dmatch01 Mar 2, 2023
612b410
Force final failure test for e2e kuttl test.
dmatch01 Mar 2, 2023
140c13b
Removed forced failure for Travis testing.
dmatch01 Mar 2, 2023
07e57df
Added delay step 3 to give time for MCAD to process subtrees.
dmatch01 Mar 13, 2023
0eab6eb
Merged upstream changes.
dmatch01 Mar 24, 2023
a2e6e30
Updated QM test to use Helm3
dmatch01 Mar 24, 2023
File filter

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
Test fix to make e2e test failure in background mode.
Signed-off-by: dmatch01 <darroyo@us.ibm.com>
  • Loading branch information
dmatch01 committed Mar 1, 2023
commit f23f33398b77da1da069ec366711ff0286bdd5bd
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ script:
# use 'travis_wait n' which unfortunately does not stream output until the very end so monitoring the Travis log
# during runtime is not possible.
- make run-e2e &
- PID=$!
- PID=$! && echo "make run e2e pid=${PID}"
- while [ -e /proc/${PID} ]; do echo -n "." && sleep 30; done
- wait $PID
- CODE=$?
- return ${CODE}
- CODE=$? && echo "make run e2e pid=${PID} return code=${CODE}"
- exit ${CODE}
2 changes: 1 addition & 1 deletion hack/run-e2e-kind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ sudo curl -sSLf --output /tmp/kubectl-kuttl https://github.com/kudobuilder/kuttl
# check if kind installed
function check-prerequisites {
echo "checking prerequisites"
which kind2 >/dev/null 2>&1
which kind >/dev/null 2>&1
if [[ $? -ne 0 ]]; then
echo "kind not installed, exiting."
exit 1
Expand Down