From e48448128d0d2d69e2699976b8e3a0bda09a0302 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Petazzoni?= Date: Fri, 3 Dec 2021 12:03:26 +0100 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20=20Update=20Stern=20inform?= =?UTF-8?q?ation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- slides/k8s/logs-cli.md | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/slides/k8s/logs-cli.md b/slides/k8s/logs-cli.md index 8c426a0b..9827b431 100644 --- a/slides/k8s/logs-cli.md +++ b/slides/k8s/logs-cli.md @@ -32,8 +32,8 @@ ## Stern -[Stern](https://github.com/wercker/stern) is an open source project -by [Wercker](http://www.wercker.com/). +[Stern](https://github.com/stern/stern) is an open source project +originally by [Wercker](http://www.wercker.com/). From the README: @@ -63,22 +63,17 @@ Exactly what we need! ## Installing Stern -- Stern is written in Go, and Go programs are usually shipped as a single binary +- Stern is written in Go -- We just need to download that binary and put it in our `PATH`! +- Go programs are usually very easy to install -- Binary releases are available [here](https://github.com/wercker/stern/releases) on GitHub + (no dependencies, extra libraries to install, etc) -- The following commands will install Stern on a Linux Intel 64 bit machine: - ```bash - sudo curl -L -o /usr/local/bin/stern \ - https://github.com/wercker/stern/releases/download/1.11.0/stern_linux_amd64 - sudo chmod +x /usr/local/bin/stern - ``` +- Binary releases are available [here](https://github.com/stern/stern/releases) on GitHub -- On macOS, we can also `brew install stern` or `sudo port install stern` +- Stern is also available through most package managers - + (e.g. on macOS, we can `brew install stern` or `sudo port install stern`) ---