helm 차트 삭제 (helm delete) 삭제하는 예시
$ helm ls --all --short $(kubectl config current-context) | xargs -L1 helm delete
삭제
$ helm ls --all $(kubectl config current-context)
NAME REVISION UPDATED STATUS CHART APP VERSION NAMESPACE
google-production-context 25 Wed Sep 11 20:31:07 2019 DELETED prometheus 10.19.0 monitoring
$ helm del --purge $(kubectl config current-context)
release "google-production-context" deleted
--purge를 해야 깔끔히 정리한다 .
helm 차트 추가하기(with 사설 저장소 추가)
$ helm repo add google-community http://charts.google.io
$ helm repo update
$ helm install --name $(kubectl config current-context) google-community/k8s-prometheus
'Cloud' 카테고리의 다른 글
[펌] quagga bgpd 데몬 (0) | 2019.10.04 |
---|---|
[kubernetes] ssl passthrough 정보 (0) | 2019.09.16 |
[kubernetes] Service.spec.type 잘 익숙해지기 (0) | 2019.09.11 |
[kubernetes] 특정 node에만 pod 를 배포하기 (0) | 2019.09.10 |
[kubernetes] dockerfiles env 적용하기 (0) | 2019.09.10 |