MongoDB
설치
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo update bitnami \
&& helm search repo bitnami/mongodb -l
helm pull bitnami/mongodb --version 15.6.14
helm show values mongodb-15.6.14.tgz \
> mongodb-15.6.14.yaml
mongodb-values.yaml
useStatefulSet: true
resourcesPreset: none
resources: {}
helm template mongodb mongodb-15.6.14.tgz \
-n storage \
-f mongodb-values.yaml \
> mongodb.yaml
helm upgrade mongodb mongodb-15.6.14.tgz \
--install \
--history-max 5 \
-n storage \
-f mongodb-values.yaml