실습
Introduction
helm versioncurl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bashhelm search hub argocdhelm repo add argo https://argoproj.github.io/argo-helmhelm repo listhelm search repo argo{ ls ~/.config/helm/ cat ~/.config/helm/repositories.yaml }{ cat ~/.cache/helm/repository/argo-index.yaml ls ~/.cache/helm/repository }helm repo remove argo{ ll ~/.config/helm/ cat ~/.config/helm/repositories.yaml ll ~/.cache/helm/repository }helm repo add argoo https://argoproj.github.io/argo-helmhelm repo listhelm search repo argoo{ rm ~/.config/helm/* rm ~/.cache/helm/repository/* }helm repo listkubectl create ns argocd{ helm repo add argo https://argoproj.github.io/argo-helm helm install argo-cd argo/argo-cd --namespace argocd }helm listhelm list --all-namespaceskubectl get all -n argocdhelm get values argo-cd -n argocdhelm show values argo/argo-cdhelm upgrade argo-cd argo/argo-cd --set server.service.type=LoadBalancer -n argocdkubectl get svc -n argocdhelm get values argo-cd -n argocdhelm get values argo-cd --all -n argocd | lesshelm get manifest argo-cd -n argocdhelm uninstall argo-cd -n argocdkubectl get all -n argocdcat ~/.cache/helm/repository/argo-index.yamlwget https://argoproj.github.io/argo-helm/index.yamldiff ~/.cache/helm/repository/argo-index.yaml index.yaml -syq '.entries.argo-cd[0]' index.yamlyq '.entries.argo-cd[0].urls[0]' index.yamlls ~/.cache/helm/repositorywget $(yq '.entries.argo-cd[0].urls[0]' index.yaml) -O argocd.tgzhelm install argo-cd ./argocd.tgz -n argocdhelm list -n argocdkubectl get secret -n argocdkubectl describe secrets sh.helm.release.v1.argo-cd.v1 -n argocdkubectl get secrets sh.helm.release.v1.argo-cd.v1 \ -o jsonpath='{.data.release}' -n argocd \ | base64 -d | base64 -d | gzip -d | jqkubectl delete secrets sh.helm.release.v1.argo-cd.v1 -n argocdhelm list -n argocdkubectl get pod -n argocdhelm install argo-cd ./argocd.tgz -n argocdkubectl get pod -n argocdhelm uninstall argo-cd -n argocdkubectl get all -n argocdhelm list -Akubectl delete ns argocd
Helm charts - Part 1
Helm charts - Part 2
Last updated