Skip to content

Commit

Permalink
Fix yaml file paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleg Skovpen authored and markmandel committed Sep 4, 2018
1 parent 3275e33 commit bc49448
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/create_fleet.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ While not required, you may wish to go through the [Create a Game Server](create
Let's create a Fleet using the following command :

```
kubectl apply -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/master/examples/simple-udp/server/fleet.yaml
kubectl apply -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/master/examples/simple-udp/fleet.yaml
```

You should see a successful ouput similar to this :
Expand Down Expand Up @@ -157,7 +157,7 @@ In production, you would likely do this through a [Kubernetes API call](./access
do this through `kubectl` as well, and ask it to return the response in yaml so that we can see what has happened.

```
kubectl create -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/master/examples/simple-udp/server/fleetallocation.yaml -o yaml
kubectl create -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/master/examples/simple-udp/fleetallocation.yaml -o yaml
```

For the full details of the YAML file head to the [Fleet Specification Guide](./fleet_spec.md#fleet-allocation-specification)
Expand Down Expand Up @@ -324,7 +324,7 @@ Let's take this for a spin! Run `kubectl edit fleet simple-udp` and set the `rep
Let's also allocate ourselves a `GameServer`

```
kubectl create -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/master/examples/simple-udp/server/fleetallocation.yaml -o yaml
kubectl create -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/master/examples/simple-udp/fleetallocation.yaml -o yaml
```

We should now have four `Ready` `GameServers` and one `Allocated`.
Expand Down

0 comments on commit bc49448

Please sign in to comment.