From 6ff592c9c4e38cf5bbe50c5598c7d3ecefdccf6e Mon Sep 17 00:00:00 2001 From: Nick Snyder Date: Tue, 13 Nov 2018 08:12:19 -0800 Subject: [PATCH] Fix verification instructions (#141) --- docs/install.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/install.md b/docs/install.md index 46ecfbd07234..78f3f3c5c35c 100644 --- a/docs/install.md +++ b/docs/install.md @@ -53,13 +53,13 @@ kubectl 1.9.x: ```bash - kubectl port-forward $(kubectl get pod -l app=sourcegraph-frontend -o template --template="{{(index .items 0).metadata.name}}") 30080:3080 + kubectl port-forward $(kubectl get pod -l app=sourcegraph-frontend -o template --template="{{(index .items 0).metadata.name}}") 3080 ``` kubectl 1.10.0 or later: ``` - kubectl port-forward svc/sourcegraph-frontend 30080 + kubectl port-forward svc/sourcegraph-frontend 3080:30080 ``` Open http://localhost:30080 in your browser and you will see a setup page. Congrats, you have Sourcegraph up and running!