forked from kubeflow/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix port-forarding instructions; port-forward to istio gateway (kubef…
…low#1067) * Fix port-forarding instructions; port-forward to istio gateway See kubeflow#1041 and kubeflow/kubeflow#3618 * With 0.6 if no auth is setup and you want to connect via port-forwarding then you need to port-forward to the ISTIO gateway; not ambassador * I suspect the original suggestion in kubeflow#1041 to port-forward to Ambassador only worked in the basic auth setting in which case we are still setting up Ambassador. Fix: kubeflow#1041 * Cleanup the text.
- Loading branch information
1 parent
2d9564c
commit 5b6caa1
Showing
2 changed files
with
21 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<pre><code>export NAMESPACE=istio-system | ||
kubectl port-forward svc/ambassador -n ${NAMESPACE} 8080:80 | ||
kubectl port-forward -n istio-system svc/istio-ingressgateway 8080:80 | ||
</code></pre> |