Skip to content

Commit 5d98744

Browse files
committed
Clarify POSIX shell wording in prerequisites
1 parent feede4d commit 5d98744

6 files changed

Lines changed: 36 additions & 15 deletions

File tree

content/en/docs/tutorials/kubernetes-basics/create-cluster/cluster-intro.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,17 @@ weight: 10
99
* Learn what Minikube is.
1010
* Start a Kubernetes cluster on your computer.
1111

12+
## {{% heading "prerequisites" %}}
13+
14+
The shell commands in this tutorial use POSIX shell syntax, which is supported by
15+
the default shells on most Linux and macOS systems (for example, bash, zsh, or sh).
16+
Windows users must use a POSIX-compatible shell such as
17+
[Windows Subsystem for Linux (WSL)](https://learn.microsoft.com/en-us/windows/wsl/install)
18+
or [Git Bash](https://gitforwindows.org/) to run the commands as written.
19+
Commands that use `export`, `$()`, and similar constructs are **not** compatible
20+
with PowerShell or the Windows Command Prompt.
21+
22+
1223
## Kubernetes Clusters
1324

1425
{{% alert %}}

content/en/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@ weight: 10
1111

1212
## {{% heading "prerequisites" %}}
1313

14-
The shell commands in this tutorial use POSIX shell syntax, which is the default
15-
on Linux and macOS terminals. Windows users must use a POSIX-compatible shell such
16-
as [Windows Subsystem for Linux (WSL)](https://learn.microsoft.com/en-us/windows/wsl/install)
14+
The shell commands in this tutorial use POSIX shell syntax, which is supported by
15+
the default shells on most Linux and macOS systems (for example, bash, zsh, or sh).
16+
Windows users must use a POSIX-compatible shell such as
17+
[Windows Subsystem for Linux (WSL)](https://learn.microsoft.com/en-us/windows/wsl/install)
1718
or [Git Bash](https://gitforwindows.org/) to run the commands as written.
1819
Commands that use `export`, `$()`, and similar constructs are **not** compatible
1920
with PowerShell or the Windows Command Prompt.
2021

22+
2123
## Kubernetes Deployments
2224

2325
{{% alert %}}

content/en/docs/tutorials/kubernetes-basics/explore/explore-intro.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@ weight: 10
1111

1212
## {{% heading "prerequisites" %}}
1313

14-
The shell commands in this tutorial use POSIX shell syntax, which is the default
15-
on Linux and macOS terminals. Windows users must use a POSIX-compatible shell such
16-
as [Windows Subsystem for Linux (WSL)](https://learn.microsoft.com/en-us/windows/wsl/install)
14+
The shell commands in this tutorial use POSIX shell syntax, which is supported by
15+
the default shells on most Linux and macOS systems (for example, bash, zsh, or sh).
16+
Windows users must use a POSIX-compatible shell such as
17+
[Windows Subsystem for Linux (WSL)](https://learn.microsoft.com/en-us/windows/wsl/install)
1718
or [Git Bash](https://gitforwindows.org/) to run the commands as written.
1819
Commands that use `export`, `$()`, and similar constructs are **not** compatible
1920
with PowerShell or the Windows Command Prompt.
2021

22+
2123
## Kubernetes Pods
2224

2325
{{% alert %}}

content/en/docs/tutorials/kubernetes-basics/expose/expose-intro.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@ weight: 10
1111

1212
## {{% heading "prerequisites" %}}
1313

14-
The shell commands in this tutorial use POSIX shell syntax, which is the default
15-
on Linux and macOS terminals. Windows users must use a POSIX-compatible shell such
16-
as [Windows Subsystem for Linux (WSL)](https://learn.microsoft.com/en-us/windows/wsl/install)
14+
The shell commands in this tutorial use POSIX shell syntax, which is supported by
15+
the default shells on most Linux and macOS systems (for example, bash, zsh, or sh).
16+
Windows users must use a POSIX-compatible shell such as
17+
[Windows Subsystem for Linux (WSL)](https://learn.microsoft.com/en-us/windows/wsl/install)
1718
or [Git Bash](https://gitforwindows.org/) to run the commands as written.
1819
Commands that use `export`, `$()`, and similar constructs are **not** compatible
1920
with PowerShell or the Windows Command Prompt.
2021

22+
2123
## Overview of Kubernetes Services
2224

2325
Kubernetes [Pods](/docs/concepts/workloads/pods/) are mortal. Pods have a

content/en/docs/tutorials/kubernetes-basics/scale/scale-intro.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,16 @@ weight: 10
99

1010
## {{% heading "prerequisites" %}}
1111

12-
The shell commands in this tutorial use POSIX shell syntax, which is the default
13-
on Linux and macOS terminals. Windows users must use a POSIX-compatible shell such
14-
as [Windows Subsystem for Linux (WSL)](https://learn.microsoft.com/en-us/windows/wsl/install)
12+
The shell commands in this tutorial use POSIX shell syntax, which is supported by
13+
the default shells on most Linux and macOS systems (for example, bash, zsh, or sh).
14+
Windows users must use a POSIX-compatible shell such as
15+
[Windows Subsystem for Linux (WSL)](https://learn.microsoft.com/en-us/windows/wsl/install)
1516
or [Git Bash](https://gitforwindows.org/) to run the commands as written.
1617
Commands that use `export`, `$()`, and similar constructs are **not** compatible
1718
with PowerShell or the Windows Command Prompt.
1819

1920

21+
2022
## Scaling an application
2123

2224
{{% alert %}}

content/en/docs/tutorials/kubernetes-basics/update/update-intro.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,15 @@ Perform a rolling update using kubectl.
99

1010
## {{% heading "prerequisites" %}}
1111

12-
The shell commands in this tutorial use POSIX shell syntax, which is the default
13-
on Linux and macOS terminals. Windows users must use a POSIX-compatible shell such
14-
as [Windows Subsystem for Linux (WSL)](https://learn.microsoft.com/en-us/windows/wsl/install)
12+
The shell commands in this tutorial use POSIX shell syntax, which is supported by
13+
the default shells on most Linux and macOS systems (for example, bash, zsh, or sh).
14+
Windows users must use a POSIX-compatible shell such as
15+
[Windows Subsystem for Linux (WSL)](https://learn.microsoft.com/en-us/windows/wsl/install)
1516
or [Git Bash](https://gitforwindows.org/) to run the commands as written.
1617
Commands that use `export`, `$()`, and similar constructs are **not** compatible
1718
with PowerShell or the Windows Command Prompt.
1819

20+
1921
## Updating an application
2022

2123
{{% alert %}}

0 commit comments

Comments
 (0)