Skip to content

Commit

Permalink
chore(*) migrate to go 1.15.0
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolay Nikolaev <[email protected]>
  • Loading branch information
Nikolay Nikolaev committed Aug 17, 2020
1 parent c399090 commit 34a4e16
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ version: 2.1 # Adds support for executors, parameterized jobs, etc
reusable:

constants:
- &go_version "1.14.6"
- &go_version "1.15.0"

docker_images:
- &golang_image "golang:1.14.6"
- &circleci_golang_image "circleci/golang:1.14.6"
- &golang_image "golang:1.15.0"
- &circleci_golang_image "circleci/golang:1.15.0"

vm_images:
- &ubuntu_vm_image "ubuntu-1604:202004-01"
Expand Down
2 changes: 1 addition & 1 deletion mk/dev.mk
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ GINKGO_VERSION := v1.12.0
CI_KUBEBUILDER_VERSION ?= 2.0.0
CI_MINIKUBE_VERSION ?= v1.9.2
CI_KUBECTL_VERSION ?= v1.18.2
CI_TOOLS_IMAGE ?= circleci/golang:1.14.6
CI_TOOLS_IMAGE ?= circleci/golang:1.15.0

CI_TOOLS_DIR ?= $(HOME)/bin
GOPATH_DIR := $(shell go env GOPATH | awk -F: '{print $$1}')
Expand Down
2 changes: 1 addition & 1 deletion pkg/plugins/resources/k8s/native/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM golang:1.14.6 as builder
FROM golang:1.15.0 as builder

WORKDIR /workspace
# Copy the Go Modules manifests
Expand Down
4 changes: 2 additions & 2 deletions tools/releases/dockerfiles/Dockerfile.kuma-init
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ubuntu:bionic as builder

ENV GOVERSION 1.14.6
ENV GOVERSION 1.15.0
ENV GOROOT /opt/go
ENV GOPATH /root/.go

Expand All @@ -26,4 +26,4 @@ COPY $KUMA_ROOT/tools/releases/templates/LICENSE /kuma
COPY $KUMA_ROOT/tools/releases/templates/NOTICE-kuma-init /kuma/NOTICE
COPY $KUMA_ROOT/tools/releases/templates/README /kuma

ENTRYPOINT ["./kuma-iptables"]
ENTRYPOINT ["./kuma-iptables"]

0 comments on commit 34a4e16

Please sign in to comment.