Skip to content

Commit

Permalink
Updates cert-manager cmctl install to remove go dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholaskuechler committed Feb 29, 2024
1 parent 0c6429d commit 9357c5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/install-understack-ubuntu-k3s.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Install some packages we'll need later and some useful troubleshooting utilities.
```bash
apt-get -y install curl jq yq net-tools telnet git apt-transport-https golang-go
apt-get -y install curl jq yq net-tools telnet git apt-transport-https
```

## Update Ubuntu
Expand Down Expand Up @@ -65,7 +65,7 @@ References:
## Install Cert Manager cmctl

```bash
OS=$(go env GOOS); ARCH=$(go env GOARCH); curl -fsSL -o cmctl.tar.gz https://github.com/cert-manager/cert-manager/releases/latest/download/cmctl-$OS-$ARCH.tar.gz
curl -fsSL -o cmctl.tar.gz https://github.com/cert-manager/cert-manager/releases/latest/download/cmctl-linux-amd64.tar.gz
tar xzf cmctl.tar.gz
sudo mv cmctl /usr/local/bin
```
Expand Down

0 comments on commit 9357c5c

Please sign in to comment.