Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info

이 외에도 자사 제품의 손쉬운 배포 관리를 지원하기 위해,
대부분의 경우, 각 application provider가 직접 chart repo를 노출한다.

예, https://github.com/influxdata/helm-charts

또한, https://github.com/helm/monocular 도 많이 사용한다. → 현재 deprecated 됨.

Add into the repo.

Code Block
languagepy
# Add repository
$ helm repo add bitnami https://charts.bitnami.com/bitnami

# List up repo
$ helm repo list
NAME            URL
stable          https://charts.helm.sh/stable
nginx-stable    https://helm.nginx.com/stable
bitnami         https://charts.bitnami.com/bitnami # bitnami repo가 추가되었다.
monocular       https://helm.github.io/monocular
influxdata      https://helm.influxdata.com/

...

Code Block
languagepy
# Generate Release name.
$ helm install bitnami/nginx -n ns-test01 -g

# Or Specify Release name as "nginx-test".
$ helm install nginx-test bitnami/nginx -n ns-test01

...