Releases: googleforgames/agones
v1.12.0
This is the 1.12.0 release of Agones.
A few things to note in this release:
- The
GameServer
CRD now includes the fullPodTemplateSpec
json schema, to provide better up-front validation.
This should be entirely backward compatible, but in case you run into issues, the helm configuration option
gameservers.podPreserveUnknownFields
is available to disable validation and field pruning.- If you are using Helm, you might need to update your Helm version and/or do a clean install to apply this update to
your cluster if you already have a version of Agones installed, due to the size of the CRD update.
- If you are using Helm, you might need to update your Helm version and/or do a clean install to apply this update to
SDKWatchSendOnExecute
has been moved to Beta, so by default you will get a copy of the most recentGameServer
information with your initialSDK.WatchGameServer(...)
request.- The ability to apply port allocation to multiple containers has moved from Beta to Stable!
Check the README for details on features, installation and usage.
Breaking changes:
- Move SDKWatchSendOnExecute to Beta #1904
- Move
SDKWatchSendOnExecute
to Beta stage. #1960 (markmandel) - Utilize ExternalDNS as well as ExternalIP #1928 (nanasi880)
Implemented enhancements:
- Utilize ExternalDNS as well as ExternalIP #1921
- Move "Port Allocations to Multiple Containers" > Stable #1773
- Move ContainerPortAllocation to Stable #1961 (markmandel)
- CRD OpenAPI Spec for ObjectMeta & PodTemplateSpec #1956 (markmandel)
- Add a "why" section for the Allocator Service documentation #1953 (markmandel)
- Add nodeSelector property to Agones helm chart for Allocator #1946 (josephbmanley)
See CHANGELOG for more details on changes.
Images available with this release:
- gcr.io/agones-images/agones-controller:1.12.0
- gcr.io/agones-images/agones-sdk:1.12.0
- gcr.io/agones-images/agones-ping:1.12.0
- gcr.io/agones-images/agones-allocator:1.12.0
- gcr.io/agones-images/autoscaler-webhook:0.3
- gcr.io/agones-images/cpp-simple-server:0.13
- gcr.io/agones-images/crd-client:0.3
- gcr.io/agones-images/nodejs-simple-server:0.5
- gcr.io/agones-images/rust-simple-server:0.8
- gcr.io/agones-images/simple-game-server:0.1
- gcr.io/agones-images/tcp-server:0.4
- gcr.io/agones-images/udp-server:0.21
- gcr.io/agones-images/supertuxkart-example:0.3
- gcr.io/agones-images/unity-simple-server:0.3
- gcr.io/agones-images/xonotic-example:0.8
Helm chart available with this release:
Make sure to add our stable helm repository using
helm repo add agones https://agones.dev/chart/stable
v1.12.0-rc
This is the 1.12.0-rc release of Agones.
A few things to note in this release:
- The
GameServer
CRD now includes the fullPodTemplateSpec
json schema, to provide better up-front validation.
This should be entirely backward compatible, but in case you run into issues, the helm configuration option
gameservers.podPreserveUnknownFields
is available to disable validation and field pruning.- If you are using Helm, you might need to update your Helm version and/or do a clean install to apply this update to
your cluster if you already have a version of Agones installed, due to the size of the CRD update.
- If you are using Helm, you might need to update your Helm version and/or do a clean install to apply this update to
SDKWatchSendOnExecute
has been moved to Beta, so by default you will get a copy of the most recentGameServer
information with your initialSDK.WatchGameServer(...)
request.- The ability to apply port allocation to multiple containers has moved from Beta to Stable!
Check the README for details on features, installation and usage.
Breaking changes:
- Move SDKWatchSendOnExecute to Beta #1904
- Move
SDKWatchSendOnExecute
to Beta stage. #1960 (markmandel) - Utilize ExternalDNS as well as ExternalIP #1928 (nanasi880)
Implemented enhancements:
- Utilize ExternalDNS as well as ExternalIP #1921
- Move "Port Allocations to Multiple Containers" > Stable #1773
- Move ContainerPortAllocation to Stable #1961 (markmandel)
- CRD OpenAPI Spec for ObjectMeta & PodTemplateSpec #1956 (markmandel)
- Add a "why" section for the Allocator Service documentation #1953 (markmandel)
- Add nodeSelector property to Agones helm chart for Allocator #1946 (josephbmanley)
Documentation: https://development.agones.dev/site/
See CHANGELOG for more details on changes.
Images available with this release:
- gcr.io/agones-images/agones-controller:1.12.0-rc
- gcr.io/agones-images/agones-sdk:1.12.0-rc
- gcr.io/agones-images/agones-ping:1.12.0-rc
- gcr.io/agones-images/agones-allocator:1.12.0-rc
- gcr.io/agones-images/autoscaler-webhook:0.3
- gcr.io/agones-images/cpp-simple-server:0.13
- gcr.io/agones-images/crd-client:0.3
- gcr.io/agones-images/nodejs-simple-server:0.5
- gcr.io/agones-images/rust-simple-server:0.8
- gcr.io/agones-images/simple-game-server:0.1
- gcr.io/agones-images/tcp-server:0.4
- gcr.io/agones-images/udp-server:0.21
- gcr.io/agones-images/supertuxkart-example:0.3
- gcr.io/agones-images/unity-simple-server:0.3
- gcr.io/agones-images/xonotic-example:0.8
Helm chart available with this release:
Make sure to add our stable helm repository using
helm repo add agones https://agones.dev/chart/stable
v1.11.0
This is the 1.11.0 release of Agones.
This release includes several breaking changes, that include:
- Upgrade supported Kubernetes version to 1.17
- Upgrade CRDs to v1 from v1beta1, including adding structured schemas
Note: If you are using Fleet autoscalers with a webhook that is also configured with an SSL certificate,
and are not using a SAN in your certificate, please update them with this release in preparation for a migration of the
project to Go 1.15.
The documentation on creating SSL certificates for Fleet autoscaling webhooks
has been updated to include instructions on including a SAN in the certificate, and has been tested to work on the
current version of Agones as well.
Check the README for details on features, installation and usage.
Breaking changes:
- Upgrade to Kubernetes 1.17 #1824
- Update apiextensions.k8s.io/v1beta1 to v1 for all CRDs #1799
- Move apiregistration & admissionregistration to v1 #1918 (markmandel)
- Updated terraform scripts to 1.17 #1916 (markmandel)
- Update client-go to 0.17.14 #1913 (markmandel)
- Adding SAN to fleet autoscaler certs and updating documentation #1910 (kdima)
- Move CRDs from v1beta1 to v1 #1909 (markmandel)
- Upgrade terraform and test clusters to 1.17 #1901 (markmandel)
Security fixes:
- Updated Go to 1.14.12 #1900 (markmandel)
Implemented enhancements:
- Remove support / docs for helm v2 #1853
- grpc-gateway powered REST API for MultiCluster Allocation #1495
- Support Agones sidecar Windows build #110
- Tooling to review pprof heaps #1927 (markmandel)
- Move supported site K8s version to shortcodes #1917 (markmandel)
- Adding rest to allocation endpoint #1902 (kdima)
- #54 Preliminary Windows Image Support #1894 (jeremyje)
See CHANGELOG for more details on changes.
Images available with this release:
- gcr.io/agones-images/agones-controller:1.11.0
- gcr.io/agones-images/agones-sdk:1.11.0
- gcr.io/agones-images/agones-ping:1.11.0
- gcr.io/agones-images/agones-allocator:1.11.0
- gcr.io/agones-images/autoscaler-webhook:0.3
- gcr.io/agones-images/cpp-simple-server:0.13
- gcr.io/agones-images/crd-client:0.3
- gcr.io/agones-images/nodejs-simple-server:0.5
- gcr.io/agones-images/rust-simple-server:0.8
- gcr.io/agones-images/simple-game-server:0.1
- gcr.io/agones-images/tcp-server:0.4
- gcr.io/agones-images/udp-server:0.21
- gcr.io/agones-images/supertuxkart-example:0.3
- gcr.io/agones-images/unity-simple-server:0.3
- gcr.io/agones-images/xonotic-example:0.8
Helm chart available with this release:
Make sure to add our stable helm repository using
helm repo add agones https://agones.dev/chart/stable
v1.11.0-rc
This is the 1.11.0-rc release of Agones.
This release includes several breaking changes, that include:
- Upgrade supported Kubernetes version to 1.17
- Upgrade CRDs to v1 from v1beta1, including adding structured schemas
For this reason, we request that users test this Release Candidate against their current installs to ensure there are no issues before it is moved to stable.
Also, of note: If you are using Fleet autoscalers with a webhook that is also configured with an SSL certificate, and are not using a SAN in your certificate, please update them with this release in preparation for a migration of the project to Go 1.15.
The documentation on creating SSL certificates for Fleet autoscaling webhooks has been updated to include instructions on including a SAN in the certificate, and has been tested to work on the current version of Agones as well.
Check the README for details on features, installation and usage.
Breaking changes:
- Upgrade to Kubernetes 1.17 #1824
- Update apiextensions.k8s.io/v1beta1 to v1 for all CRDs #1799
- Move apiregistration & admissionregistration to v1 #1918 (markmandel)
- Updated terraform scripts to 1.17 #1916 (markmandel)
- Update client-go to 0.17.14 #1913 (markmandel)
- Adding SAN to fleet autoscaler certs and updating documentation #1910 (kdima)
- Move CRDs from v1beta1 to v1 #1909 (markmandel)
- Upgrade terraform and test clusters to 1.17 #1901 (markmandel)
Implemented enhancements:
- Remove support / docs for helm v2 #1853
- grpc-gateway powered REST API for MultiCluster Allocation #1495
- Support Agones sidecar Windows build #110
- Tooling to review pprof heaps #1927 (markmandel)
- Move supported site K8s version to shortcodes #1917 (markmandel)
- Adding rest to allocation endpoint #1902 (kdima)
- #54 Preliminary Windows Image Support #1894 (jeremyje)
Documentation: https://development.agones.dev/site/
See CHANGELOG for more details on changes.
Images available with this release:
- gcr.io/agones-images/agones-controller:1.11.0-rc
- gcr.io/agones-images/agones-sdk:1.11.0-rc
- gcr.io/agones-images/agones-ping:1.11.0-rc
- gcr.io/agones-images/agones-allocator:1.11.0-rc
- gcr.io/agones-images/cpp-simple-server:0.13
- gcr.io/agones-images/crd-client:0.3
- gcr.io/agones-images/nodejs-simple-server:0.5
- gcr.io/agones-images/rust-simple-server:0.8
- gcr.io/agones-images/simple-game-server:0.1
- gcr.io/agones-images/supertuxkart-example:0.3
- gcr.io/agones-images/tcp-server:0.4
- gcr.io/agones-images/udp-server:0.21
- gcr.io/agones-images/unity-simple-server:0.3
- gcr.io/agones-images/xonotic-example:0.8
Helm chart available with this release:
Make sure to add our stable helm repository using
helm repo add agones https://agones.dev/chart/stable
v1.10.0
This is the 1.10.0 release of Agones.
This release fixes critical performance bugs in the gRPC Allocation endpoint, as well as fixing a memory leak inherited from client-go. Therefore, we recommend upgrading your install of Agones as soon as possible.
Check the README for details on features, installation and usage.
Breaking changes:
- Remove the documentation for helm v2 #1859 (roberthbailey)
Security fixes:
- update node.js dependencies #1868 (steven-supersolid)
Implemented enhancements:
- Adding allocator log level #1879
- Adding allocator resources #1873
- Add troubleshooting section to allocator and multicluster allocation #1866
- Helm setting the annotation of controller and allocator #1848
- Change the multi-cluster allocation feature to stable version #1780
- Updated C# documentation to use NuGet package #1769
- Documented assumed prerequisite knowledge for the project #1759
- Multicluster: Add gRPC dial timeout #1700
- Add new projects to Third Party section of the site #1882 (danieloliveira079)
- Add log level setting in allocator #1880 (8398a7)
- Add troubleshooting for allocation gRPC request #1878 (pooneh-m)
- Add allocator resources #1874 (8398a7)
- [Unreal SDK] Added a response code check to some functions #1870 (dotcom)
- Built tools: Update install with Allocation certs #1869 (markmandel)
- Add gRPC load test for allocation service #1867 (ilkercelikyilmaz)
- Add pod annotations #1849 (8398a7)
- Useful Unreal links #1846 (domgreen)
- Make the force_update option configurable in Helm/Terraform #1844 (comerford)
- [Doc] Mark multicluster allocation feature as stable #1843 (pooneh-m)
- Docs: Prerequisite Knowledge section #1821 (markmandel)
- adding timeout to remote cluster allocate call and adding total timeout to allocate #1815 (kdima)
- Docs: Update C# SDK docs page #1796 (Reousa)
See CHANGELOG for more details on changes.
Images available with this release:
- gcr.io/agones-images/agones-controller:1.10.0
- gcr.io/agones-images/agones-sdk:1.10.0
- gcr.io/agones-images/agones-ping:1.10.0
- gcr.io/agones-images/agones-allocator:1.10.0
- gcr.io/agones-images/cpp-simple-server:0.13
- gcr.io/agones-images/crd-client:0.3
- gcr.io/agones-images/nodejs-simple-server:0.5
- gcr.io/agones-images/rust-simple-server:0.8
- gcr.io/agones-images/simple-game-server:0.1
- gcr.io/agones-images/supertuxkart-example:0.3
- gcr.io/agones-images/tcp-server:0.4
- gcr.io/agones-images/udp-server:0.21
- gcr.io/agones-images/unity-simple-server:0.3
- gcr.io/agones-images/xonotic-example:0.8
Helm chart available with this release:
Make sure to add our stable helm repository using
helm repo add agones https://agones.dev/chart/stable
v1.10.0-rc
This is the 1.10.0-rc release of Agones.
This release fixes critical performance bugs in the gRPC Allocation endpoint, as well as fixing a memory leak
inherited from client-go. Therefore, we recommend upgrading your install of Agones as soon as possible.
Check the README for details on features, installation and usage.
Breaking changes:
- Remove the documentation for helm v2 #1859 (roberthbailey)
Security fixes:
- update node.js dependencies #1868 (steven-supersolid)
Implemented enhancements:
- Adding allocator log level #1879
- Adding allocator resources #1873
- Add troubleshooting section to allocator and multicluster allocation #1866
- Helm setting the annotation of controller and allocator #1848
- Change the multi-cluster allocation feature to stable version #1780
- Updated C# documentation to use NuGet package #1769
- Documented assumed prerequisite knowledge for the project #1759
- Multicluster: Add gRPC dial timeout #1700
- Add new projects to Third Party section of the site #1882 (danieloliveira079)
- Add log level setting in allocator #1880 (8398a7)
- Add troubleshooting for allocation gRPC request #1878 (pooneh-m)
- Add allocator resources #1874 (8398a7)
- [Unreal SDK] Added a response code check to some functions #1870 (dotcom)
- Built tools: Update install with Allocation certs #1869 (markmandel)
- Add gRPC load test for allocation service #1867 (ilkercelikyilmaz)
- Add pod annotations #1849 (8398a7)
- Useful Unreal links #1846 (domgreen)
- Make the force_update option configurable in Helm/Terraform #1844 (comerford)
- [Doc] Mark multicluster allocation feature as stable #1843 (pooneh-m)
- Docs: Prerequisite Knowledge section #1821 (markmandel)
- Docs: Update C# SDK docs page #1796 (Reousa)
Documentation: https://development.agones.dev/site/
See CHANGELOG for more details on changes.
Images available with this release:
- gcr.io/agones-images/agones-controller:1.10.0-rc
- gcr.io/agones-images/agones-sdk:1.10.0-rc
- gcr.io/agones-images/agones-ping:1.10.0-rc
- gcr.io/agones-images/agones-allocator:1.10.0-rc
- gcr.io/agones-images/cpp-simple-server:0.13
- gcr.io/agones-images/crd-client:0.3
- gcr.io/agones-images/nodejs-simple-server:0.5
- gcr.io/agones-images/rust-simple-server:0.8
- gcr.io/agones-images/simple-game-server:0.1
- gcr.io/agones-images/supertuxkart-example:0.3
- gcr.io/agones-images/tcp-server:0.4
- gcr.io/agones-images/udp-server:0.21
- gcr.io/agones-images/unity-simple-server:0.3
- gcr.io/agones-images/xonotic-example:0.8
Helm chart available with this release:
Make sure to add our stable helm repository using
helm repo add agones https://agones.dev/chart/stable
v1.9.0
This is the 1.9.0 release of Agones.
Note: In this release we are upgrading the supported Kubernetes version to 1.16, so please make sure to upgrade your clusters.
Check the README for details on features, installation and usage.
Breaking changes:
- Upgrade to Kubernetes 1.16 #1649
- Upgrade Kubectl to 1.16.15 #1806 (markmandel)
- Upgrade client-go and apimachinery to 0.16.15 #1794 (markmandel)
- Update GKE Terraform clusters to 1.16 #1772 (markmandel)
Implemented enhancements:
- [Doc] add a caveat on setting expiration for cert-manager certificate resources #1781
- Helm chart: allow to specify loadBalancerIP #1709
- Terraform, Helm module install: Allow gameserver namespaces and port ranges to be specified in terraform #1692
- Support using the same port for both TCP/UDP forwarding #1523
- Write Tests for Terraform configs #1227
- Add player tracking and shutdown to the supertuxkart example server #1825 (sudermanjr)
- Add logging for the client certificate verification #1812 (pooneh-m)
- Troubleshooting - namespace stuck terminating #1795 (domgreen)
- Add load balancer configuration for Helm options #1793 (yoshd)
- Added option to hardcode load balancer IP for allocator. #1766 (devloop0)
- Add TCPUDP protocol #1764 (Bmandk)
- Publish to NuGet for Csharp SDK #1753 (markmandel)
- Add Terraform example for GKE custom VPC deployment #1697 (moesy)
- Fix Fleets RollingUpdate #1626 (aLekSer)
See CHANGELOG for more details on changes.
Images available with this release:
- gcr.io/agones-images/agones-controller:1.9.0
- gcr.io/agones-images/agones-sdk:1.9.0
- gcr.io/agones-images/agones-ping:1.9.0
- gcr.io/agones-images/agones-allocator:1.9.0
- gcr.io/agones-images/cpp-simple-server:0.13
- gcr.io/agones-images/crd-client:0.3
- gcr.io/agones-images/nodejs-simple-server:0.5
- gcr.io/agones-images/rust-simple-server:0.8
- gcr.io/agones-images/simple-game-server:0.1
- gcr.io/agones-images/supertuxkart-example:0.3
- gcr.io/agones-images/tcp-server:0.4
- gcr.io/agones-images/udp-server:0.21
- gcr.io/agones-images/unity-simple-server:0.3
- gcr.io/agones-images/xonotic-example:0.8
Helm chart available with this release:
Make sure to add our stable helm repository using
helm repo add agones https://agones.dev/chart/stable
v1.9.0-rc
This is the 1.9.0-rc release of Agones.
Note: In this release we are upgrading the supported Kubernetes version to 1.16, so please make sure to upgrade your clusters.
Check the README for details on features, installation and usage.
Breaking changes:
- Upgrade Kubectl to 1.16.15 #1806 (markmandel)
- Upgrade client-go and apimachinery to 0.16.15 #1794 (markmandel)
- Update GKE Terraform clusters to 1.16 #1772 (markmandel)
- Upgrade to Kubernetes 1.16 #1649
Implemented enhancements:
- [Doc] add a caveat on setting expiration for cert-manager certificate resources #1781
- Helm chart: allow to specify loadBalancerIP #1709
- Terraform, Helm module install: Allow gameserver namespaces and port ranges to be specified in terraform #1692
- Support using the same port for both TCP/UDP forwarding #1523
- Write Tests for Terraform configs #1227
- Add player tracking and shutdown to the supertuxkart example server #1825 (sudermanjr)
- Add logging for the client certificate verification #1812 (pooneh-m)
- Troubleshooting - namespace stuck terminating #1795 (domgreen)
- Add load balancer configuration for Helm options #1793 (yoshd)
- Added option to hardcode load balancer IP for allocator. #1766 (devloop0)
- Add TCPUDP protocol #1764 (Bmandk)
- Publish to NuGet for Csharp SDK #1753 (markmandel)
- Add Terraform example for GKE custom VPC deployment #1697 (moesy)
- Fix Fleets RollingUpdate #1626 (aLekSer)
Documentation: https://development.agones.dev/site/
See CHANGELOG for more details on changes.
Images available with this release:
- gcr.io/agones-images/agones-controller:1.9.0-rc
- gcr.io/agones-images/agones-sdk:1.9.0-rc
- gcr.io/agones-images/agones-ping:1.9.0-rc
- gcr.io/agones-images/agones-allocator:1.9.0-rc
- gcr.io/agones-images/cpp-simple-server:0.13
- gcr.io/agones-images/crd-client:0.3
- gcr.io/agones-images/nodejs-simple-server:0.5
- gcr.io/agones-images/rust-simple-server:0.8
- gcr.io/agones-images/simple-game-server:0.1
- gcr.io/agones-images/supertuxkart-example:0.3
- gcr.io/agones-images/tcp-server:0.4
- gcr.io/agones-images/udp-server:0.21
- gcr.io/agones-images/unity-simple-server:0.3
- gcr.io/agones-images/xonotic-example:0.8
Helm chart available with this release:
Make sure to add our stable helm repository using
helm repo add agones https://agones.dev/chart/stable
v1.8.0
This is the 1.8.0 release of Agones.
Lots of changes to SDKs in this release, including a replacement Unreal SDK.
The previous Unreal SDK will continue to work, but we recommend users upgrade to this latest version, as it has far
more functionality.
We also see more SDKs supporting the alpha Player Tracking functionality as well.
Check the README for details on features, installation and usage.
Breaking changes:
- [Discussion] Assimilate netspeakgames/UnrealAgonesSDK #1683
- move Netspeak Unreal SDK into Agones Unreal SDK #1739 (domgreen)
Security fixes:
- Bump lodash from 4.17.15 to 4.17.19 to fix a security vulnerability. #1707 (roberthbailey)
Implemented enhancements:
- Support for async/await syntax in Rust SDK #1732
- Add firewall name variable to GKE Terraform #1741 (markmandel)
- Add Rust SDK async/await syntax support and minor improvements #1733 (yoshd)
- Add extra troubleshooting steps. #1721 (markmandel)
- Supports Rust Alpha SDK #1717 (yoshd)
- Supports C# Alpha SDK #1705 (yoshd)
- Added allocator-client.default secret. #1702 (devloop0)
- Add Custom VPC support to Terraform GKE Module #1695 (moesy)
- add gameserver values as configurable in helm terraform modules #1693 (comerford)
- Adding Fairwinds agones-allocator-client to third-party tools #1684 (sudermanjr)
- Added new gen-install-alpha command #1673 (akremsa)
- Alpha SDK and example for Node.js (Player tracking) #1658 (steven-supersolid)
See CHANGELOG for more details on changes.
Images available with this release:
- gcr.io/agones-images/agones-controller:1.8.0
- gcr.io/agones-images/agones-sdk:1.8.0
- gcr.io/agones-images/agones-ping:1.8.0
- gcr.io/agones-images/agones-allocator:1.8.0
- gcr.io/agones-images/cpp-simple-server:0.13
- gcr.io/agones-images/nodejs-simple-server:0.5
- gcr.io/agones-images/rust-simple-server:0.8
- gcr.io/agones-images/unity-simple-server:0.3
- gcr.io/agones-images/udp-server:0.21
- gcr.io/agones-images/tcp-server:0.4
- gcr.io/agones-images/xonotic-example:0.8
- gcr.io/agones-images/supertuxkart-example:0.2
- gcr.io/agones-images/crd-client:0.3
Helm chart available with this release:
Make sure to add our stable helm repository using
helm repo add agones https://agones.dev/chart/stable
v1.8.0-rc
This is the 1.8.0-rc release of Agones.
Lots of changes to SDKs in this release, including a replacement Unreal SDK.
The previous Unreal SDK will continue to work, but we recommend users upgrade to this latest version, as it has far
more functionality.
We also see more SDKs supporting the alpha Player Tracking functionality as well.
Check the README for details on features, installation and usage.
Breaking changes:
- [Discussion] Assimilate netspeakgames/UnrealAgonesSDK #1683
- move Netspeak Unreal SDK into Agones Unreal SDK #1739 (domgreen)
Security fixes:
- Bump lodash from 4.17.15 to 4.17.19 to fix a security vulnerability. #1707 (roberthbailey)
Implemented enhancements:
- Support for async/await syntax in Rust SDK #1732
- Add firewall name variable to GKE Terraform #1741 (markmandel)
- Add Rust SDK async/await syntax support and minor improvements #1733 (yoshd)
- Add extra troubleshooting steps. #1721 (markmandel)
- Supports Rust Alpha SDK #1717 (yoshd)
- Supports C# Alpha SDK #1705 (yoshd)
- Added allocator-client.default secret. #1702 (devloop0)
- Add Custom VPC support to Terraform GKE Module #1695 (moesy)
- add gameserver values as configurable in helm terraform modules #1693 (comerford)
- Adding Fairwinds agones-allocator-client to third-party tools #1684 (sudermanjr)
- Added new gen-install-alpha command #1673 (akremsa)
- Alpha SDK and example for Node.js (Player tracking) #1658 (steven-supersolid)
Documentation: https://development.agones.dev/site/
See CHANGELOG for more details on changes.
Images available with this release:
- gcr.io/agones-images/agones-controller:1.8.0-rc
- gcr.io/agones-images/agones-sdk:1.8.0-rc
- gcr.io/agones-images/agones-ping:1.8.0-rc
- gcr.io/agones-images/agones-allocator:1.8.0-rc
- gcr.io/agones-images/cpp-simple-server:0.13
- gcr.io/agones-images/nodejs-simple-server:0.5
- gcr.io/agones-images/rust-simple-server:0.8
- gcr.io/agones-images/unity-simple-server:0.3
- gcr.io/agones-images/udp-server:0.21
- gcr.io/agones-images/tcp-server:0.4
- gcr.io/agones-images/xonotic-example:0.8
- gcr.io/agones-images/supertuxkart-example:0.2
- gcr.io/agones-images/crd-client:0.3
Helm chart available with this release:
Make sure to add our stable helm repository using
helm repo add agones https://agones.dev/chart/stable