Tip

helm

helm repo add hazelcast https://hazelcast-charts.s3.amazonaws.com/

helm repo update

helm repo list

helm search repo hazel # hazel์ด ํฌํ•จ๋œ ๋ชจ๋“ ๊ฒƒ์ด ๋‚˜์˜จ๋‹ค.

helm list -a

helm template

helm์ด ์ ์šฉ๋œํ›„ ๋‚˜์˜ค๋Š” yaml์„ ๋ฐ›์•„๋ณผ์ˆ˜ ์žˆ๋‹ค.

helm template <name> <chart> -f values.yaml --output-dir ~/Desktop/template/

helm template dc-idsvr curity/idsvr -f values.yaml --output-dir ~/Desktop/template/

it creates all yml into output directory

helm values

helm values๊ฐ’์„ ๊ฐ€์ ธ์˜ฌ์ˆ˜ ์žˆ๋‹ค.

helm show values loki/loki-stack > ~/Desktop/values.yaml
helm show values loki/loki-stack --version 2.4.1 > ~/Desktop/values.yaml # version

Last updated