From a38ab7ffc4d2f090f4bcfbc820d956ebbdc9a7e2 Mon Sep 17 00:00:00 2001 From: Mark Mandel Date: Thu, 14 May 2020 13:06:58 -0700 Subject: [PATCH] Faq links point to wrong place Not sure how this passed in the first place, but the FAQ links should points to the SDK, not REST API. --- site/content/en/docs/FAQ/_index.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/site/content/en/docs/FAQ/_index.md b/site/content/en/docs/FAQ/_index.md index 10754d9377..44d46fda52 100644 --- a/site/content/en/docs/FAQ/_index.md +++ b/site/content/en/docs/FAQ/_index.md @@ -84,8 +84,8 @@ server binary at Allocation time, through Agones functionality. The Agones game server SDK allows you to set custom [Labels](https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/) and [Annotations](https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/) through -the [SDK.SetLabel()]({{< ref "/docs/Guides/Client SDKs/rest.md#set-label-key-value" >}}) -and [SDK.SetAnnotation()]({{< ref "/docs/Guides/Client SDKs/rest.md#set-annotation-key-value" >}}) functionality +the [SDK.SetLabel()]({{< ref "/docs/Guides/Client SDKs/_index.md#setlabel-key-value" >}}) +and [SDK.SetAnnotation()]({{< ref "/docs/Guides/Client SDKs/_index.md#setannotation-key-value" >}}) functionality respectively. This information is then queryable via the [Kubernetes API]({{< ref "/docs/Guides/access-api.md" >}}), @@ -94,8 +94,8 @@ and can be used for game specific, custom integrations. ### If my game server requires more states than what Agones provides (e.g. Ready, Allocated, Shutdown, etc), can I add my own? If you want to track custom game server states, then you can utilise the game server client SDK -[SDK.SetLabel()]({{< ref "/docs/Guides/Client SDKs/rest.md#set-label" >}}) -and [SDK.SetAnnotation()]({{< ref "/docs/Guides/Client SDKs/rest.md#set-annotation" >}}) functionality to +[SDK.SetLabel()]({{< ref "/docs/Guides/Client SDKs/_index.md#setlabel-key-value" >}}) +and [SDK.SetAnnotation()]({{< ref "/docs/Guides/Client SDKs/_index.md#setannotation-key-value" >}}) functionality to expose these custom states to outside systems via your own labels and annotations. This information is then queryable via the [Kubernetes API]({{< ref "/docs/Guides/access-api.md" >}}), and @@ -156,7 +156,7 @@ We routinely see users running container images that are multiple GB in size. The only downside to larger images, is that they can take longer to first load on a Kubernetes node, but that can be managed by your [Fleet]({{< ref "/docs/Reference/fleet.md" >}}) and -[Fleet Autoscaling]({{< ref "/docs/Reference/fleetautoscaler.md" >}}) +[Fleet Autoscaling]({{< ref "/docs/Reference/fleetautoscaler.md" >}} configuration to ensure this load time is taken into account on a new Node's container initial load. ### How quickly can Agones spin up new GameServer instances?