Skip to content

Commit

Permalink
Adiciona descrição mais clara de como criar os manifestos
Browse files Browse the repository at this point in the history
  • Loading branch information
brenob6 committed Dec 8, 2024
1 parent 5b72d34 commit 371dbe5
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docs/2-Conectando/ESO-Vault.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ nodes:
- role: worker
```
Salve a configuração acima em um arquivo e execute o comando abaixo:
```sh
kind create cluster --config <arquivo>
```

## Adicionando Vault ao cluster

Podemos utilizar o Helm para instalar o Vault no cluster.
Expand Down Expand Up @@ -104,6 +110,12 @@ spec:
key: "token" # Chave do token no secret
```
Para criar o recurso, salve a configuração em um arquivo e execute.
```sh
kubectl apply -f <arquivo>
```

## Criando um ExternalSecret

O ExternalSecret é responsável por criar a secret no cluster Kubernetes com o segredo do Vault.
Expand All @@ -128,6 +140,12 @@ spec:
property: segredo1
```
Para criar o recurso, salve a configuração em um arquivo e execute.
```sh
kubectl apply -f <arquivo>
```

Após a criação do ExternalSecret, a secret pode ser verificada utilizando o comando:

```yaml
Expand Down

0 comments on commit 371dbe5

Please sign in to comment.