Skip to content

Commit

Permalink
Update the version of the simple-udp container image to pick up the
Browse files Browse the repository at this point in the history
changes to the SDK.
  • Loading branch information
roberthbailey committed Jul 17, 2019
1 parent 3b0f320 commit 5f47824
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)))
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-udp/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)/../..)

# _____ _
Expand Down
4 changes: 2 additions & 2 deletions test/e2e/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 5f47824

Please sign in to comment.