Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
c03d7c6
update (#298)
kevin85421 Mar 30, 2023
4e8c15a
Upgraded the golang version
z103cb Apr 4, 2023
2413b9c
Updates to go.mod
z103cb Apr 5, 2023
92080d4
Removed unused package.
z103cb Apr 5, 2023
b8bf641
e2e test script updates
z103cb Apr 5, 2023
8f6d3a0
Queue.go updates
z103cb Mar 27, 2023
a491587
Updates to the e2e script
z103cb Apr 5, 2023
0fb9e05
Updates to to local host setup
z103cb Apr 5, 2023
a83bcf7
Changes to the run-e2e-kind.sh locally (#290)
z103cb Apr 5, 2023
cc204e3
Downgraded go to version 1.18 to allow for use of ubi images.
z103cb Apr 6, 2023
0b8d563
Downgraded travis ubuntu distro
z103cb Apr 7, 2023
70cfc8b
Added use of docker builder using ubi8 images
z103cb Apr 7, 2023
394534f
Cleaned up the obsolete build scripts
z103cb Apr 7, 2023
d587352
avoid preempt of failed co-schd pods (#317)
asm582 Apr 7, 2023
bc8fca0
Update CONTROLLER_VERSION
Maxusmusti Apr 7, 2023
50e07ec
Updates to travis and devcontainer
z103cb Apr 10, 2023
eec1ca3
Small updates to the run-e2e test
z103cb Apr 10, 2023
b4033c7
Updated go-restful dependency
z103cb Apr 10, 2023
8086c98
More go.mod updates
z103cb Apr 10, 2023
d5e9b09
Added back in the removal of taints from head node
z103cb Apr 10, 2023
36215a7
Remove whitesapce
z103cb Apr 10, 2023
3c2d181
Small corrections.
z103cb Apr 10, 2023
0499084
Refactoring of env-setup
z103cb Apr 10, 2023
40df1d9
moe arch issues with the kuttl binnary
z103cb Apr 10, 2023
c6fc8ad
Updated the go version in go.mod (#316)
z103cb Apr 13, 2023
301e8f8
Create 1.29.57 release
anishasthana Apr 13, 2023
996e700
Adding Performance test script (#289)
jbusche Apr 18, 2023
38b4d07
fix typo (#326)
lionelvillard Apr 18, 2023
2bde9da
Document updates.
z103cb Apr 19, 2023
e738a4c
remove invalid characters from branch name an replace with - (#328)
KPostOffice Apr 19, 2023
049d0e5
Bump golang.org/x/text from 0.3.4 to 0.3.8 (#321)
dependabot[bot] Apr 19, 2023
ea375fc
Bump golang.org/x/net from 0.0.0-20210405180319-a5a99cb37ef4 to 0.7.0…
dependabot[bot] Apr 20, 2023
35216df
Bump github.com/gogo/protobuf from 1.3.1 to 1.3.2 (#323)
dependabot[bot] Apr 20, 2023
53ede34
Added .devcontainer to gitignore
z103cb Apr 20, 2023
4feef77
Codereview comments.
z103cb Apr 20, 2023
b0c2e61
Bump golang.org/x/crypto from 0.0.0-20201002170205-7f63de1d35b0 to 0.…
dependabot[bot] Apr 20, 2023
ee4acd9
Fixes to the setup part of the script.
z103cb Apr 21, 2023
970dd12
change schedSpec to schedulingSpec and note M1 image for echo server …
sunya-ch Apr 24, 2023
99bd557
Changes user to 1000 (#329)
jbusche Apr 26, 2023
28fe1f4
Address race condition in XController variable (#330)
z103cb Apr 30, 2023
528417a
Merge branch 'main' into quota-management-go-update
z103cb May 2, 2023
39bd977
Fix bad merge.
z103cb May 2, 2023
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
Remove whitesapce
  • Loading branch information
z103cb committed Apr 10, 2023
commit 36215a7ca89d665ad8751c0780afce6faa72ff8d
2 changes: 1 addition & 1 deletion hack/run-e2e-kind.sh
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Quite a bit of changes to the file, thus a bit difficult to verify/validate. But I will run locally to test and check Travis. Thanks for the clean up!

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dmatch01 you are welcome.

I might have went a little overboard with the refactoring :)

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No worries at all. This is really great! Did the make run-e2e and ran into a few things starting here:

$ make run-e2e
"---"
"MAKE GLOBAL VARIABLES:"
"  "BIN_DIR="_output/bin"
"  "GIT_BRANCH="quota-management-go-update"
"  "RELEASE_VER="v1.29.55"
"  "TAG="quota-management-go-update-v1.29.55"
"---"
# Check for invalid tag name
t=quota-management-go-update-v1.29.55 && [ ${#t} -le 128 ] || { echo "Target name $t has 128 or more chars"; false; }
echo "Running e2e with MCAD local image: mcad-controller quota-management-go-update-v1.29.55 IfNotPresent."
Running e2e with MCAD local image: mcad-controller quota-management-go-update-v1.29.55 IfNotPresent.
hack/run-e2e-kind.sh mcad-controller quota-management-go-update-v1.29.55 IfNotPresent
CPU architecture for downloads is: amd64
Password:

Will capture the items in separate comments.

Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export KUTTL_TEST_OPT="--config ${ROOT_DIR}/kuttl-test.yaml"
#export KUTTL_TEST_OPT="--config ${ROOT_DIR}/kuttl-test.yaml --skip-delete"

function update_test_host {
if [[ "$(uname -o)" != "GNU/Linux " ]]
if [[ "$(uname -o)" != "GNU/Linux" ]]
then
echo -n "Running on: " && uname -o
# this function applies only to linux hosts
Expand Down