From f6529f938afeff8ffd156389fbdbfd51bcdbcd51 Mon Sep 17 00:00:00 2001
From: Harilou <1084430062@qq.com>
Date: Fri, 13 Dec 2024 11:28:48 +0800
Subject: [PATCH] [zh-cn] Update images.md

Optimize the description of the mirror concept in the Chinese document
content/zh-cn/docs/concepts/containers/images.md

[zh-cn] Update images.md

Optimize the description of the mirror concept in the Chinese document
content/zh-cn/docs/concepts/containers/images.md

[zh-cn] Update images.md

Keep consistent with the original text
Before modification
---
{{< feature-state for_k8s_version="v1.27" state="alpha" >}}
---
After modification
---
{{< feature-state for_k8s_version="v1.32" state="beta" >}}
---
---
 content/zh-cn/docs/concepts/containers/images.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/content/zh-cn/docs/concepts/containers/images.md b/content/zh-cn/docs/concepts/containers/images.md
index ffc1ab2d0a..1f4f5863db 100644
--- a/content/zh-cn/docs/concepts/containers/images.md
+++ b/content/zh-cn/docs/concepts/containers/images.md
@@ -27,7 +27,7 @@ before referring to it in a {{< glossary_tooltip text="Pod" term_id="pod" >}}.
 This page provides an outline of the container image concept.
 -->
 容器镜像(Image)所承载的是封装了应用程序及其所有软件依赖的二进制数据。
-容器镜像是可执行的软件包,可以单独运行;该软件包对所处的运行时环境具有良定(Well Defined)的假定。
+容器镜像是可执行的软件包,可以单独运行;该软件包对所处的运行时环境具有明确定义的运行时环境假定。
 
 你通常会创建应用的容器镜像并将其推送到某仓库(Registry),然后在
 {{< glossary_tooltip text="Pod" term_id="pod" >}} 中引用它。
@@ -428,7 +428,7 @@ kubelet 从不代表一个 Pod 并行地拉取多个镜像。
 -->
 ### 最大并行镜像拉取数量  {#maximum-parallel-image-pulls}
 
-{{< feature-state for_k8s_version="v1.27" state="alpha" >}}
+{{< feature-state for_k8s_version="v1.32" state="beta" >}}
 
 <!--
 When `serializeImagePulls` is set to false, the kubelet defaults to no limit on the
@@ -482,7 +482,7 @@ suffixes.
 镜像索引可以指向镜像的多个[镜像清单](https://github.com/opencontainers/image-spec/blob/master/manifest.md),
 提供特定于体系结构版本的容器。
 这背后的理念是让你可以为镜像命名(例如:`pause`、`example/mycontainer`、`kube-apiserver`)
-的同时,允许不同的系统基于它们所使用的机器体系结构取回正确的二进制镜像。
+的同时,允许不同的系统基于它们所使用的机器体系结构获取正确的二进制镜像。
 
 Kubernetes 自身通常在命名容器镜像时添加后缀 `-$(ARCH)`。
 为了向前兼容,请在生成较老的镜像时也提供后缀。