설치 확인
helm version

helm repo add 이름 URLhelm repo add kiamol https://kiamol.nethelm repo add bitnami https://charts.bitnami.com/bitnamihelm repo remove 이름helm repo list
helm repo update
helm search repo 애플리케이션이름helm search repo vweb
helm search repo nginx
helm pull 애플리케이션이름helm pull bitnami/nginx
ls
tar xvfz nginx-18.2.4.tgz
ls
ls -al nginx
helm show values 이름helm install --set 환경변수=값… 레이블 애플리케이션이름cd nginxhelm install nginx -f values.yaml .helm ls
kubectl get pods
helm install --set servicePort=8010 --set replicaCount=2 vweb kiamol/vweb --version 1.0.0
helm ls
kubectl get pods
helm uninstall 애플리케이션이름helm uninstall nginxhelm uninstall vwebhelm create 차트이름cd kiamol/ch10
helm create samplechart
ls
ls samplechart
git clone https://github.com/yachae1101/web-ping.git
cd web-pinggit checkout -b releasenano README.mdgit add .
git commit -m "release branch 생성"
git push -u origin release 
https://{username}.github.io/{repositoryname}/https://yachae1101.github.io/web-ping/
cp -r /home/ubuntu/kiamol/ch10/web-ping/ .
ls
helm package 디렉토리/helm package web-ping
ls
helm repo index .vi index.yaml
tree
git add .
git commit -m "chart init"
git push
helm repo add {REPO_NAME} https://{USER_NAME}.github.io/{REPO_NAME}/helm repo add web-ping https://yachae1101.github.io/web-ping/
helm repo list
helm search repo web-ping
helm install web-ping-app web-ping/web-ping
helm ls