From 4892137ee8cda7b5c8e5be2ca9e996c6e472b7ae Mon Sep 17 00:00:00 2001 From: Jayesh Srivastava Date: Tue, 2 May 2023 13:41:04 +0530 Subject: [PATCH] PSS 1913: Update go --- Dockerfile | 2 +- Makefile | 2 +- go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 48a93a67..90bf9a6c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:experimental -FROM golang:1.20.2-alpine3.17 as dev +FROM golang:1.19.8-alpine3.17 as dev RUN apk add --no-cache git ca-certificates make RUN adduser -D appuser COPY . /src/ diff --git a/Makefile b/Makefile index 45aadfdc..f6fff929 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ REPOSITORY = plndr IMAGE_NAME := kube-vip IMG_URL ?= gcr.io/spectro-dev-public/release -IMG_TAG ?= spectro-v0.4.0-v1beta1-20230316.1154 +IMG_TAG ?= spectro-v0.4.0-v1beta1-20230502 IMG ?= ${IMG_URL}/${IMAGE_NAME}:${IMG_TAG} RELEASE_REGISTRY := gcr.io/spectro-images-public/release/kube-vip diff --git a/go.mod b/go.mod index 8a1d6bd8..03cc8093 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/kube-vip/kube-vip -go 1.20 +go 1.19 require ( github.com/cloudflare/ipvs v0.8.0