File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
tutorial/01-run-the-backend Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 17
17
function initializeVariables ( ) {
18
18
var projectId = localStorage . getItem ( 'gcloud-project-id' ) ? localStorage . getItem ( 'gcloud-project-id' ) : 'no-project-id-configured' ;
19
19
var shellHostname = localStorage . getItem ( 'gcloud-shell-url' ) ? localStorage . getItem ( 'gcloud-shell-url' ) : 'http://no-url-configured' ;
20
- var publicIp = localStorage . getItem ( 'gcloud-public-ip' ) ? localStorage . getItem ( 'gcloud-public-ip' ) : '< no-ip-configured> ' ;
20
+ var publicIp = localStorage . getItem ( 'gcloud-public-ip' ) ? localStorage . getItem ( 'gcloud-public-ip' ) : 'no-ip-configured' ;
21
21
document . getElementById ( 'main-content' ) . innerHTML = document . getElementById ( 'main-content' ) . innerHTML . replace ( new RegExp ( '\\$GCLOUD_PROJECT_ID' , 'g' ) , projectId ) ;
22
22
document . getElementById ( 'main-content' ) . innerHTML = document . getElementById ( 'main-content' ) . innerHTML . replace ( new RegExp ( '\\$GCLOUD_SHELL_URL' , 'g' ) , shellHostname ) ;
23
23
document . getElementById ( 'main-content' ) . innerHTML = document . getElementById ( 'main-content' ) . innerHTML . replace ( new RegExp ( '\\$GCLOUD_PUBLIC_IP' , 'g' ) , publicIp ) ;
Original file line number Diff line number Diff line change @@ -7,8 +7,13 @@ redirect_from:
7
7
8
8
# Start the First Pod
9
9
10
+ Now we are prepared to start our first pod.
11
+
10
12
## Create YAML file
11
13
14
+ In the current console tab we have still the ` kubectl proxy ` command running. We will use a second
15
+ console tab to run all further commands. Click on the ` + ` icon to add a second shell.
16
+
12
17
Create your first YAML file which will later on be used to create the first Kubernetes resource.
13
18
14
19
``` bash
You can’t perform that action at this time.
0 commit comments