Kubernetes 실무에서 자주 쓰는 Helm & kubectl 명령어 정리Helm 명령어 모음helm repo add Helm 저장소 등록ex) helm repo add apache-airflow https://airflow.apache.orghelm repo update저장소 업데이트 (차트 버전 최신화)helm search repo Helm 저장소에서 차트 검색helm install [flags]Helm 차트 설치helm upgrade [flags]기존 릴리스 업그레이드helm upgrade --install ...설치되어 있지 않으면 설치, 있으면 업그레이드helm list [-n namespace]설치된 릴리스 목록 조회helm uninstall [-n namespace]Helm 릴..