Skip to content

Commit 3b28042

Browse files
committed
Merge remote-tracking branch 'upstream/main' into dev-1.31
2 parents 777c6e3 + cec20f6 commit 3b28042

File tree

73 files changed

+3840
-1071
lines changed

Some content is hidden

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

73 files changed

+3840
-1071
lines changed

assets/scss/_custom.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ body {
507507
h4, h4.alert-heading {
508508
color: #000;
509509
display: block;
510-
float: left;
510+
float: initial;
511511
font-size: 1rem;
512512
padding: 0;
513513
padding-right: 0.5rem;

content/de/OWNERS

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,7 @@ reviewers:
88

99
approvers:
1010
- sig-docs-de-owners
11-
- sig-docs-website-owners # important due to no_parent_owners option
1211

1312
labels:
1413
- area/localization
1514
- language/de
16-
17-
# Disable inheritance so that the localization team don't end up as approvers for all
18-
# languages.
19-
# https://github.com/kubernetes/community/blob/master/communication/website-guidelines.md
20-
options:
21-
no_parent_owners: true

content/de/docs/reference/glossary/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: Standardisiertes Glossar
33
layout: glossary
44
noedit: true
5+
body_class: glossary
56
default_active_tag: fundamental
67
weight: 5
78
card:

content/en/OWNERS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ reviewers:
88

99
approvers:
1010
- sig-docs-en-owners
11+
- sig-docs-website-owners # important due to no_parent_owners option
1112

1213
labels:
1314
- language/en
15+
16+
# Disable inheritance so that the localization team don't end up as approvers for English
17+
# https://github.com/kubernetes/community/blob/master/communication/website-guidelines.md
18+
options:
19+
no_parent_owners: true

content/en/blog/_posts/2024-05-16-contribute-as-sig-docs-reviewer.md

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

content/en/docs/OWNERS

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# See the OWNERS docs at https://go.k8s.io/owners
2+
3+
# Teams and members are visible at https://github.com/orgs/kubernetes/teams.
4+
5+
reviewers:
6+
- sig-docs-en-reviews
7+
8+
approvers:
9+
- sig-docs-en-owners

content/en/docs/concepts/overview/working-with-objects/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ entities to represent the state of your cluster. Specifically, they can describe
2929
* The policies around how those applications behave, such as restart policies, upgrades, and fault-tolerance
3030

3131
A Kubernetes object is a "record of intent"--once you create the object, the Kubernetes system
32-
will constantly work to ensure that object exists. By creating an object, you're effectively
32+
will constantly work to ensure that the object exists. By creating an object, you're effectively
3333
telling the Kubernetes system what you want your cluster's workload to look like; this is your
3434
cluster's *desired state*.
3535

@@ -72,7 +72,7 @@ When you create an object in Kubernetes, you must provide the object spec that d
7272
desired state, as well as some basic information about the object (such as a name). When you use
7373
the Kubernetes API to create the object (either directly or via `kubectl`), that API request must
7474
include that information as JSON in the request body.
75-
Most often, you provide the information to `kubectl` in file known as a _manifest_.
75+
Most often, you provide the information to `kubectl` in a file known as a _manifest_.
7676
By convention, manifests are YAML (you could also use JSON format).
7777
Tools such as `kubectl` convert the information from a manifest into JSON or another supported
7878
serialization format when making the API request over HTTP.
@@ -121,7 +121,7 @@ its desired state.
121121
Within the `.spec` of a StatefulSet is a [template](/docs/concepts/workloads/pods/#pod-templates)
122122
for Pod objects. That template describes Pods that the StatefulSet controller will create in order to
123123
satisfy the StatefulSet specification.
124-
Different kinds of object can also have different `.status`; again, the API reference pages
124+
Different kinds of objects can also have different `.status`; again, the API reference pages
125125
detail the structure of that `.status` field, and its content for each different type of object.
126126

127127
{{< note >}}

content/en/docs/concepts/services-networking/service.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,8 @@ This field follows standard Kubernetes label syntax. Valid values are one of:
368368
| Protocol | Description |
369369
|----------|-------------|
370370
| `kubernetes.io/h2c` | HTTP/2 over cleartext as described in [RFC 7540](https://www.rfc-editor.org/rfc/rfc7540) |
371+
| `kubernetes.io/ws` | WebSocket over cleartext as described in [RFC 6455](https://www.rfc-editor.org/rfc/rfc6455) |
372+
| `kubernetes.io/wss` | WebSocket over TLS as described in [RFC 6455](https://www.rfc-editor.org/rfc/rfc6455) |
371373

372374
### Multi-port Services
373375

content/en/docs/concepts/workloads/pods/pod-lifecycle.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,7 @@ To investigate the root cause of a `CrashLoopBackOff` issue, a user can:
196196
application code. Running this container image locally or in a development
197197
environment can help diagnose application specific issues.
198198

199-
200-
## Container restart policy {#restart-policy}
199+
### Container restart policy {#restart-policy}
201200

202201
The `spec` of a Pod has a `restartPolicy` field with possible values Always, OnFailure,
203202
and Never. The default value is Always.

content/en/docs/tasks/access-application-cluster/service-access-application-cluster.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,9 @@ Here is the configuration file for the application Deployment:
128128
response to a successful request is a hello message:
129129

130130
```none
131-
Hello Kubernetes!
131+
Hello, world!
132+
Version: 2.0.0
133+
Hostname: hello-world-cdd4458f4-m47c8
132134
```
133135

134136
## Using a service configuration file

0 commit comments

Comments
 (0)