Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fr-docs: Update kops Installation Steps #17805

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 66 additions & 5 deletions content/fr/docs/setup/custom-cloud/kops.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,20 +39,81 @@ Télécharger kops à partir de la [page de releases](https://github.com/kuberne

Sur macOS:

Téléchargez la dernière version avec la commande:

```shell
curl -LO https://github.com/kubernetes/kops/releases/download/$(curl -s https://api.github.com/repos/kubernetes/kops/releases/latest | grep tag_name | cut -d '"' -f 4)/kops-darwin-amd64
```

Pour télécharger une version spécifique, remplacez le

```shell
$(curl -s https://api.github.com/repos/kubernetes/kops/releases/latest | grep tag_name | cut -d '"' -f 4)
```

partie de la commande avec la version spécifique.

Par exemple, pour télécharger la version 1.15.0 de kops, tapez:

```shell
curl -LO https://github.com/kubernetes/kops/releases/download/1.15.0/kops-darwin-amd64
```

Rendre le binaire exécutable kops.

```shell
curl -OL https://github.com/kubernetes/kops/releases/download/1.10.0/kops-darwin-amd64
chmod +x kops-darwin-amd64
mv kops-darwin-amd64 /usr/local/bin/kops
# Vous pouvez aussi l'installer avec Homebrew
```

Déplacez le fichier binaire kops dans votre chemin.

```shell
sudo mv kops-darwin-amd64 /usr/local/bin/kops
```

Vous pouvez également installer kops en utilisant [Homebrew] (https://brew.sh/).

```shell
brew update && brew install kops
```

Sur Linux:

Téléchargez la dernière version avec la commande:

```shell
curl -LO https://github.com/kubernetes/kops/releases/download/$(curl -s https://api.github.com/repos/kubernetes/kops/releases/latest | grep tag_name | cut -d '"' -f 4)/kops-linux-amd64
```

Pour télécharger une version spécifique, remplacez le

```shell
$(curl -s https://api.github.com/repos/kubernetes/kops/releases/latest | grep tag_name | cut -d '"' -f 4)
```
partie de la commande avec la version spécifique.

Par exemple, pour télécharger la version 1.15.0 de kops, tapez:

```shell
curl -LO https://github.com/kubernetes/kops/releases/download/1.15.0/kops-linux-amd64
```

Rendre le binaire exécutable kops

```shell
wget https://github.com/kubernetes/kops/releases/download/1.10.0/kops-linux-amd64
chmod +x kops-linux-amd64
mv kops-linux-amd64 /usr/local/bin/kops
```

Déplacez le fichier binaire kops dans votre chemin.

```shell
sudo mv kops-linux-amd64 /usr/local/bin/kops
```

Vous pouvez également installer kops en utilisant [Homebrew] (https://docs.brew.sh/Homebrew-on-Linux).

```shell
brew update && brew install kops
```

### (2/5) Créer un domaine route53 pour votre cluster
Expand Down