Skip to content

Commit 7f4f0a5

Browse files
authored
Merge pull request #41034 from dipesh-rawat/hi-remove-fullversion-shortcode
[hi] Replace fullversion shortcode with skew shortcode
2 parents 1d9010c + 7017b73 commit 7f4f0a5

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ Linux पर kubectl संस्थापित करने के लिए
3232
{{< note >}}
3333
एक विशिष्ट संस्करण डाउनलोड करने के लिए, कमांड के `$(curl -L -s https://dl.k8s.io/release/stable.txt)` हिस्से को विशिष्ट संस्करण से बदलें।
3434

35-
उदाहरण के लिए, लिनक्स पर {{< param "fullversion" >}} संस्करण डाउनलोड करने के लिए, टाइप करें:
35+
उदाहरण के लिए, लिनक्स पर {{< skew currentPatchVersion >}} संस्करण डाउनलोड करने के लिए, टाइप करें:
3636

3737
```bash
38-
curl -LO https://dl.k8s.io/release/{{< param "fullversion" >}}/bin/linux/amd64/kubectl
38+
curl -LO https://dl.k8s.io/release/v{{< skew currentPatchVersion >}}/bin/linux/amd64/kubectl
3939
```
4040
{{< /note >}}
4141

content/hi/docs/tasks/tools/install-kubectl-macos.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,16 @@ macOS पर kubectl संस्थापित करने के लिए
3737
{{< note >}}
3838
एक विशिष्ट संस्करण डाउनलोड करने के लिए, कमांड के इस हिस्से `$(curl -L -s https://dl.k8s.io/release/stable.txt)` को विशिष्ट संस्करण से बदलें।
3939

40-
उदाहरण के लिए, Intel macOS पर {{< param "fullversion" >}} संस्करण डाउनलोड करने के लिए, टाइप करें:
40+
उदाहरण के लिए, Intel macOS पर {{< skew currentPatchVersion >}} संस्करण डाउनलोड करने के लिए, टाइप करें:
4141

4242
```bash
43-
curl -LO "https://dl.k8s.io/release/{{< param "fullversion" >}}/bin/darwin/amd64/kubectl"
43+
curl -LO "https://dl.k8s.io/release/v{{< skew currentPatchVersion >}}/bin/darwin/amd64/kubectl"
4444
```
4545

4646
और Apple Silicon macOS के लिए, टाइप करें:
4747

4848
```bash
49-
curl -LO "https://dl.k8s.io/release/{{< param "fullversion" >}}/bin/darwin/arm64/kubectl"
49+
curl -LO "https://dl.k8s.io/release/v{{< skew currentPatchVersion >}}/bin/darwin/arm64/kubectl"
5050
```
5151

5252
{{< /note >}}

content/hi/docs/tasks/tools/install-kubectl-windows.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ Windows पर kubectl संस्थापित करने के लिए
2222

2323
### Windows पर curl के माध्यम से kubectl बाइनरी इंस्टॉल करें
2424

25-
1. [latest release {{< param "fullversion" >}}](https://dl.k8s.io/release/{{< param "fullversion" >}}/bin/windows/amd64/kubectl.exe) डाउनलोड करें।
25+
1. [latest release {{< skew currentPatchVersion >}}](https://dl.k8s.io/release/v{{< skew currentPatchVersion >}}/bin/windows/amd64/kubectl.exe) डाउनलोड करें।
2626

2727
या यदि आपके पास `curl` है, तो इस कमांड का उपयोग करें:
2828

2929
```powershell
30-
curl -LO https://dl.k8s.io/release/{{% param "fullversion" %}}/bin/windows/amd64/kubectl.exe
30+
curl -LO https://dl.k8s.io/release/v{{< skew currentPatchVersion >}}/bin/windows/amd64/kubectl.exe
3131
```
3232

3333
{{< note >}}
@@ -39,7 +39,7 @@ Windows पर kubectl संस्थापित करने के लिए
3939
kubectl चेकसम फाइल डाउनलोड करें:
4040

4141
```powershell
42-
curl -LO https://dl.k8s.io/{{% param "fullversion" %}}/bin/windows/amd64/kubectl.exe.sha256
42+
curl -LO https://dl.k8s.io/v{{< skew currentPatchVersion >}}/bin/windows/amd64/kubectl.exe.sha256
4343
```
4444

4545
चेकसम फ़ाइल से kubectl बाइनरी को मान्य करें:
@@ -143,15 +143,15 @@ kubectl Bash और Zsh के लिए ऑटोकम्प्लेशन
143143
1. इस कमांड से नवीनतम रिलीज डाउनलोड करें:
144144

145145
```powershell
146-
curl -LO https://dl.k8s.io/release/{{% param "fullversion" %}}/bin/windows/amd64/kubectl-convert.exe
146+
curl -LO https://dl.k8s.io/release/v{{< skew currentPatchVersion >}}/bin/windows/amd64/kubectl-convert.exe
147147
```
148148

149149
1. बाइनरी को मान्य करें (वैकल्पिक)
150150

151151
kubectl-convert चेकसम फ़ाइल डाउनलोड करें:
152152

153153
```powershell
154-
curl -LO https://dl.k8s.io/{{% param "fullversion" %}}/bin/windows/amd64/kubectl-convert.exe.sha256
154+
curl -LO https://dl.k8s.io/v{{< skew currentPatchVersion >}}/bin/windows/amd64/kubectl-convert.exe.sha256
155155
```
156156

157157
चेकसम फ़ाइल से kubectl-convert बाइनरी को मान्य करें:

0 commit comments

Comments
 (0)