Skip to content

Commit

Permalink
fr-docs: Update kops Installation Steps (#17805)
Browse files Browse the repository at this point in the history
  • Loading branch information
kihahu authored and k8s-ci-robot committed Nov 26, 2019
1 parent 1a45e5c commit a5a39ae
Showing 1 changed file with 66 additions and 5 deletions.
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

0 comments on commit a5a39ae

Please sign in to comment.