Skip to content

Latest commit

 

History

History
34 lines (33 loc) · 947 Bytes

README.md

File metadata and controls

34 lines (33 loc) · 947 Bytes

Helm

Создать chart

helm create openresty-art

Проверить генерацию темплейта

helm template app  ./openresty-art/ > tets_deploy.yml

Установить chart из локальной дирректории

helm install open-app --create-namespace --namespace open-app ./openresty-art/

Выгрузить default values в файл

helm show values ./openresty-art/ > origin_values.yaml

Запаковать chart

helm package openresty-art/

Создать index.yml с версиями

helm repo index . --url https://raw.githubusercontent.com/optical4eye/kuber_plan/main/helm/chart

Добавляем chart в helm repo

helm repo add openresty-art https://raw.githubusercontent.com/optical4eye/kuber_plan/main/helm/chart
helm repo update
helm repo list
helm search repo --versions | grep openresty-art
helm list --all-namespaces