Skip to content

Commit

Permalink
Merge pull request #39581 from Arhell/es-imp
Browse files Browse the repository at this point in the history
[es] improvement: kubectl install on windows verify command
  • Loading branch information
k8s-ci-robot authored Mar 3, 2023
2 parents b1ca7a8 + cbe9d2d commit c44bdb2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Existen los siguientes métodos para instalar kubectl en Windows:
- Usando PowerShell puede automatizar la verificación usando el operador `-eq` para obtener un resultado de `True` o `False`:

```powershell
$($(CertUtil -hashfile .\kubectl.exe SHA256)[1] -replace " ", "") -eq $(type .\kubectl.exe.sha256)
$(Get-FileHash -Algorithm SHA256 .\kubectl.exe).Hash -eq $(Get-Content .\kubectl.exe.sha256))
```

1. Agregue el binario a su `PATH`.
Expand Down

0 comments on commit c44bdb2

Please sign in to comment.