9 Kasım 2022 Çarşamba

helm package seçeneği - tgz uzantılı bir dosya oluşur

Giriş
Helm Chart'ı paketler ve . tgz uzantılı bir dosya oluşur

Örnek
Şöyle yaparız
helm package helm-myapp
Örnek
Şöyle yaparız
>> helm package  demo-chart
---------------------------------------------------------------
Successfully packaged chart and saved it to: /home/ec2-user/chart/demo-chart-0.1.0.tgz
Diğer
Normalde paketleme için Chart.yaml dosyasındaki değerler kullanılır. Bunları ezilebilir

Örnek --version
Şöyle  yaparız
>> helm package [CHART_PATH]      [FLAG]
>> helm package  demo-chart --version 1.1
---------------------------------------------------------------
Successfully packaged chart and saved it to: /home/ec2-user/chart/demo-chart-1.1.tgz

Örnek --version + --app-version + --destionation
Şöyle  yaparız
>> helm package demo-chart \
   --version 1.1 \
   --app-version "latest" \
   --destination ~/helm
---------------------------------------------------------------
Successfully packaged chart and saved it to: /home/ec2-user/helm/demo-chart-1.1.tgz

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...