March 2020
Intermediate to advanced
626 pages
14h 45m
English
To install Helm with TLS (this is ideal for running in production), run the following commands:
$ curl -LOs https://github.com/smallstep/cli/releases/download/v0.10.1/step_0.10.1_linux_amd64.tar.gz$ tar xvfz step_0.10.1_linux_amd64.tar.gz$ sudo mv step_0.10.1/bin/step /bin$ mkdir -p ~/helm$ cd ~/helm$ step certificate create --profile root-ca "My iHelm Root CA" root-ca.crt root-ca.key$ step certificate create intermediate.io inter.crt inter.key --profile intermediate-ca --ca ./root-ca.crt --ca-key ./root-ca.key$ step certificate create helm.io helm.crt helm.key --profile leaf --ca inter.crt --ca-key inter.key --no-password --insecure --not-after 17520h$ step certificate bundle root-ca.crt inter.crt ...
Read now
Unlock full access