Skip to content

Commit

Permalink
Add some extra emphasis on the breaking change in the helm parameters (
Browse files Browse the repository at this point in the history
…#2305)

related to the allocator service.
  • Loading branch information
roberthbailey authored Oct 12, 2021
1 parent 4015801 commit 70d56ad
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
4 changes: 3 additions & 1 deletion site/content/en/blog/releases/1.18.0-rc.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,15 @@ This release fixes a gRPC compatibility issue in the allocator service introduce

The `RollingUpdateOnReady` feature have graduated to stable! And the new alpha feature `SDKGracefulTermination` makes Agones work better with preemptible VMs.

Some helm parameters related to the allocator service were renamed to make them more consistent. If you were setting any of those values you will need to modify your helm scripts to use the new parameters.
**Note**: Some helm parameters related to the allocator service were renamed to make them more consistent. In particular, if you were setting the `agones.allocator.http.loadBalancerIP` so that helm would automatically set up the server certificate, the parameter has been renamed to `agones.allocator.service.loadBalancerIP`. If you were setting this or any other parameters for the allocator service please check your helm scripts and ensure that you are using the new parameters.

Check the <a href="https://github.com/googleforgames/agones/tree/release-1.18.0-rc" data-proofer-ignore>README</a> for details on features, installation and usage.

**Breaking changes:**

- Allow the ports for gRPC and REST to be configured for the allocator service [\#2272](https://github.com/googleforgames/agones/pull/2272) ([roberthbailey](https://github.com/roberthbailey))
- Changed helm parameters used to configure the allocator service [\#2272](https://github.com/googleforgames/agones/pull/2272) ([roberthbailey](https://github.com/roberthbailey))


**Implemented enhancements:**

Expand Down
7 changes: 7 additions & 0 deletions site/content/en/docs/Advanced/allocator-service.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,13 @@ helm upgrade --install --wait \
...
```

{{< alert title="Warning" color="warning">}} The parameter used to automatically
replace the certifate changed in Agones 1.18.0. If you are using an older
version of Agones you should pass the parameter
`agones.allocator.http.loadBalancerIP` instead. If you need your script to work
with both older and newer versions of Agones, you can pass both parameters as
only one of them will effect the helm chart templates.

{{% /feature %}}

Another approach is to replace the default server TLS certificate with a certificate with CN and subjectAltName. There are multiple approaches to generate a certificate. Agones recommends using [cert-manager.io](https://cert-manager.io/) solution for cluster level certificate management.
Expand Down

0 comments on commit 70d56ad

Please sign in to comment.