[pt-br] Replace fullversion shortcode with skew shortcode.

* Replace the occurrences of the fullversion shortcode with the skew shortcode and prepend a "v" to each occurrence.
pull/41028/head
Mauren Berti 2023-05-08 11:55:13 -04:00
parent d1da69fbf7
commit 1dc96fb4fa
No known key found for this signature in database
GPG Key ID: 6A17C3632CEC4B05
3 changed files with 4 additions and 4 deletions

View File

@ -42,7 +42,7 @@ FOO_SERVICE_PORT=<a porta em que o serviço está executando>
```
Serviços possuem endereço IP dedicado e são disponibilizados para o contêiner via DNS,
se possuírem [DNS addon](https://releases.k8s.io/{{< param "fullversion" >}}/cluster/addons/dns/) habilitado.
se possuírem [DNS addon](https://releases.k8s.io/v{{< skew currentPatchVersion >}}/cluster/addons/dns/) habilitado.

View File

@ -29,7 +29,7 @@ Para plugins de CNI, isso equivale ao valor `cni`.
## Requisitos de plugins de Rede
Além de prover a [interface `NetworkPlugin`](https://github.com/kubernetes/kubernetes/tree/{{< param "fullversion" >}}/pkg/kubelet/dockershim/network/plugins.go)
Além de prover a [interface `NetworkPlugin`](https://github.com/kubernetes/kubernetes/tree/v{{< skew currentPatchVersion >}}/pkg/kubelet/dockershim/network/plugins.go)
para configuração da rede do pod, o plugin pode necessitar de suporte específico ao
kube-proxy.
O proxy iptables obviamente depende do iptables, e o plugin deve garantir que o

View File

@ -32,10 +32,10 @@ Existem os seguintes métodos para instalar o kubectl no Linux:
{{< note >}}
Para fazer o download de uma versão específica, substitua a parte `$(curl -L -s https://dl.k8s.io/release/stable.txt)` do comando pela versão específica.
Por exemplo, para fazer download da versão {{< param "fullversion" >}} no Linux, digite:
Por exemplo, para fazer download da versão v{{< skew currentPatchVersion >}} no Linux, digite:
```bash
curl -LO https://dl.k8s.io/release/{{< param "fullversion" >}}/bin/linux/amd64/kubectl
curl -LO https://dl.k8s.io/release/v{{< skew currentPatchVersion >}}/bin/linux/amd64/kubectl
```
{{< /note >}}