etcd version monitor build go version update to 1.19.9

Signed-off-by: Humble Chirammal <humble.devassy@gmail.com>
This commit is contained in:
Humble Chirammal 2023-05-11 10:20:44 +05:30
parent 0ae902fca4
commit bfb4f8b707
2 changed files with 3 additions and 3 deletions

View File

@ -88,7 +88,7 @@ dependencies:
# From https://github.com/etcd-io/etcd/blob/main/Makefile # From https://github.com/etcd-io/etcd/blob/main/Makefile
- name: "golang: etcd release version" - name: "golang: etcd release version"
version: 1.19.8 # https://github.com/etcd-io/etcd/blob/main/CHANGELOG/CHANGELOG-3.5.md version: 1.19.9 # https://github.com/etcd-io/etcd/blob/main/CHANGELOG/CHANGELOG-3.5.md
refPaths: refPaths:
- path: cluster/images/etcd/Makefile - path: cluster/images/etcd/Makefile
match: 'GOLANG_VERSION := \d+.\d+(alpha|beta|rc)?\.?(\d+)?' match: 'GOLANG_VERSION := \d+.\d+(alpha|beta|rc)?\.?(\d+)?'

View File

@ -15,10 +15,10 @@
# Build the etcd-version-monitor image # Build the etcd-version-monitor image
# #
# Usage: # Usage:
# [GOLANG_VERSION=1.8.3] [REGISTRY=staging-k8s.gcr.io] [TAG=test] make (build|push) # [GOLANG_VERSION=1.19.9] [REGISTRY=staging-k8s.gcr.io] [TAG=test] make (build|push)
# TODO(shyamjvs): Support architectures other than amd64 if needed. # TODO(shyamjvs): Support architectures other than amd64 if needed.
ARCH:=amd64 ARCH:=amd64
GOLANG_VERSION?=1.19.8 GOLANG_VERSION?=1.19.9
REGISTRY?=staging-k8s.gcr.io REGISTRY?=staging-k8s.gcr.io
TAG?=0.1.3 TAG?=0.1.3
IMAGE:=$(REGISTRY)/etcd-version-monitor:$(TAG) IMAGE:=$(REGISTRY)/etcd-version-monitor:$(TAG)