Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f834aa9

Browse files
committedNov 20, 2024·
Bumps versions
1 parent 1f3d01c commit f834aa9

File tree

4 files changed

+11
-28
lines changed

4 files changed

+11
-28
lines changed
 

‎test/sdk/go/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ project_path := $(dir $(mkfile_path))
2929
root_path = $(realpath $(project_path)/)
3030
# Because go mod init in the Dockerfile installs the most recently released version of Agones, this
3131
# will need to be built and pushed post-release. During DEV it will be built at DEV - 1.
32-
release_version = 1.44.0
32+
release_version = 1.45.0
3333
server_tag := $(REGISTRY)/sdk-client-test:$(release_version)
3434

3535
# _____ _

‎test/upgrade/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v${KUBECT
2727
mv ./kubectl /usr/local/bin/kubectl
2828

2929
# install Helm package manager
30-
ENV HELM_VER=3.14.3
30+
ENV HELM_VER=3.16.3
3131
ENV HELM_URL=https://get.helm.sh/helm-v${HELM_VER}-linux-amd64.tar.gz
3232
RUN curl -L ${HELM_URL} > /tmp/helm.tar.gz \
3333
&& tar -zxvf /tmp/helm.tar.gz -C /tmp \

‎test/upgrade/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ REGISTRY ?=
2727
mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
2828
project_path := $(dir $(mkfile_path))
2929
root_path = $(realpath $(project_path)/)
30-
base_version = 1.45.0
30+
base_version = 1.46.0
3131
# Version defaults to the short hash of the latest commit
3232
VERSION ?= $(base_version)-dev-$(shell git rev-parse --short=7 HEAD)
3333
server_tag := $(REGISTRY)/upgrade-test-controller:$(VERSION)

‎test/upgrade/versionMap.yaml

+8-25
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ metadata:
1919
name: version-map
2020
data:
2121
DevVersion: ${DevVersion}
22-
ReleaseVersion: "1.44.0"
22+
ReleaseVersion: "1.45.0"
2323
version-mappings.json: |
2424
{
2525
"k8sToAgonesVersions": {
@@ -29,43 +29,22 @@ data:
2929
"1.42.0",
3030
"1.43.0",
3131
"1.44.0",
32+
"1.45.0",
3233
"Dev"
3334
],
3435
"1.30": [
3536
"1.43.0",
3637
"1.44.0",
38+
"1.45.0",
3739
"Dev"
3840
],
3941
"1.31": [
4042
"1.44.0",
43+
"1.45.0",
4144
"Dev"
4245
]
4346
},
4447
"agonesVersionFeatureGates": {
45-
"1.34.0": {
46-
"alphaGates": ["PlayerAllocationFilter", "PlayerTracking"],
47-
"betaGates": []
48-
},
49-
"1.35.0": {
50-
"alphaGates": ["PlayerAllocationFilter", "PlayerTracking"],
51-
"betaGates": []
52-
},
53-
"1.36.0": {
54-
"alphaGates": ["PlayerAllocationFilter", "PlayerTracking"],
55-
"betaGates": []
56-
},
57-
"1.37.0": {
58-
"alphaGates": ["CountsAndLists", "DisableResyncOnSDKServer", "GKEAutopilotExtendedDurationPods", "PlayerAllocationFilter", "PlayerTracking"],
59-
"betaGates": []
60-
},
61-
"1.38.0": {
62-
"alphaGates": ["CountsAndLists", "DisableResyncOnSDKServer", "GKEAutopilotExtendedDurationPods", "PlayerAllocationFilter", "PlayerTracking"],
63-
"betaGates": []
64-
},
65-
"1.39.0": {
66-
"alphaGates": ["CountsAndLists", "DisableResyncOnSDKServer", "GKEAutopilotExtendedDurationPods", "PlayerAllocationFilter", "PlayerTracking"],
67-
"betaGates": []
68-
},
6948
"1.40.0": {
7049
"alphaGates": ["CountsAndLists", "GKEAutopilotExtendedDurationPods", "PlayerAllocationFilter", "PlayerTracking"],
7150
"betaGates": ["DisableResyncOnSDKServer"]
@@ -86,6 +65,10 @@ data:
8665
"alphaGates": ["PlayerAllocationFilter", "PlayerTracking", "PortPolicyNone", "PortRanges", "RollingUpdateFix", "ScheduledAutoscaler"],
8766
"betaGates": ["AutopilotPassthroughPort", "CountsAndLists", "DisableResyncOnSDKServer", "GKEAutopilotExtendedDurationPods"]
8867
},
68+
"1.45.0": {
69+
"alphaGates": ["PlayerAllocationFilter", "PlayerTracking", "PortPolicyNone", "PortRanges", "RollingUpdateFix", "ScheduledAutoscaler"],
70+
"betaGates": ["AutopilotPassthroughPort", "CountsAndLists", "DisableResyncOnSDKServer", "GKEAutopilotExtendedDurationPods"]
71+
}
8972
"Dev": {
9073
"alphaGates": ["PlayerAllocationFilter", "PlayerTracking", "PortPolicyNone", "PortRanges", "RollingUpdateFix", "ScheduledAutoscaler"],
9174
"betaGates": ["AutopilotPassthroughPort", "CountsAndLists", "DisableResyncOnSDKServer", "GKEAutopilotExtendedDurationPods"]

0 commit comments

Comments
 (0)