-
Notifications
You must be signed in to change notification settings - Fork 64
Upgrade the golang version for the quota-management branch. #313
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
Merged
asm582
merged 42 commits into
project-codeflare:quota-management
from
z103cb:quota-management-go-update
May 2, 2023
Merged
Changes from all commits
Commits
Show all changes
42 commits
Select commit
Hold shift + click to select a range
c03d7c6
update (#298)
kevin85421 4e8c15a
Upgraded the golang version
z103cb 2413b9c
Updates to go.mod
z103cb 92080d4
Removed unused package.
z103cb b8bf641
e2e test script updates
z103cb 8f6d3a0
Queue.go updates
z103cb a491587
Updates to the e2e script
z103cb 0fb9e05
Updates to to local host setup
z103cb a83bcf7
Changes to the run-e2e-kind.sh locally (#290)
z103cb cc204e3
Downgraded go to version 1.18 to allow for use of ubi images.
z103cb 0b8d563
Downgraded travis ubuntu distro
z103cb 70cfc8b
Added use of docker builder using ubi8 images
z103cb 394534f
Cleaned up the obsolete build scripts
z103cb d587352
avoid preempt of failed co-schd pods (#317)
asm582 bc8fca0
Update CONTROLLER_VERSION
Maxusmusti 50e07ec
Updates to travis and devcontainer
z103cb eec1ca3
Small updates to the run-e2e test
z103cb b4033c7
Updated go-restful dependency
z103cb 8086c98
More go.mod updates
z103cb d5e9b09
Added back in the removal of taints from head node
z103cb 36215a7
Remove whitesapce
z103cb 3c2d181
Small corrections.
z103cb 0499084
Refactoring of env-setup
z103cb 40df1d9
moe arch issues with the kuttl binnary
z103cb c6fc8ad
Updated the go version in go.mod (#316)
z103cb 301e8f8
Create 1.29.57 release
anishasthana 996e700
Adding Performance test script (#289)
jbusche 38b4d07
fix typo (#326)
lionelvillard 2bde9da
Document updates.
z103cb e738a4c
remove invalid characters from branch name an replace with - (#328)
KPostOffice 049d0e5
Bump golang.org/x/text from 0.3.4 to 0.3.8 (#321)
dependabot[bot] ea375fc
Bump golang.org/x/net from 0.0.0-20210405180319-a5a99cb37ef4 to 0.7.0…
dependabot[bot] 35216df
Bump github.com/gogo/protobuf from 1.3.1 to 1.3.2 (#323)
dependabot[bot] 53ede34
Added .devcontainer to gitignore
z103cb 4feef77
Codereview comments.
z103cb b0c2e61
Bump golang.org/x/crypto from 0.0.0-20201002170205-7f63de1d35b0 to 0.…
dependabot[bot] ee4acd9
Fixes to the setup part of the script.
z103cb 970dd12
change schedSpec to schedulingSpec and note M1 image for echo server …
sunya-ch 99bd557
Changes user to 1000 (#329)
jbusche 28fe1f4
Address race condition in XController variable (#330)
z103cb 528417a
Merge branch 'main' into quota-management-go-update
z103cb 39bd977
Fix bad merge.
z103cb 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
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -125,3 +125,9 @@ kubernetes.tar.gz | |
/bazel-* | ||
*.pyc | ||
|
||
# .devcontainer files | ||
.devcontainer | ||
|
||
# .devcontainer files | ||
.devcontainer | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.29.55 | ||
1.29.58 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
FROM registry.access.redhat.com/ubi8/go-toolset:1.18.10-1 AS BUILDER | ||
ARG GO_BUILD_ARGS | ||
WORKDIR /workdir | ||
USER root | ||
|
||
COPY Makefile Makefile | ||
COPY go.mod go.mod | ||
COPY go.sum go.sum | ||
COPY cmd cmd | ||
COPY pkg pkg | ||
COPY hack hack | ||
COPY CONTROLLER_VERSION CONTROLLER_VERSION | ||
|
||
RUN cd /workdir && curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/$(go env GOARCH)/kubectl && chmod +x kubectl | ||
ENV GO_BUILD_ARGS=$GO_BUILD_ARGS | ||
RUN echo "Go build args: $GO_BUILD_ARGS" && \ | ||
make mcad-controller | ||
|
||
FROM registry.access.redhat.com/ubi8/ubi-minimal:latest | ||
|
||
COPY --from=BUILDER /workdir/_output/bin/mcad-controller /usr/local/bin | ||
COPY --from=BUILDER /workdir/kubectl /usr/local/bin | ||
|
||
RUN true \ | ||
&& microdnf update \ | ||
&& microdnf clean all \ | ||
&& true | ||
|
||
WORKDIR /usr/local/bin | ||
|
||
RUN chown -R 1000:1000 /usr/local/bin | ||
|
||
USER 1000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.