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

pull/39439/head
Arhell 2023-02-14 00:15:11 +02:00
parent 65c965592a
commit 778cfdc75a
1 changed files with 1 additions and 1 deletions

View File

@ -283,7 +283,7 @@ acesso:
* Obtenha o arquivo `cluster-info` do servidor da API:
```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
```
A saída é semelhante a: