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

Aceitando licença do minecraft #4

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
31 changes: 30 additions & 1 deletion Day-01.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,12 @@ sudo apt-get install helm

### Windows
```bash
choco install kubernetes-helm
```

### MacOS
```bash
brew install helm
```

### Primeiros passos com o Helm
Expand Down Expand Up @@ -143,6 +145,33 @@ Instalando um novo exemplo de chart:
helm install stable/minecraft --generate-name
```

Deploy do chart:

```bash
WARNING: This chart is deprecated
NAME: minecraft-1631584846
LAST DEPLOYED: Tue Sep 14 02:00:50 2021
NAMESPACE: default
STATUS: deployed
REVISION: 1
TEST SUITE: None
NOTES:
##############################################################################
#### ERROR: You did not agree to the EULA in your 'helm install' call. ####
##############################################################################

This deployment will be incomplete until you read the Minecraft EULA linked
in the README.md, then:

helm upgrade minecraft-1631584846 \
--set minecraftServer.eula=true stable/minecraft
```

Neste exemplo se faz necessário aceitar a licença:

```bash
helm upgrade minecraft-1631584846 --set minecraftServer.eula=true stable/minecraft
```

Listando os charts instalados:

Expand Down Expand Up @@ -217,4 +246,4 @@ Visualizando o histórico de ações de determinado chart deployado:

```bash
helm history giropops
```
```