4 Aralık 2022 Pazar

helm repo seçeneği - Add, List, Remove, Update, Index Chart Repositories

Giriş
1. Yeni bir repo add seçeneği ile eklenir
2. Repodaki chart güncellemelerini almak için update seçeneği kullanılır
2. Repodaki chartlara bakmak için list seçeneği kullanılır
3. Eğer bir chartlarda bir string aramak istersek search seçeneği kullanılır
Özet şöyle
helm repo list — List all repos your system connected with
helm repo add <Repo-Name> <URL> — will add helm repo to pull various chart from <URL>
helm search hub <search-text> — searches the Artifact Hub, which lists helm charts from dozens of different repositories.
helm search repo <search-text> — searches the repositories that you have added to your local helm client (with helm repo add).
helm repo remove <Repo-Name> — Will remove the added repo to helm client

add
Örnek
Şöyle yaparız
> helm repo add grafana https://grafana.github.io/helm-charts
> helm pull grafana/grafana --untar --untardir helm
index
Yerel bir dizini helm ile sunulacak hale getirir
Örnek
Şöyle yaparız
$ helm repo index /var/www/html/charts/
ls/list
Örnek
Şöyle yaparız
$ helm repo add customrepo http://172.31.3.183/charts/ --username admin --password Admin@123

$ helm repo ls
NAME            URL                        
customrepo      http://172.31.3.183/charts/
Örnek
Benim bilgisayarımdaki çıktı şöyle
> helm repo list
NAME    URL
grafana https://grafana.github.io/helm-charts
search seçeneği
Örnek
Şöyle yaparız
$ helm search repo eck
# Search will not just look for package name, but it will look for string in other fields
as well like description
update
Örnek
Şöyle yaparız
helm repo add jenkinsci https://charts.jenkins.io
helm repo update

Hiç yorum yok:

Yorum Gönder

Cluster Propotional Autoscaler - ReplicaSet Ekler/Siler

Giriş Açıklaması şöyle CPA aims to horizontally scale the number of Pod replicas based on the cluster’s scale. A common example is DNS ser...