From b7187c80f714645e11547ad75b174c745777bf8b Mon Sep 17 00:00:00 2001 From: Borrachinha Date: Mon, 13 Sep 2021 22:08:47 -0400 Subject: [PATCH] =?UTF-8?q?Aceitando=20licen=C3=A7a=20do=20minecraft?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Day-01.md | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/Day-01.md b/Day-01.md index da342cf..b8000f3 100644 --- a/Day-01.md +++ b/Day-01.md @@ -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 @@ -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: @@ -217,4 +246,4 @@ Visualizando o histórico de ações de determinado chart deployado: ```bash helm history giropops -``` \ No newline at end of file +```