-
Notifications
You must be signed in to change notification settings - Fork 820
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
Update K8s Code Generation Tooling to 1.12 #928
Update K8s Code Generation Tooling to 1.12 #928
Conversation
Build Succeeded 👏 Build Id: d6016d5f-a51a-4c74-b936-1d45b0650e65 The following development artifacts have been built, and will exist for the next 30 days:
A preview of the website (the last 30 builds are retained): To install this version:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One nit. Feel free to fix or ignore and then merge.
build/build-image/Dockerfile
Outdated
chmod go+rx ./kubectl && \ | ||
mv ./kubectl /usr/local/bin/kubectl | ||
RUN echo "source <(kubectl completion bash)" >> /root/.bashrc | ||
|
||
# install the release branch of the code generator tools | ||
RUN mkdir -p /go/src && cd /go/src && mkdir -p k8s.io && cd k8s.io && \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I realize it was written this way before, but I don't understand the multiple mkdir
commands, mkdir -p
will create intermediate directories so a single mkdir -p /go/src/k8s.io && cd /go/src/k8s.io \
should do the trick.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oooh! Good point. I'll make this change and then merge.
0dfb132
to
783cb43
Compare
Also regenerated the CRD clients with the updated tooling. Needed to build a udp-server:0.14 Work for googleforgames#717
783cb43
to
6433823
Compare
Build Succeeded 👏 Build Id: 603c13d8-368d-4e47-abfc-371cb0f657d2 The following development artifacts have been built, and will exist for the next 30 days:
A preview of the website (the last 30 builds are retained): To install this version:
|
Also regenerated the CRD clients with the updated tooling.
Needed to build a udp-server:0.14
Work for #717