Skip to content

Commit ad850cd

Browse files
authored
Merge pull request #47461 from salaxander/merged-main-dev-1.31
Merged main dev 1.31
2 parents 329ee0c + 2a5a9d8 commit ad850cd

File tree

9 files changed

+61
-213
lines changed

9 files changed

+61
-213
lines changed

README-zh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ Then run the following commands (adapted from <https://gist.github.com/tombigel/
284284
```shell
285285
#!/bin/sh
286286

287-
# 这些是原始的 gist 链接,立即链接到我的 gist
287+
# 这些是原始的 gist 链接,现在则会链接到我的 gist
288288
# curl -O https://gist.githubusercontent.com/a2ikm/761c2ab02b7b3935679e55af5d81786a/raw/ab644cb92f216c019a2f032bbf25e258b01d87f9/limit.maxfiles.plist
289289
# curl -O https://gist.githubusercontent.com/a2ikm/761c2ab02b7b3935679e55af5d81786a/raw/ab644cb92f216c019a2f032bbf25e258b01d87f9/limit.maxproc.plist
290290

Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
---
22
title: Unterstützte Versionen der Kubernetes-Dokumentation
3-
content_type: concept
4-
card:
5-
name: about
6-
weight: 10
7-
title: Unterstützte Versionen der Dokumentation
3+
content_type: custom
4+
layout: supported-versions
5+
weight: 10
86
---
97

108
<!-- overview -->
@@ -14,17 +12,3 @@ und die vier vorherigen Versionen von Kubernetes.
1412

1513

1614

17-
<!-- body -->
18-
19-
## Aktuelle Version
20-
21-
Die aktuelle Version ist
22-
[{{< param "version" >}}](/).
23-
24-
## Vorherige Versionen
25-
26-
{{< versions-other >}}
27-
28-
29-
30-

content/en/docs/reference/labels-annotations-taints/_index.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1209,6 +1209,24 @@ Used on: IngressClass
12091209
When a IngressClass resource has this annotation set to `"true"`, new Ingress resource
12101210
without a class specified will be assigned this default class.
12111211

1212+
### nginx.ingress.kubernetes.io/configuration-snippet
1213+
1214+
Type: Annotation
1215+
1216+
Example: `nginx.ingress.kubernetes.io/configuration-snippet: " more_set_headers \"Request-Id: $req_id\";\nmore_set_headers \"Example: 42\";\n"`
1217+
1218+
Used on: Ingress
1219+
1220+
You can use this annotation to set extra configuration on an Ingress that
1221+
uses the [NGINX Ingress Controller] (https://github.com/kubernetes/ingress-nginx/)
1222+
The `configuration-snippet` annotation is ignored
1223+
by default since version 1.9.0 of the ingress controller.
1224+
The NGINX ingress controller setting `allow-snippet-annotations.`
1225+
has to be explicitly enabled to
1226+
use this annotation.
1227+
Enabling the annotation can be dangerous in a multi-tenant cluster, as it can lead people with otherwise
1228+
limited permissions being able to retrieve all Secrets in the cluster.
1229+
12121230
### kubernetes.io/ingress.class (deprecated)
12131231

12141232
Type: Annotation

content/en/docs/tasks/debug/debug-cluster/troubleshoot-kubectl.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ Verify the status of the load balancer (if used) to ensure it is healthy and for
112112
traffic to the API server.
113113

114114
## TLS problems
115+
* Additional tools required - `base64` and `openssl` version 3.0 or above.
115116

116117
The Kubernetes API server only serves HTTPS requests by default. In that case TLS problems
117118
may occur due to various reasons, such as certificate expiry or chain of trust validity.
@@ -123,23 +124,23 @@ directory. The `certificate-authority` attribute contains the CA certificate and
123124
Verify the expiry of these certificates:
124125

125126
```shell
126-
openssl x509 -noout -dates -in $(kubectl config view --minify --output 'jsonpath={.clusters[0].cluster.certificate-authority}')
127+
kubectl config view --flatten --output 'jsonpath={.clusters[0].cluster.certificate-authority-data}' | base64 -d | openssl x509 -noout -dates
127128
```
128129

129130
output:
130131
```console
131-
notBefore=Sep 2 08:34:12 2023 GMT
132-
notAfter=Aug 31 08:34:12 2033 GMT
132+
notBefore=Feb 13 05:57:47 2024 GMT
133+
notAfter=Feb 10 06:02:47 2034 GMT
133134
```
134135

135136
```shell
136-
openssl x509 -noout -dates -in $(kubectl config view --minify --output 'jsonpath={.users[0].user.client-certificate}')
137+
kubectl config view --flatten --output 'jsonpath={.users[0].user.client-certificate-data}'| base64 -d | openssl x509 -noout -dates
137138
```
138139

139140
output:
140141
```console
141-
notBefore=Sep 2 08:34:12 2023 GMT
142-
notAfter=Sep 2 08:34:12 2026 GMT
142+
notBefore=Feb 13 05:57:47 2024 GMT
143+
notAfter=Feb 12 06:02:50 2025 GMT
143144
```
144145

145146
## Verify kubectl helpers
@@ -155,4 +156,4 @@ kubectl config view
155156
```
156157

157158
If you previously used a helper tool (for example, `kubectl-oidc-login`), ensure that it is still
158-
installed and configured correctly.
159+
installed and configured correctly.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
title: क्लस्टर
3+
id: cluster
4+
date: 2019-06-15
5+
full_link:
6+
short_description: >
7+
वर्कर मशीनों का एक समूह, जिन्हें नोड्स भी कहा जाता है, जो कंटेनरीकृत एप्लिकेशन्स चलाते हैं। हर क्लस्टर में कम से कम एक वर्कर नोड होता है।
8+
9+
aka:
10+
tags:
11+
- fundamental
12+
- operation
13+
---
14+
वर्कर मशीनों का एक समूह, जिन्हें {{< glossary_tooltip text="नोड्स" term_id="node" >}} भी कहा जाता है,
15+
जो कंटेनरीकृत एप्लिकेशन्स चलाते हैं। हर क्लस्टर में कम से कम एक वर्कर नोड होता है।
16+
17+
<!--more-->
18+
वर्कर मशीन {{< glossary_tooltip text="पॉड्स" term_id="pod" >}} को होस्ट करते है जो कि एप्लिकेशन वर्कलोड के घटक हैं।
19+
{{< glossary_tooltip text="कंट्रोल प्लेन" term_id="control-plane" >}} क्लस्टर में वर्कर नोड्स और पॉड्स का प्रबंधन करता है। एक प्रोडक्शन वातावरण में, कंट्रोल प्लेन आमतौर पर
20+
कई कंप्यूटरों पर चलता है और एक क्लस्टर आमतौर पर कई नोड्स चलाता है, जो बिना किसी विफलता के और उच्च उपलब्धता प्रदान करता है।

content/it/docs/concepts/cluster-administration/federation.md

Lines changed: 0 additions & 184 deletions
This file was deleted.

content/ja/docs/concepts/extend-kubernetes/operator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ kubectl edit SampleDB/example-database # 手動でいくつかの設定を変更
8989
* ユースケースに合わせた、既製のオペレーターを[OperatorHub.io](https://operatorhub.io/)から見つけます
9090
* 自前のオペレーターを書くために既存のツールを使います、例:
9191
* [Charmed Operator Framework](https://juju.is/)
92-
* [Java Operator SDK](https://github.com/java-operator-sdk/java-operator-sdk)
92+
* [Java Operator SDK](https://github.com/operator-framework/java-operator-sdk)
9393
* [Kopf](https://github.com/nolar/kopf) (Kubernetes Operator Pythonic Framework)
9494
* [kube-rs](https://kube.rs/) (Rust)
9595
* [kubebuilder](https://book.kubebuilder.io/)を使います

content/zh-cn/docs/concepts/services-networking/ingress.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ that is used for a workload. If you used a cluster-scoped parameter then either:
581581
the application team make changes to the cluster-scoped parameters resource.
582582
-->
583583
名字空间作用域的参数帮助集群操作者将对工作负载所需的配置数据(比如:负载均衡设置、
584-
API 网关定义)的控制权力委派出去。如果你使用集群作用域的参数,那么你将面临一下情况之一
584+
API 网关定义)的控制权力委派出去。如果你使用集群作用域的参数,那么你将面临以下情况之一
585585

586586
- 每次应用一项新的配置变更时,集群操作团队需要批准其他团队所作的修改。
587587
- 集群操作团队必须定义具体的准入控制规则,比如 [RBAC](/zh-cn/docs/reference/access-authn-authz/rbac/)

data/i18n/de/de.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# i18n strings for the German (main) site.
22

3+
[docs_version_current]
4+
other = "(dieser Dokumentation)"
5+
6+
[docs_version_latest_heading]
7+
other = "Aktuelle Version"
8+
9+
[docs_version_other_heading]
10+
other = "Vorherige Versionen"
11+
312
[deprecation_warning]
413
other = " Die Dokumentation wird nicht mehr aktiv gepflegt. Die aktuell angezeigte Version ist eine statische Momentaufnahme. Aktuelle Dokumentation finden Sie unter "
514

0 commit comments

Comments
 (0)