Purpose
Install helm that set resources about kubernetes
Install helm
[~/workspace/helm]curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3
[~/workspace/helm]chmod 700 get_helm.sh
[~/workspace/helm]./get_helm.sh
Downloading https://get.helm.sh/helm-v3.4.2-linux-amd64.tar.gz
Verifying checksum... Done.
Preparing to install helm into /usr/local/bin
helm installed into /usr/local/bin/helm
[~/workspace/helm]helm version
version.BuildInfo{Version:"v3.4.2", GitCommit:"23dd3af5e19a02d4f4baa5b2f242645a1a3af629", GitTreeState:"clean", GoVersion:"go1.14.13"}
Add helm stable repo
[~/workspace/helm]helm repo add stable https://charts.helm.sh/stable
"stable" has been added to your repositories
## add other repo
[~/workspace/helm]helm repo add argo https://argoproj.github.io/argo-helm
Search helm list
With repo
[~/workspace/helm]helm search repo stable
With hub
[~/workspace/helm]helm search hub stable
Helm repo update
helm repo update
Hang tight while we grab the latest from your chart repositories...
...Successfully got an update from the "harbor" chart repository
...Successfully got an update from the "elastic" chart repository
...Successfully got an update from the "jenkins" chart repository
...Successfully got an update from the "argo" chart repository
...Successfully got an update from the "nicholaswilde" chart repository
...Successfully got an update from the "bitnami" chart repository
...Successfully got an update from the "stable" chart repository
Update Complete. ⎈Happy Helming!⎈
'Cloud-native > Kubernetes' 카테고리의 다른 글
[Kubernetes]Pull an Image from a Private Registry with Secret in Kubernetes (0) | 2022.05.28 |
---|---|
[Kubernetes]Understand how to use helm chart in Kubernetes (0) | 2022.05.24 |
[Kubernetes]What is RBAC in Kubernetes? (Role based access control) (0) | 2022.05.22 |
[Kubernetes]Use TLS certificates as secret in Kubernetes (0) | 2022.05.21 |
[Kubernetes]Kubernetes ETCD backup and restore (0) | 2022.05.16 |