File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 23
23
steps :
24
24
- name : " ubuntu"
25
25
args : ["mkdir", "-p", "/workspace/_output/linux_amd64"]
26
- - name : " gcr.io/kubebuilder/thirdparty-linux:1.12.3 "
26
+ - name : " gcr.io/kubebuilder/thirdparty-linux:1.13.1 "
27
27
args : ["tar", "-xzvf", "/kubebuilder_linux_amd64.tar.gz"]
28
28
dir : " _output/linux_amd64"
29
29
- name : " ubuntu"
30
30
args : ["mkdir", "-p", "/workspace/_output/darwin_amd64"]
31
- - name : " gcr.io/kubebuilder/thirdparty-darwin:1.12.3 "
31
+ - name : " gcr.io/kubebuilder/thirdparty-darwin:1.13.1 "
32
32
args : ["tar", "-xzvf", "/kubebuilder_darwin_amd64.tar.gz"]
33
33
dir : " _output/darwin_amd64"
34
34
- name : " gcr.io/kubebuilder/goreleaser_with_go_1.11:0.0.1"
35
35
args : ["bash", "build/build_kubebuilder.sh", "--snapshot"]
36
36
env :
37
- - ' KUBERNETES_VERSION=1.12.3 '
37
+ - ' KUBERNETES_VERSION=1.13.1 '
Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
15
15
steps :
16
- - name : " gcr.io/kubebuilder/thirdparty-${_GOOS}:1.12.3 "
16
+ - name : " gcr.io/kubebuilder/thirdparty-${_GOOS}:1.13.1 "
17
17
args : ["cp", "/kubebuilder_${_GOOS}_${_GOARCH}.tar.gz", "/workspace/kubebuilder-${TAG_NAME}-${_GOOS}-${_GOARCH}.tar.gz"]
18
18
env :
19
19
- ' GOOS=${_GOOS}'
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ RUN go get github.com/jteeuwen/go-bindata/go-bindata
26
26
ENV CGO 0
27
27
ENV DEST /usr/local/kubebuilder/bin/
28
28
RUN mkdir -p $DEST || echo ""
29
- RUN git clone https://github.com/kubernetes/kubernetes $GOPATH/src/k8s.io/kubernetes --depth=1 -b v1.12.3
29
+ RUN git clone https://github.com/kubernetes/kubernetes $GOPATH/src/k8s.io/kubernetes --depth=1 -b v1.13.1
30
30
WORKDIR /go/src/k8s.io/kubernetes
31
31
32
32
# Build for linux first otherwise it won't work for darwin - :(
@@ -36,11 +36,11 @@ ENV KUBE_BUILD_PLATFORMS darwin/amd64
36
36
RUN make WHAT=cmd/kube-apiserver
37
37
RUN cp _output/local/bin/$KUBE_BUILD_PLATFORMS/kube-apiserver $DEST
38
38
39
- RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.12.3 /bin/darwin/amd64/kubectl
39
+ RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.13.1 /bin/darwin/amd64/kubectl
40
40
RUN chmod +x kubectl
41
41
RUN cp kubectl $DEST
42
42
43
- ENV ETCD_VERSION="3.3.10 "
43
+ ENV ETCD_VERSION="3.3.11 "
44
44
ENV ETCD_DOWNLOAD_FILE="etcd-v${ETCD_VERSION}-darwin-amd64.zip"
45
45
RUN curl -LO https://github.com/coreos/etcd/releases/download/v${ETCD_VERSION}/etcd-v${ETCD_VERSION}-darwin-amd64.zip -o ${ETCD_DOWNLOAD_FILE}
46
46
RUN unzip -o ${ETCD_DOWNLOAD_FILE}
Original file line number Diff line number Diff line change @@ -26,15 +26,15 @@ ENV CGO 0
26
26
ENV DEST /usr/local/kubebuilder/bin/
27
27
RUN mkdir -p $DEST || echo ""
28
28
29
- RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.12.3 /bin/linux/amd64/kubectl
29
+ RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.13.1 /bin/linux/amd64/kubectl
30
30
RUN chmod +x kubectl
31
31
RUN cp kubectl $DEST
32
32
33
- RUN curl -LO https://dl.k8s.io/v1.12.3 /kubernetes-server-linux-amd64.tar.gz
33
+ RUN curl -LO https://dl.k8s.io/v1.13.1 /kubernetes-server-linux-amd64.tar.gz
34
34
RUN tar xzf kubernetes-server-linux-amd64.tar.gz
35
35
RUN cp kubernetes/server/bin/kube-apiserver $DEST
36
36
37
- ENV ETCD_VERSION="3.3.10 "
37
+ ENV ETCD_VERSION="3.3.11 "
38
38
ENV ETCD_DOWNLOAD_FILE="etcd-v${ETCD_VERSION}-linux-amd64.tar.gz"
39
39
RUN curl -LO https://github.com/coreos/etcd/releases/download/v${ETCD_VERSION}/etcd-v${ETCD_VERSION}-linux-amd64.tar.gz -o ${ETCD_DOWNLOAD_FILE}
40
40
RUN tar xzf ${ETCD_DOWNLOAD_FILE}
You can’t perform that action at this time.
0 commit comments