helm repo add codr https://helm.codrml.com
helm repo list
# codr https://helm.codrml.com
helm install --dry-run --debug RELEASE_NAME ./charts/CHART_NAME -n NAMESPACE
# Build and index the charts
cd charts
helm package *
helm repo index --url /charts .
mv index.yaml ../
# build the docker image
cd ../
docker build -t codr-client-helm . -f Dockerfile.local