From d4b1d107b79371aedd7fb1fe1a884ea844896162 Mon Sep 17 00:00:00 2001 From: Joseph Holley Date: Wed, 19 Dec 2018 14:07:23 +0900 Subject: [PATCH] Copy/paste fix Looks like an issue when pasting this command from the command line; had a repeated part of the command which was causing it to fail. --- docs/create_fleet.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/create_fleet.md b/docs/create_fleet.md index 5a24d0dff2..fff1a0ec24 100644 --- a/docs/create_fleet.md +++ b/docs/create_fleet.md @@ -290,7 +290,7 @@ Since we've only got one allocation, we'll just grab the details of the IP and p only allocated `GameServer`: ``` -kubectl get $(kubectl get fleetallocation -o name) -o jsonpath='{.status.GameServer.staatus.GameServer.status.ports[0].port}' +kubectl get $(kubectl get fleetallocation -o name) -o jsonpath='{.status.gameServer.status.ports[0].port}' ``` This should output your Game Server IP address and port. (eg `10.130.65.208:7936`)