Skip to content

Commit

Permalink
Supertuxkart Example on Agones Site (#3728)
Browse files Browse the repository at this point in the history
* Supertuxkart Example on Agones Site

* include example code link and exclude gameserver delete step
* apply suggested changes from custom controller example
  • Loading branch information
Kalaiselvi84 committed Apr 16, 2024
1 parent 05d8232 commit b946cb3
Show file tree
Hide file tree
Showing 5 changed files with 89 additions and 0 deletions.
2 changes: 2 additions & 0 deletions examples/supertuxkart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@ It is not a direct integration, but is an approach to integrate with existing
dedicated game servers.

You will need to download the SuperTuxKart client separately to play.

For detailed instructions refer to the [Agones Documentation](https://agones.dev/site/docs/examples/supertuxkart/).
87 changes: 87 additions & 0 deletions site/content/en/docs/Examples/supertuxkart.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
---
title: "Deploying and Running SuperTuxKart Server Using Agones"
linkTitle: "SuperTuxKart"
date:
publishDate:
description: >
This SuperTuxKart example shows how to set up, deploy, and manage a SuperTuxKart game server on a Kubernetes cluster using Agones. It highlights an approach to integrate with existing dedicated game servers.
---

## Prerequisite

To get started, ensure the following prerequisites are met:

- You have a running Kubernetes cluster.

- Agones is installed on your cluster. Refer to the [Agones guide](https://agones.dev/site/docs/installation/install-agones/) for the instructions.

- The SuperTuxKart client downloaded for gameplay. Download it from [SuperTuxKart](https://supertuxkart.net/Main_Page)

- (Optional) Review {{< ghlink href="examples/supertuxkart" >}}SuperTuxKart code{{< /ghlink >}} to see the details of this example.

## Create a Fleet

Let's create a Fleet using the following command:

```bash
kubectl apply -f https://raw.githubusercontent.com/googleforgames/agones/{{< release-branch >}}/examples/supertuxkart/fleet.yaml
```

You should see a successful output similar to this :

```
fleet.agones.dev/supertuxkart created
```

This has created a Fleet record inside Kubernetes, which in turn creates two ready [GameServers]({{< ref "/docs/Reference/gameserver.md" >}})
that are available to be allocated for a game session.

```bash
kubectl get fleet
```
It should look something like this:

```
NAME SCHEDULING DESIRED CURRENT ALLOCATED READY AGE
supertuxkart Packed 2 2 0 2 55s
```

You can also see the GameServers that have been created by the Fleet by running `kubectl get gameservers`,
the GameServer will be prefixed by `supertuxkart`.

```
NAME STATE ADDRESS PORT NODE AGE
supertuxkart-xfw2g-bwwkb Ready 34.82.158.69 7421 gke-agon-default-pool-f18c8e90-1f9k 103s
supertuxkart-xfw2g-skdnf Ready 34.82.158.69 7585 gke-agon-default-pool-f18c8e90-1f9k 103s
```

For the full details of the YAML file head to the [Fleet Specification Guide]({{< ref "/docs/Reference/fleet.md" >}})

## Connect to the Game Server

After allocating a GameServer from the fleet and obtaining its status and IP, you're ready to connect and play. Here’s how to use the server IP and port to join the game with the SuperTuxKart client:

**Launch SuperTuxKart**: Start the SuperTuxKart client you downloaded earlier by running the executable for your operating system ([documentation](https://supertuxkart.net/FAQ))

**Navigate to Online Play**: From the main menu, select the "Online" option and then select "Enter server address" from the available options.

**Enter Server Details**: In the subsequent screen, you will be prompted to input the IP address and port number in order to join the game. Please enter the IP address and port number obtained from the `kubectl get gameservers` command.

![enter ip and port](../../../images/supertuxkart-enter-ip-port.png)

**Join the Game**: After entering the server details, proceed to join the server. You should now be connected to your Agones-managed SuperTuxKart game server and ready to play.

![start race](../../../images/supertuxkart-race-start.png)

**Launch the Game with AI Bots**: To start the server with AI players, use the `<executable-script> --connect-now=<IP:port> --network-ai=<number of AIs>` command, substituting `<IP:port>` with your server's IP address and port number and `<number of AIs>` with the desired number of bots. For more information, refer to the [SuperTuxKart documentation](https://github.com/supertuxkart/stk-code/blob/master/NETWORKING.md#testing-server).

![race with AI bots](../../../images/supertuxkart-AI-players.png)


## Cleaning Up

After playing SuperTuxKart, it's a good practice to clean up the resources to prevent unnecessary resource consumption. To delete the Agones fleet you deployed, execute the following command. This will remove the fleet along with all the game server instances it manages:

```bash
kubectl delete -f https://raw.githubusercontent.com/googleforgames/agones/{{< release-branch >}}/examples/supertuxkart/fleet.yaml
```
Binary file added site/static/images/supertuxkart-AI-players.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added site/static/images/supertuxkart-race-start.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b946cb3

Please sign in to comment.