Skip to content

Commit 40c626c

Browse files
authored
Fixed markdown in tabs. (#35504)
* Fixed markdown in tabs. * Removed {{< note >}} shortcode.
1 parent d56a03f commit 40c626c

File tree

1 file changed

+9
-12
lines changed

1 file changed

+9
-12
lines changed

content/en/docs/tasks/tools/install-kubectl-linux.md

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -112,17 +112,11 @@ For example, to download version {{< param "fullversion" >}} on Linux, type:
112112
sudo apt-get update
113113
sudo apt-get install -y ca-certificates curl
114114
```
115-
116-
{{< note >}}
117-
118115
If you use Debian 9 (stretch) or earlier you would also need to install `apt-transport-https`:
119-
120-
```shell
121-
sudo apt-get install -y apt-transport-https
122-
```
123-
124-
{{< /note >}}
125-
116+
```shell
117+
sudo apt-get install -y apt-transport-https
118+
```
119+
126120
2. Download the Google Cloud public signing key:
127121

128122
```shell
@@ -144,7 +138,8 @@ For example, to download version {{< param "fullversion" >}} on Linux, type:
144138

145139
{{% /tab %}}
146140

147-
{{< tab name="Red Hat-based distributions" codelang="bash" >}}
141+
{{% tab name="Red Hat-based distributions" %}}
142+
```bash
148143
cat <<EOF | sudo tee /etc/yum.repos.d/kubernetes.repo
149144
[kubernetes]
150145
name=Kubernetes
@@ -154,7 +149,9 @@ gpgcheck=1
154149
gpgkey=https://packages.cloud.google.com/yum/doc/yum-key.gpg https://packages.cloud.google.com/yum/doc/rpm-package-key.gpg
155150
EOF
156151
sudo yum install -y kubectl
157-
{{< /tab >}}
152+
```
153+
154+
{{% /tab %}}
158155
{{< /tabs >}}
159156

160157
### Install using other package management

0 commit comments

Comments
 (0)