Skip to content

Commit 6959e20

Browse files
authored
Merge pull request #36571 from yanrongshi/zh-cn]add-huawei-cloud-on-overview.md
[zh-cn ]Sync overview.md
2 parents 3332aae + 68c21b5 commit 6959e20

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

content/zh-cn/docs/concepts/security/overview.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ IaaS 提供商 | 链接 |
101101
Alibaba Cloud | https://www.alibabacloud.com/trust-center |
102102
Amazon Web Services | https://aws.amazon.com/security/ |
103103
Google Cloud Platform | https://cloud.google.com/security/ |
104+
Huawei Cloud | https://www.huaweicloud.com/securecenter/overallsafety.html |
104105
IBM Cloud | https://www.ibm.com/cloud/security |
105106
Microsoft Azure | https://docs.microsoft.com/en-us/azure/security/azure-security |
106107
Oracle Cloud Infrastructure | https://www.oracle.com/security/ |

content/zh-cn/docs/tasks/debug/debug-application/debug-running-pod.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ https://github.com/GoogleContainerTools/distroless).
525525
-->
526526
## 使用临时调试容器来进行调试 {#ephemeral-container}
527527

528-
{{< feature-state state="beta" for_k8s_version="v1.23" >}}
528+
{{< feature-state state="stable" for_k8s_version="v1.25" >}}
529529

530530
当由于容器崩溃或容器镜像不包含调试程序(例如[无发行版镜像](https://github.com/GoogleContainerTools/distroless)等)
531531
而导致 `kubectl exec` 无法运行时,{{< glossary_tooltip text="临时容器" term_id="ephemeral-container" >}}对于排除交互式故障很有用。
@@ -537,7 +537,7 @@ You can use the `kubectl debug` command to add ephemeral containers to a
537537
running Pod. First, create a pod for the example:
538538
539539
```shell
540-
kubectl run ephemeral-demo --image=k8s.gcr.io/pause:3.1 --restart=Never
540+
kubectl run ephemeral-demo --image=registry.k8s.io/pause:3.1 --restart=Never
541541
```
542542
543543
The examples in this section use the `pause` container image because it does not
@@ -690,6 +690,7 @@ this scenario using `kubectl run`:
690690
```shell
691691
kubectl run myapp --image=busybox:1.28 --restart=Never -- sleep 1d
692692
```
693+
693694
<!--
694695
Run this command to create a copy of `myapp` named `myapp-debug` that adds a
695696
new Ubuntu container for debugging:
@@ -706,6 +707,7 @@ Defaulting debug container name to debugger-w7xmf.
706707
If you don't see a command prompt, try pressing enter.
707708
root@myapp-debug:/#
708709
```
710+
709711
<!--
710712
* `kubectl debug` automatically generates a container name if you don't choose
711713
one using the `--container` flag.
@@ -822,6 +824,7 @@ Don't forget to clean up the debugging Pod when you're finished with it:
822824
```shell
823825
kubectl delete pod myapp myapp-debug
824826
```
827+
825828
<!--
826829
### Copying a Pod while changing container images
827830
@@ -840,6 +843,7 @@ As an example, create a Pod using `kubectl run`:
840843
```
841844
kubectl run myapp --image=busybox:1.28 --restart=Never -- sleep 1d
842845
```
846+
843847
<!--
844848
Now use `kubectl debug` to make a copy and change its container image
845849
to `ubuntu`:

0 commit comments

Comments
 (0)