Skip to content

Commit

Permalink
Merge pull request #41034 from dipesh-rawat/hi-remove-fullversion-sho…
Browse files Browse the repository at this point in the history
…rtcode

[hi] Replace fullversion shortcode with skew shortcode
  • Loading branch information
k8s-ci-robot authored May 9, 2023
2 parents 1d9010c + 7017b73 commit 7f4f0a5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions content/hi/docs/tasks/tools/install-kubectl-linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ Linux पर kubectl संस्थापित करने के लिए
{{< note >}}
एक विशिष्ट संस्करण डाउनलोड करने के लिए, कमांड के `$(curl -L -s https://dl.k8s.io/release/stable.txt)` हिस्से को विशिष्ट संस्करण से बदलें।

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

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

Expand Down
6 changes: 3 additions & 3 deletions content/hi/docs/tasks/tools/install-kubectl-macos.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,16 @@ macOS पर kubectl संस्थापित करने के लिए
{{< note >}}
एक विशिष्ट संस्करण डाउनलोड करने के लिए, कमांड के इस हिस्से `$(curl -L -s https://dl.k8s.io/release/stable.txt)` को विशिष्ट संस्करण से बदलें।

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

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

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

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

{{< /note >}}
Expand Down
10 changes: 5 additions & 5 deletions content/hi/docs/tasks/tools/install-kubectl-windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ Windows पर kubectl संस्थापित करने के लिए

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

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

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

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

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

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

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

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

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

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

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

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

0 comments on commit 7f4f0a5

Please sign in to comment.