Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
kunmingg committed Nov 12, 2018
1 parent d4dcc8c commit a0a772e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions components/gcp-click-to-deploy/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ class App extends React.Component<any, { signedIn: boolean }> {
<ul>
<ul>
<li> Click Cloud Shell; run command in pop up window; kubeflow UI will be at
<a href="http://localhost:8080/" style={{ color: 'inherit', marginLeft: 5 }} target="_blank"
>localhost:8080</a>
<a href="https://ssh.cloud.google.com/devshell/proxy?authuser=0&port=8081" style={{ color: 'inherit', marginLeft: 5 }} target="_blank"
>here</a>
</li>
</ul>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion components/gcp-click-to-deploy/src/DeployForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ export default class DeployForm extends React.Component<any, DeployFormState> {
this.setState({
dialogBody: 'gcloud container clusters get-credentials ' + this.state.deploymentName
+ ' --zone ' + this.state.zone + ' --project ' + this.state.project + '; ' +
'kubectl port-forward -n kubeflow $(kubectl get pods -n kubeflow --selector=service=ambassador -o jsonpath="{.items[0].metadata.name}") 8080:80',
'kubectl port-forward -n kubeflow $(kubectl get pods -n kubeflow --selector=service=ambassador -o jsonpath="{.items[0].metadata.name}") 8081:80',
dialogTitle: 'In Cloud Shell, run following command:',
});
}
Expand Down

0 comments on commit a0a772e

Please sign in to comment.