...
Info |
---|
이 외에도 자사 제품의 손쉬운 배포 관리를 지원하기 위해, 예, https://github.com/influxdata/helm-charts
|
Add into the repo.
Code Block | ||
---|---|---|
| ||
# 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 | ||
---|---|---|
| ||
# 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 |
...