[zh] Update ConfigMap data extraction to use jsonpath instead of grep/sed

pull/39396/head
Arhell 2023-02-12 01:00:08 +02:00
parent c160ad762a
commit 75be9fdf02
1 changed files with 1 additions and 1 deletions

View File

@ -475,7 +475,7 @@ it off regardless. Doing so will disable the ability to use the `--discovery-tok
* 从 API 服务器获取 `cluster-info` 文件:
```shell
kubectl -n kube-public get cm cluster-info -o yaml | grep "kubeconfig:" -A11 | grep "apiVersion" -A10 | sed "s/ //" | tee cluster-info.yaml
kubectl -n kube-public get cm cluster-info -o jsonpath='{.data.kubeconfig}' | tee cluster-info.yaml
```
<!--