Skip to content

Commit 21a2946

Browse files
Merge branch 'kubernetes:main' into new_branch
2 parents d2f522e + a65b1a3 commit 21a2946

File tree

86 files changed

+4714
-404
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+4714
-404
lines changed

config.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ pygmentsStyle = "emacs"
3030
enableGitInfo = true
3131

3232
# Norwegian ("no") is sometimes but not currently used for testing.
33-
# Hindi is disabled because it's currently in development.
34-
disableLanguages = ["hi", "no"]
33+
disableLanguages = ["no"]
3534

3635
[caches]
3736
[caches.assets]
@@ -445,15 +444,16 @@ language_alternatives = ["en"]
445444

446445
[languages.hi]
447446
title = "Kubernetes"
448-
description = "Production-Grade Container Orchestration"
449-
languageName = "हिन्दी (Hindi)"
447+
description = "प्रोडक्शन-ग्रेड कंटेनर ऑर्केस्ट्रेशन"
448+
languageName = "हिन्दी (Hindi)"
450449
languageNameLatinScript = "Hindi"
451450
weight = 12
452451
contentDir = "content/hi"
453452
languagedirection = "ltr"
454453

455454
[languages.hi.params]
456-
time_format_blog = "01.02.2006"
455+
time_format_blog = "02.01.2006"
456+
# A list of language codes to look for untranslated content, ordered from left to right.
457457
language_alternatives = ["en"]
458458

459459
[languages.vi]

content/en/blog/_posts/2022-08-31-cgroupv2-ga.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The Linux kernel offers two versions of cgroups: cgroup v1 and cgroup v2.
3232
cgroup v2 is the latest version of the Linux cgroup API. cgroup v2 provides a
3333
unified control system with enhanced resource management capabilities.
3434

35-
cgroup v2 has been development in the Linux Kernel since 2016 and in recent
35+
cgroup v2 has been in development in the Linux Kernel since 2016 and in recent
3636
years has matured across the container ecosystem. With Kubernetes 1.25, cgroup
3737
v2 support has graduated to general availability.
3838

content/en/docs/concepts/storage/windows-storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Volume management components are shipped as Kubernetes volume
5656
[plugin](/docs/concepts/storage/volumes/#types-of-volumes).
5757
The following broad classes of Kubernetes volume plugins are supported on Windows:
5858

59-
* [`FlexVolume plugins`](/docs/concepts/storage/volumes/#flexVolume)
59+
* [`FlexVolume plugins`](/docs/concepts/storage/volumes/#flexvolume-deprecated)
6060
* Please note that FlexVolumes have been deprecated as of 1.23
6161
* [`CSI Plugins`](/docs/concepts/storage/volumes/#csi)
6262

content/en/docs/setup/production-environment/tools/kubeadm/install-kubeadm.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -212,28 +212,29 @@ sudo systemctl enable --now kubelet
212212
Install CNI plugins (required for most pod network):
213213

214214
```bash
215-
CNI_VERSION="v0.8.2"
215+
CNI_PLUGINS_VERSION="v1.1.1"
216216
ARCH="amd64"
217-
sudo mkdir -p /opt/cni/bin
218-
curl -L "https://github.com/containernetworking/plugins/releases/download/${CNI_VERSION}/cni-plugins-linux-${ARCH}-${CNI_VERSION}.tgz" | sudo tar -C /opt/cni/bin -xz
217+
DEST="/opt/cni/bin"
218+
sudo mkdir -p "$DEST"
219+
curl -L "https://github.com/containernetworking/plugins/releases/download/${CNI_PLUGINS_VERSION}/cni-plugins-linux-${ARCH}-${CNI_PLUGINS_VERSION}.tgz" | sudo tar -C "$DEST" -xz
219220
```
220221

221222
Define the directory to download command files
222223

223224
{{< note >}}
224225
The `DOWNLOAD_DIR` variable must be set to a writable directory.
225-
If you are running Flatcar Container Linux, set `DOWNLOAD_DIR=/opt/bin`.
226+
If you are running Flatcar Container Linux, set `DOWNLOAD_DIR="/opt/bin"`.
226227
{{< /note >}}
227228

228229
```bash
229-
DOWNLOAD_DIR=/usr/local/bin
230-
sudo mkdir -p $DOWNLOAD_DIR
230+
DOWNLOAD_DIR="/usr/local/bin"
231+
sudo mkdir -p "$DOWNLOAD_DIR"
231232
```
232233

233234
Install crictl (required for kubeadm / Kubelet Container Runtime Interface (CRI))
234235

235236
```bash
236-
CRICTL_VERSION="v1.22.0"
237+
CRICTL_VERSION="v1.25.0"
237238
ARCH="amd64"
238239
curl -L "https://github.com/kubernetes-sigs/cri-tools/releases/download/${CRICTL_VERSION}/crictl-${CRICTL_VERSION}-linux-${ARCH}.tar.gz" | sudo tar -C $DOWNLOAD_DIR -xz
239240
```

content/en/docs/tasks/administer-cluster/topology-manager.md

Lines changed: 137 additions & 74 deletions
Large diffs are not rendered by default.

content/en/examples/admin/konnectivity/konnectivity-server.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ spec:
88
hostNetwork: true
99
containers:
1010
- name: konnectivity-server-container
11-
image: us.gcr.io/k8s-artifacts-prod/kas-network-proxy/proxy-server:v0.0.16
11+
image: registry.k8s.io/kas-network-proxy/proxy-server:v0.0.32
1212
command: ["/proxy-server"]
1313
args: [
1414
"--logtostderr=true",

content/hi/_index.html

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
---
2+
title: "प्रोडक्शन-ग्रेड कंटेनर ऑर्केस्ट्रेशन"
3+
abstract: "स्वचालित कंटेनर डिप्लॉयमेंट, स्केलिंग और प्रबंधन"
4+
cid: home
5+
sitemap:
6+
priority: 1.0
7+
---
8+
9+
{{< blocks/section id="oceanNodes" >}}
10+
{{% blocks/feature image="flower" %}}
11+
[कुबेरनेट्स]({{< relref "/docs/concepts/overview/what-is-kubernetes" >}}), जो K8s के रूप में भी जाना जाता है, कंटेनरीकृत एप्लीकेशन के डिप्लॉयमेंट, स्केलिंग और प्रबंधन को स्वचालित करने के लिए एक ओपन-सोर्स सिस्टम है।
12+
13+
यह आसान प्रबंधन और खोज के लिए लॉजिकल इकाइयों में एक एप्लीकेशन बनाने वाले कंटेनरों को समूहित करता है। कुबेरनेट्स [Google में उत्पादन कार्यभार चलाने के 15 वर्षों के अनुभव](http://queue.acm.org/detail.cfm?id=2898444) पर निर्माणित है, जो समुदाय के सर्वोत्तम-नस्लीय विचारों और प्रथाओं के साथ संयुक्त है।
14+
{{% /blocks/feature %}}
15+
16+
{{% blocks/feature image="scalable" %}}
17+
#### वैश्विक स्केल क्षमता <!--Planet Scale-->
18+
19+
उन्हीं सिद्धांतों पर डिज़ाइन किया गया है जो Google को एक सप्ताह में अरबों कंटेनर चलाने की अनुमति देता है, कुबेरनेट्स आपकी ऑप्स टीम को बढ़ाए बिना स्केल कर सकता है।
20+
21+
{{% /blocks/feature %}}
22+
23+
{{% blocks/feature image="blocks" %}}
24+
#### आवश्यकता अनुसार विकसित होना <!--Never Outgrow-->
25+
26+
चाहे स्थानीय स्तर पर परीक्षण हो या वैश्विक उद्यम चलाना, कुबेरनेट्स आपके एप्लीकेशन को लगातार और आसानी से वितरित करने के लिए बढ़ता है, चाहे आपकी आवश्यकता कितनी भी जटिल क्यों न हो।
27+
28+
{{% /blocks/feature %}}
29+
30+
{{% blocks/feature image="suitcase" %}}
31+
#### K8s कहीं भी चलाएँ
32+
33+
कुबेरनेट्स ओपन सोर्स है जो आपको ऑन-प्रिमाइसेस, हाइब्रिड या पब्लिक क्लाउड इन्फ्रास्ट्रक्चर का लाभ उठाने की स्वतंत्रता देता है, जिससे आप आसानी से वर्कलोड को उस स्थान पर ले जा सकते हैं जहां यह आपके लिए मायने रखता है।
34+
35+
{{% /blocks/feature %}}
36+
37+
{{< /blocks/section >}}
38+
39+
{{< blocks/section id="video" background-image="kub_video_banner_homepage" >}}
40+
<div class="light-text">
41+
<h2>150+ माइक्रोसर्विसेज को कुबेरनेट्स में माइग्रेट करने की चुनौतियाँ</h2>
42+
<p>Sarah Wells द्वारा, Technical Director for Operations and Reliability, Financial Times</p>
43+
<button id="desktopShowVideoButton" onclick="kub.showVideo()">वीडियो देखें</button>
44+
<br>
45+
<br>
46+
<a href="https://events.linuxfoundation.org/kubecon-cloudnativecon-north-america/?utm_source=kubernetes.io&utm_medium=nav&utm_campaign=kccncna21" button id="desktopKCButton">अक्टूबर 11-15, 2021 को KubeCon North America में भाग लें</a>
47+
<br>
48+
<br>
49+
<br>
50+
<br>
51+
<a href="https://events.linuxfoundation.org/kubecon-cloudnativecon-europe-2022/?utm_source=kubernetes.io&utm_medium=nav&utm_campaign=kccnceu22" button id="desktopKCButton">मई 17-20, 2022 को KubeCon Europe में भाग लें</a>
52+
</div>
53+
<div id="videoPlayer">
54+
<iframe data-url="https://www.youtube.com/embed/H06qrNmGqyE?autoplay=1" frameborder="0" allowfullscreen></iframe>
55+
<button id="closeButton"></button>
56+
</div>
57+
{{< /blocks/section >}}
58+
59+
{{< blocks/kubernetes-features >}}
60+
61+
{{< blocks/case-studies >}}

content/hi/case-studies/_index.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: वैयक्तिक अध्ययन
3+
linkTitle: वैयक्तिक अध्ययन
4+
bigheader: कुबेरनेट्स उपयोगकर्ता वैयक्तिक अध्ययन
5+
abstract: उत्पादन में कुबेरनेट्स उपयोग करने वाले उपयोगकर्ताओं का एक संग्रह।
6+
layout: basic
7+
class: gridPage
8+
cid: caseStudies
9+
---

0 commit comments

Comments
 (0)