@@ -45,35 +45,35 @@ signatures:
45
45
-->
46
46
| 容器镜像 | 支持架构 |
47
47
| ------------------------------------------------------------------- | --------------------------------- |
48
- | registry.k8s.io/kube-apiserver:{{< param "fullversion" >}} | amd64, arm, arm64, ppc64le, s390x |
49
- | registry.k8s.io/kube-controller-manager:{{< param "fullversion" >}} | amd64, arm, arm64, ppc64le, s390x |
50
- | registry.k8s.io/kube-proxy:{{< param "fullversion" >}} | amd64, arm, arm64, ppc64le, s390x |
51
- | registry.k8s.io/kube-scheduler:{{< param "fullversion" >}} | amd64, arm, arm64, ppc64le, s390x |
52
- | registry.k8s.io/conformance:{{< param "fullversion" >}} | amd64, arm, arm64, ppc64le, s390x |
48
+ | registry.k8s.io/kube-apiserver: v {{< skew currentPatchVersion >}} | amd64, arm, arm64, ppc64le, s390x |
49
+ | registry.k8s.io/kube-controller-manager: v {{< skew currentPatchVersion >}} | amd64, arm, arm64, ppc64le, s390x |
50
+ | registry.k8s.io/kube-proxy: v {{< skew currentPatchVersion >}} | amd64, arm, arm64, ppc64le, s390x |
51
+ | registry.k8s.io/kube-scheduler: v {{< skew currentPatchVersion >}} | amd64, arm, arm64, ppc64le, s390x |
52
+ | registry.k8s.io/conformance: v {{< skew currentPatchVersion >}} | amd64, arm, arm64, ppc64le, s390x |
53
53
54
54
<!--
55
55
All container images are available for multiple architectures, whereas the
56
56
container runtime should choose the correct one based on the underlying
57
57
platform. It is also possible to pull a dedicated architecture by suffixing the
58
58
container image name, for example
59
- `registry.k8s.io/kube-apiserver-arm64:{{< param "fullversion" >}}`. All
59
+ `registry.k8s.io/kube-apiserver-arm64:v {{< skew currentPatchVersion >}}`. All
60
60
those derivations are signed in the same way as the multi-architecture manifest lists.
61
61
-->
62
62
所有容器镜像都支持多架构,容器运行时应根据下层平台选择正确的镜像。
63
63
也可以通过给容器镜像名称加后缀来拉取适合特定架构的镜像,例如
64
- ` registry.k8s.io/kube-apiserver-arm64:{{< param "fullversion" >}} ` 。
64
+ ` registry.k8s.io/kube-apiserver-arm64:v {{< skew currentPatchVersion >}} ` 。
65
65
所有这些派生镜像都以与多架构清单列表相同的方式签名。
66
66
67
67
<!--
68
68
The Kubernetes project publishes a list of signed Kubernetes container images
69
- in [SPDX 2.2 ](https://spdx.dev/specifications/) format.
69
+ in [SPDX 2.3 ](https://spdx.dev/specifications/) format.
70
70
You can fetch that list using:
71
71
-->
72
- Kubernetes 项目以 [ SPDX 2.2 ] ( https://spdx.dev/specifications/ ) 格式发布已签名的 Kubernetes 容器镜像列表。
72
+ Kubernetes 项目以 [ SPDX 2.3 ] ( https://spdx.dev/specifications/ ) 格式发布已签名的 Kubernetes 容器镜像列表。
73
73
你可以使用以下方法获取该列表:
74
74
75
75
``` shell
76
- curl -Ls " https://sbom.k8s.io/$( curl -Ls https://dl.k8s.io/release/latest .txt) /release" | awk ' /Package: registry.k8s.io\// {print $3} '
76
+ 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/ '
77
77
```
78
78
79
79
<!--
0 commit comments