Skip to content

Commit a2fd609

Browse files
committed
🏃 updated k8s version to 1.13.1 in build scripts
1 parent 64ddaf7 commit a2fd609

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

build/cloudbuild.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,18 @@ steps:
2525
args: [fetch, --tags, --depth=100]
2626
- name: "ubuntu"
2727
args: ["mkdir", "-p", "/workspace/_output/linux_amd64"]
28-
- name: "gcr.io/kubebuilder/thirdparty-linux:1.12.3"
28+
- name: "gcr.io/kubebuilder/thirdparty-linux:1.13.1"
2929
args: ["tar", "-xzvf", "/kubebuilder_linux_amd64.tar.gz"]
3030
dir: "_output/linux_amd64"
3131
- name: "ubuntu"
3232
args: ["mkdir", "-p", "/workspace/_output/darwin_amd64"]
33-
- name: "gcr.io/kubebuilder/thirdparty-darwin:1.12.3"
33+
- name: "gcr.io/kubebuilder/thirdparty-darwin:1.13.1"
3434
args: ["tar", "-xzvf", "/kubebuilder_darwin_amd64.tar.gz"]
3535
dir: "_output/darwin_amd64"
3636
- name: "gcr.io/kubebuilder/goreleaser_with_go_1.11:0.0.1"
3737
args: ["bash", "build/build_kubebuilder.sh"]
3838
env:
39-
- 'KUBERNETES_VERSION=1.12.3'
39+
- 'KUBERNETES_VERSION=1.13.1'
4040
secretEnv: ['GITHUB_TOKEN']
4141
secrets:
4242
- kmsKeyName: projects/kubebuilder/locations/global/keyRings/kubebuilder-gh-tokens/cryptoKeys/gh-release-token

build/cloudbuild_snapshot.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,18 @@
2323
steps:
2424
- name: "ubuntu"
2525
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"
2727
args: ["tar", "-xzvf", "/kubebuilder_linux_amd64.tar.gz"]
2828
dir: "_output/linux_amd64"
2929
- name: "ubuntu"
3030
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"
3232
args: ["tar", "-xzvf", "/kubebuilder_darwin_amd64.tar.gz"]
3333
dir: "_output/darwin_amd64"
3434
- name: "gcr.io/kubebuilder/goreleaser_with_go_1.11:0.0.1"
3535
args: ["bash", "build/build_kubebuilder.sh", "--snapshot"]
3636
env:
37-
- 'KUBERNETES_VERSION=1.12.3'
37+
- 'KUBERNETES_VERSION=1.13.1'
3838
- name: 'gcr.io/cloud-builders/gsutil'
3939
args: ['-h', 'Content-Type:application/gzip', 'cp', '-a', 'public-read', 'dist/kubebuilder_master_linux_amd64.tar.gz', 'gs://kubebuilder-release/kubebuilder_master_linux_amd64.tar.gz']
4040
- name: 'gcr.io/cloud-builders/gsutil'

common.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ cd "$base_dir" || {
4242
}
4343

4444
# k8s_version=1.11.0
45-
k8s_version=1.12.3
45+
k8s_version=1.13.1
4646
goarch=amd64
4747
goos="unknown"
4848

0 commit comments

Comments
 (0)