From 5f47824cdc609908ccb816e73e40ef1218c6b4c1 Mon Sep 17 00:00:00 2001 From: Robert Bailey Date: Wed, 17 Jul 2019 10:04:37 -0700 Subject: [PATCH] Update the version of the simple-udp container image to pick up the changes to the SDK. --- build/Makefile | 2 +- examples/simple-udp/Makefile | 2 +- test/e2e/main_test.go | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build/Makefile b/build/Makefile index 58f818133d..5cd9abd9bb 100644 --- a/build/Makefile +++ b/build/Makefile @@ -57,7 +57,7 @@ KIND_PROFILE ?= agones KIND_CONTAINER_NAME=kind-$(KIND_PROFILE)-control-plane # Game Server image to use while doing end-to-end tests -GS_TEST_IMAGE ?= gcr.io/agones-images/udp-server:0.11 +GS_TEST_IMAGE ?= gcr.io/agones-images/udp-server:0.12 # Directory that this Makefile is in. mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST))) diff --git a/examples/simple-udp/Makefile b/examples/simple-udp/Makefile index 577a09b841..eba1067695 100644 --- a/examples/simple-udp/Makefile +++ b/examples/simple-udp/Makefile @@ -27,7 +27,7 @@ REPOSITORY = gcr.io/agones-images mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST))) project_path := $(dir $(mkfile_path)) -server_tag = $(REPOSITORY)/udp-server:0.11 +server_tag = $(REPOSITORY)/udp-server:0.12 root_path = $(realpath $(project_path)/../..) # _____ _ diff --git a/test/e2e/main_test.go b/test/e2e/main_test.go index 499dcd1081..4316b53e5d 100644 --- a/test/e2e/main_test.go +++ b/test/e2e/main_test.go @@ -34,8 +34,8 @@ func TestMain(m *testing.M) { usr, _ := user.Current() kubeconfig := flag.String("kubeconfig", filepath.Join(usr.HomeDir, "/.kube/config"), "kube config path, e.g. $HOME/.kube/config") - gsimage := flag.String("gameserver-image", "gcr.io/agones-images/udp-server:0.11", - "gameserver image to use for those tests, gcr.io/agones-images/udp-server:0.11") + gsimage := flag.String("gameserver-image", "gcr.io/agones-images/udp-server:0.12", + "gameserver image to use for those tests, gcr.io/agones-images/udp-server:0.12") pullSecret := flag.String("pullsecret", "", "optional secret to be used for pulling the gameserver and/or Agones SDK sidecar images") stressTestLevel := flag.Int("stress", 0, "enable stress test at given level 0-100")