Skip to content

Commit

Permalink
Bump cpp-simple image (#3695)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kalaiselvi84 committed Mar 13, 2024
1 parent d7197c2 commit 3c9be12
Show file tree
Hide file tree
Showing 11 changed files with 27 additions and 20 deletions.
5 changes: 3 additions & 2 deletions examples/allocation-endpoint/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@ PROD_REPO ?= us-docker.pkg.dev/agones-images/examples
mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
project_path := $(dir $(mkfile_path))
root_path = $(realpath $(project_path)/../..)
version := 0.6
ifeq ($(REPOSITORY),)
server_tag := allocation-endpoint-proxy:0.6
server_tag := allocation-endpoint-proxy:$(version)
else
server_tag := $(REPOSITORY)/allocation-endpoint-proxy:0.6
server_tag := $(REPOSITORY)/allocation-endpoint-proxy:$(version)
endif

# _____ _
Expand Down
6 changes: 3 additions & 3 deletions examples/autoscaler-webhook/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ PROD_REPO ?= us-docker.pkg.dev/agones-images/examples
mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
project_path := $(dir $(mkfile_path))
root_path := $(realpath $(project_path)/../..)

version := 0.11
ifeq ($(REPOSITORY),)
autoscaler_webhook_tag := autoscaler-webhook:0.11
autoscaler_webhook_tag := autoscaler-webhook:$(version)
else
autoscaler_webhook_tag := $(REPOSITORY)/autoscaler-webhook:0.11
autoscaler_webhook_tag := $(REPOSITORY)/autoscaler-webhook:$(version)
endif

# _____ _
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp-simple/fleet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ spec:
spec:
containers:
- name: cpp-simple
image: us-docker.pkg.dev/agones-images/examples/cpp-simple-server:0.16
image: us-docker.pkg.dev/agones-images/examples/cpp-simple-server:0.17
# imagePullPolicy: Always # add for development
2 changes: 1 addition & 1 deletion examples/cpp-simple/gameserver.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ spec:
spec:
containers:
- name: cpp-simple
image: us-docker.pkg.dev/agones-images/examples/cpp-simple-server:0.16
image: us-docker.pkg.dev/agones-images/examples/cpp-simple-server:0.17
imagePullPolicy: Always # add for development
6 changes: 3 additions & 3 deletions examples/crd-client/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@

REPOSITORY ?=
PROD_REPO ?= us-docker.pkg.dev/agones-images/examples

version := 0.14
ifeq ($(REPOSITORY),)
server_tag := crd-client:0.14
server_tag := crd-client:$(version)
else
server_tag := $(REPOSITORY)/crd-client:0.14
server_tag := $(REPOSITORY)/crd-client:$(version)
endif

# _____ _
Expand Down
5 changes: 3 additions & 2 deletions examples/nodejs-simple/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@ PROD_REPO ?= us-docker.pkg.dev/agones-images/examples
mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
project_path := $(dir $(mkfile_path))
root_path = $(realpath $(project_path)/../..)
version := 0.10
ifeq ($(REPOSITORY),)
server_tag := nodejs-simple-server:0.10
server_tag := nodejs-simple-server:$(version)
else
server_tag := $(REPOSITORY)/nodejs-simple-server:0.10
server_tag := $(REPOSITORY)/nodejs-simple-server:$(version)
endif

# _____ _
Expand Down
5 changes: 3 additions & 2 deletions examples/rust-simple/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,11 @@ PROD_REPO ?= us-docker.pkg.dev/agones-images/examples
mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
project_path := $(dir $(mkfile_path))
root_path := $(realpath $(project_path)/../..)
version := 0.13
ifeq ($(REPOSITORY),)
server_tag := rust-simple-server:0.13
server_tag := rust-simple-server:$(version)
else
server_tag := $(REPOSITORY)/rust-simple-server:0.13
server_tag := $(REPOSITORY)/rust-simple-server:$(version)
endif

# _____ _
Expand Down
5 changes: 3 additions & 2 deletions examples/simple-game-server/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,11 @@ WITH_ARM64 ?= 1

mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
project_path := $(dir $(mkfile_path))
version := 0.27
ifeq ($(REPOSITORY),)
server_tag := simple-game-server:0.27
server_tag := simple-game-server:$(version)
else
server_tag := $(REPOSITORY)/simple-game-server:0.27
server_tag := $(REPOSITORY)/simple-game-server:$(version)
endif

ifeq ($(WITH_WINDOWS), 1)
Expand Down
3 changes: 2 additions & 1 deletion examples/simple-genai-server/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ REPOSITORY ?= us-docker.pkg.dev/agones-images/examples

mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
project_path := $(dir $(mkfile_path))
server_tag := $(REPOSITORY)/simple-genai-game-server:0.2
version := 0.2
server_tag := $(REPOSITORY)/simple-genai-game-server:$(version)
server_tag_linux_amd64 = $(server_tag)-linux-amd64
push_server_manifest = $(server_tag_linux_amd64)
root_path = $(realpath $(project_path)/../..)
Expand Down
5 changes: 3 additions & 2 deletions examples/supertuxkart/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@ PROD_REPO ?= us-docker.pkg.dev/agones-images/examples

mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
project_path := $(dir $(mkfile_path))
version := 0.11
ifeq ($(REPOSITORY),)
image_tag := supertuxkart-example:0.11
image_tag := supertuxkart-example:$(version)
else
image_tag := $(REPOSITORY)/supertuxkart-example:0.11
image_tag := $(REPOSITORY)/supertuxkart-example:$(version)
endif

# _____ _
Expand Down
3 changes: 2 additions & 1 deletion examples/unity-simple/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ REPOSITORY = us-docker.pkg.dev/agones-images/examples

mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
project_path := $(dir $(mkfile_path))
server_tag = $(REPOSITORY)/unity-simple-server:0.3
version := 0.3
server_tag = $(REPOSITORY)/unity-simple-server:$(version)

# _____ _
# |_ _|_ _ _ __ __ _ ___| |_ ___
Expand Down

0 comments on commit 3c9be12

Please sign in to comment.