Skip to content

Commit 873325f

Browse files
committed
Add a comment about the second shell tab
1 parent 1f8d1ad commit 873325f

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

docs/_layouts/page.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
function initializeVariables() {
1818
var projectId = localStorage.getItem('gcloud-project-id') ? localStorage.getItem('gcloud-project-id') : 'no-project-id-configured';
1919
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';
2121
document.getElementById('main-content').innerHTML = document.getElementById('main-content').innerHTML.replace(new RegExp('\\$GCLOUD_PROJECT_ID', 'g'), projectId);
2222
document.getElementById('main-content').innerHTML = document.getElementById('main-content').innerHTML.replace(new RegExp('\\$GCLOUD_SHELL_URL', 'g'), shellHostname);
2323
document.getElementById('main-content').innerHTML = document.getElementById('main-content').innerHTML.replace(new RegExp('\\$GCLOUD_PUBLIC_IP', 'g'), publicIp);

docs/tutorial/01-run-the-backend/01-first-pod.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,13 @@ redirect_from:
77

88
# Start the First Pod
99

10+
Now we are prepared to start our first pod.
11+
1012
## Create YAML file
1113

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+
1217
Create your first YAML file which will later on be used to create the first Kubernetes resource.
1318

1419
```bash

0 commit comments

Comments
 (0)