@@ -15,11 +15,45 @@ cluster. Those components are also shipped in container images as part of the
15
15
official release process. All binaries as well as container images are available
16
16
for multiple operating systems as well as hardware architectures.
17
17
-->
18
- Kubernetes 为每个组件提供二进制文件以及一组标准的客户端应用程序用来引导集群或与集群交互 。
18
+ Kubernetes 为每个组件提供二进制文件以及一组标准的客户端应用来引导集群或与集群交互 。
19
19
像 API 服务器这样的组件能够在集群内的容器镜像中运行。
20
- 作为官方发布过程的一部分,这些组件也以容器镜像的形式提供 。
20
+ 这些组件作为官方发布过程的一部分,也以容器镜像的形式提供 。
21
21
所有二进制文件和容器镜像都可用于多种操作系统和硬件架构。
22
22
23
+ ### kubectl
24
+
25
+ <!-- overview -->
26
+
27
+ <!--
28
+ The Kubernetes command-line tool, [kubectl](/docs/reference/kubectl/kubectl/), allows
29
+ you to run commands against Kubernetes clusters.
30
+
31
+ You can use kubectl to deploy applications, inspect and manage cluster resources,
32
+ and view logs. For more information including a complete list of kubectl operations, see the
33
+ [`kubectl` reference documentation](/docs/reference/kubectl/).
34
+ -->
35
+ Kubernetes 命令行工具 [ kubectl] ( /zh-cn/docs/reference/kubectl/kubectl/ )
36
+ 允许你对 Kubernetes 集群执行命令。
37
+
38
+ 你可以使用 kubectl 部署应用,还可以检查和管理集群资源以及查看日志。
39
+ 有关包括 kubectl 完整操作列表在内的更多信息,请参阅
40
+ [ ` kubectl ` 参考文档] ( /zh-cn/docs/reference/kubectl/ ) 。
41
+
42
+ <!--
43
+ kubectl is installable on a variety of Linux platforms, macOS and Windows.
44
+ Find your preferred operating system below.
45
+
46
+ - [Install kubectl on Linux](/docs/tasks/tools/install-kubectl-linux)
47
+ - [Install kubectl on macOS](/docs/tasks/tools/install-kubectl-macos)
48
+ - [Install kubectl on Windows](/docs/tasks/tools/install-kubectl-windows)
49
+ -->
50
+ kubectl 可安装在各种 Linux 平台、macOS 和 Windows 上。
51
+ 在下方找到你首选的操作系统。
52
+
53
+ - [ 在 Linux 上安装 kubectl] ( /zh-cn/docs/tasks/tools/install-kubectl-linux )
54
+ - [ 在 macOS 上安装 kubectl] ( /zh-cn/docs/tasks/tools/install-kubectl-macos )
55
+ - [ 在 Windows 上安装 kubectl] ( /zh-cn/docs/tasks/tools/install-kubectl-windows )
56
+
23
57
<!--
24
58
## Container Images
25
59
@@ -59,7 +93,7 @@ container image name, for example
59
93
`registry.k8s.io/kube-apiserver-arm64:v{{< skew currentPatchVersion >}}`. All
60
94
those derivations are signed in the same way as the multi-architecture manifest lists.
61
95
-->
62
- 所有容器镜像都支持多架构,容器运行时应根据下层平台选择正确的镜像 。
96
+ 所有容器镜像都支持多架构,而容器运行时应根据下层平台选择正确的镜像 。
63
97
也可以通过给容器镜像名称加后缀来拉取适合特定架构的镜像,例如
64
98
` registry.k8s.io/kube-apiserver-arm64:v{{< skew currentPatchVersion >}} ` 。
65
99
所有这些派生镜像都以与多架构清单列表相同的方式签名。
@@ -69,8 +103,8 @@ The Kubernetes project publishes a list of signed Kubernetes container images
69
103
in [SPDX 2.3](https://spdx.dev/specifications/) format.
70
104
You can fetch that list using:
71
105
-->
72
- Kubernetes 项目以 [ SPDX 2.3] ( https://spdx.dev/specifications/ ) 格式发布已签名的 Kubernetes 容器镜像列表。
73
- 你可以使用以下方法获取该列表:
106
+ Kubernetes 项目以 [ SPDX 2.3] ( https://spdx.dev/specifications/ ) 格式发布已签名的
107
+ Kubernetes 容器镜像列表。 你可以使用以下方法获取该列表:
74
108
75
109
``` shell
76
110
curl -Ls " https://sbom.k8s.io/$( curl -Ls https://dl.k8s.io/release/stable.txt) /release" | grep " SPDXID: SPDXRef-Package-registry.k8s.io" | grep -v sha256 | cut -d- -f3- | sed ' s/-/\//' | sed ' s/-v1/:v1/'
@@ -91,47 +125,7 @@ To manually verify signed container images of Kubernetes core components, refer
91
125
92
126
<!--
93
127
## Binaries
94
-
95
- Find links to download Kubernetes components (and their checksums) in the
96
- [CHANGELOG](https://github.com/kubernetes/kubernetes/tree/master/CHANGELOG) files.
97
-
98
- Alternately, use [downloadkubernetes.com](https://www.downloadkubernetes.com/) to filter by version and architecture.
99
128
-->
100
129
## 二进制 {#binaries}
101
130
102
- 在 [ CHANGELOG] ( https://github.com/kubernetes/kubernetes/tree/master/CHANGELOG ) 文件中找到下载 Kubernetes 组件(及其校验和)的链接。
103
-
104
- 或者,使用 [ downloadkubernetes.com] ( https://www.downloadkubernetes.com/ ) 按版本和架构进行过滤。
105
-
106
- ### kubectl
107
-
108
- <!-- overview -->
109
-
110
- <!--
111
- The Kubernetes command-line tool, [kubectl](/docs/reference/kubectl/kubectl/), allows
112
- you to run commands against Kubernetes clusters.
113
-
114
- You can use kubectl to deploy applications, inspect and manage cluster resources,
115
- and view logs. For more information including a complete list of kubectl operations, see the
116
- [`kubectl` reference documentation](/docs/reference/kubectl/).
117
- -->
118
- Kubernetes 命令行工具 [ kubectl] ( /zh-cn/docs/reference/kubectl/kubectl/ ) 允许你对 Kubernetes 集群执行命令。
119
-
120
- 你可以使用 kubectl 部署应用程序、检查和管理集群资源以及查看日志。
121
- 有关更多信息,包括 kubectl 操作的完整列表,请参阅
122
- [ ` kubectl ` 参考文档] ( /zh-cn/docs/reference/kubectl/ ) 。
123
-
124
- <!--
125
- kubectl is installable on a variety of Linux platforms, macOS and Windows.
126
- Find your preferred operating system below.
127
-
128
- - [Install kubectl on Linux](/docs/tasks/tools/install-kubectl-linux)
129
- - [Install kubectl on macOS](/docs/tasks/tools/install-kubectl-macos)
130
- - [Install kubectl on Windows](/docs/tasks/tools/install-kubectl-windows)
131
- -->
132
- kubectl 可安装在各种 Linux 平台、macOS 和 Windows 上。
133
- 在下方找到你首选的操作系统。
134
-
135
- - [ 在 Linux 上安装 kubectl] ( /zh-cn/docs/tasks/tools/install-kubectl-linux )
136
- - [ 在 macOS 上安装 kubectl] ( /zh-cn/docs/tasks/tools/install-kubectl-macos )
137
- - [ 在 Windows 上安装 kubectl] ( /zh-cn/docs/tasks/tools/install-kubectl-windows )
131
+ {{< release-binaries >}}
0 commit comments