Skip to content

Commit 3238ca8

Browse files
authored
Merge pull request #34383 from tengqm/fix-links-5
Batch fix links (5)
2 parents 9ff0fa0 + 7b4293b commit 3238ca8

File tree

3 files changed

+34
-28
lines changed

3 files changed

+34
-28
lines changed

content/en/docs/reference/access-authn-authz/psp-to-pod-security-standards.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ weight: 95
99

1010
<!-- overview -->
1111
The tables below enumerate the configuration parameters on
12-
[PodSecurityPolicy](/docs/concepts/policy/pod-security-policy/) objects, whether the field mutates
12+
[PodSecurityPolicy](/docs/concepts/security/pod-security-policy/) objects, whether the field mutates
1313
and/or validates pods, and how the configuration values map to the
1414
[Pod Security Standards](/docs/concepts/security/pod-security-standards/).
1515

@@ -31,9 +31,9 @@ The fields enumerated in this table are part of the `PodSecurityPolicySpec`, whi
3131
under the `.spec` field path.
3232

3333
<table class="no-word-break">
34-
<caption style="display:none">Mapping PodSecurityPolicySpec fields to Pod Security Standards</caption>
35-
<tbody>
36-
<tr>
34+
<caption style="display:none">Mapping PodSecurityPolicySpec fields to Pod Security Standards</caption>
35+
<tbody>
36+
<tr>
3737
<th><code>PodSecurityPolicySpec</code></th>
3838
<th>Type</th>
3939
<th>Pod Security Standards Equivalent</th>
@@ -54,19 +54,19 @@ under the `.spec` field path.
5454
<td>
5555
<p><b>Baseline</b>: subset of</p>
5656
<ul>
57-
<li><code>AUDIT_WRITE</code></li>
58-
<li><code>CHOWN</code></li>
59-
<li><code>DAC_OVERRIDE</code></li>
60-
<li><code>FOWNER</code></li>
61-
<li><code>FSETID</code></li>
62-
<li><code>KILL</code></li>
63-
<li><code>MKNOD</code></li>
64-
<li><code>NET_BIND_SERVICE</code></li>
65-
<li><code>SETFCAP</code></li>
66-
<li><code>SETGID</code></li>
67-
<li><code>SETPCAP</code></li>
68-
<li><code>SETUID</code></li>
69-
<li><code>SYS_CHROOT</code></li>
57+
<li><code>AUDIT_WRITE</code></li>
58+
<li><code>CHOWN</code></li>
59+
<li><code>DAC_OVERRIDE</code></li>
60+
<li><code>FOWNER</code></li>
61+
<li><code>FSETID</code></li>
62+
<li><code>KILL</code></li>
63+
<li><code>MKNOD</code></li>
64+
<li><code>NET_BIND_SERVICE</code></li>
65+
<li><code>SETFCAP</code></li>
66+
<li><code>SETGID</code></li>
67+
<li><code>SETPCAP</code></li>
68+
<li><code>SETUID</code></li>
69+
<li><code>SYS_CHROOT</code></li>
7070
</ul>
7171
<p><b>Restricted</b>: empty / undefined / nil OR a list containing <i>only</i> <code>NET_BIND_SERVICE</code>
7272
</td>
@@ -236,9 +236,9 @@ The [annotations](/docs/concepts/overview/working-with-objects/annotations/) enu
236236
table can be specified under `.metadata.annotations` on the PodSecurityPolicy object.
237237

238238
<table class="no-word-break">
239-
<caption style="display:none">Mapping PodSecurityPolicy annotations to Pod Security Standards</caption>
240-
<tbody>
241-
<tr>
239+
<caption style="display:none">Mapping PodSecurityPolicy annotations to Pod Security Standards</caption>
240+
<tbody>
241+
<tr>
242242
<th><code>PSP Annotation</code></th>
243243
<th>Type</th>
244244
<th>Pod Security Standards Equivalent</th>

content/en/docs/reference/glossary/extensions.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
title: Extensions
33
id: Extensions
44
date: 2019-02-01
5-
full_link: /docs/concepts/extend-kubernetes/extend-cluster/#extensions
5+
full_link: /docs/concepts/extend-kubernetes/#extensions
66
short_description: >
7-
Extensions are software components that extend and deeply integrate with Kubernetes to support new types of hardware.
7+
Extensions are software components that extend and deeply integrate with Kubernetes to support
8+
new types of hardware.
89
910
aka:
1011
tags:
@@ -15,4 +16,6 @@ tags:
1516

1617
<!--more-->
1718

18-
Many cluster administrators use a hosted or distribution instance of Kubernetes. These clusters come with extensions pre-installed. As a result, most Kubernetes users will not need to install [extensions](/docs/concepts/extend-kubernetes/extend-cluster/#extensions) and even fewer users will need to author new ones.
19+
Many cluster administrators use a hosted or distribution instance of Kubernetes. These clusters
20+
come with extensions pre-installed. As a result, most Kubernetes users will not need to install
21+
[extensions](/docs/concepts/extend-kubernetes/) and even fewer users will need to author new ones.

content/en/docs/reference/glossary/garbage-collection.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Garbage Collection
33
id: garbage-collection
44
date: 2021-07-07
5-
full_link: /docs/concepts/workloads/controllers/garbage-collection/
5+
full_link: /docs/concepts/architecture/garbage-collection/
66
short_description: >
77
A collective term for the various mechanisms Kubernetes uses to clean up cluster
88
resources.
@@ -12,13 +12,16 @@ tags:
1212
- fundamental
1313
- operation
1414
---
15-
Garbage collection is a collective term for the various mechanisms Kubernetes uses to clean up
16-
cluster resources.
15+
16+
Garbage collection is a collective term for the various mechanisms Kubernetes uses to clean up
17+
cluster resources.
1718

1819
<!--more-->
1920

20-
Kubernetes uses garbage collection to clean up resources like [unused containers and images](/docs/concepts/workloads/controllers/garbage-collection/#containers-images),
21+
Kubernetes uses garbage collection to clean up resources like
22+
[unused containers and images](/docs/concepts/architecture/garbage-collection/#containers-images),
2123
[failed Pods](/docs/concepts/workloads/pods/pod-lifecycle/#pod-garbage-collection),
2224
[objects owned by the targeted resource](/docs/concepts/overview/working-with-objects/owners-dependents/),
2325
[completed Jobs](/docs/concepts/workloads/controllers/ttlafterfinished/), and resources
24-
that have expired or failed.
26+
that have expired or failed.
27+

0 commit comments

Comments
 (0)