Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
guru-aot committed Aug 7, 2024
1 parent 2b1749f commit 66b0016
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions devops/helm/crunchy-postgres/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ upgrade: helm-dep
echo "Error: RESTORE_TARGET is required when RESTORE_ENABLED is true."; \
exit 1; \
fi; \
helm upgrade --install ${NAME} . -n ${NAMESPACE} --set restore.enabled=true --set restore.options.target="${RESTORE_TARGET}" -f values.yaml; \
helm upgrade --install ${NAME} . -n ${NAMESPACE} --set restore.enabled=${RESTORE_ENABLED} --set restore.options.target="${RESTORE_TARGET}" -f values.yaml; \
else \
helm upgrade --install ${NAME} . -n ${NAMESPACE} --set restore.enabled=false -f values.yaml; \
helm upgrade --install ${NAME} . -n ${NAMESPACE} --set restore.enabled=${RESTORE_ENABLED} -f values.yaml; \
fi

.PHONY: uninstall
Expand Down

0 comments on commit 66b0016

Please sign in to comment.