Allow helm dependency refresh

This PS removes --skip-refresh parameter from helm dep up command in
Makefile to let the build process to pull the latest HTK.

Change-Id: I631d8c21a016e6cc54a70e4450794fffceefc5cf
This commit is contained in:
Sergiy Markin 2023-12-19 18:22:08 +00:00
parent c1da28f637
commit 2a689e1ded
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ helm-init: $(addprefix helm-init-,$(CHARTS))
helm-init-%: helm-toolkit
@echo Initializing chart $*
cd charts;if [ -s $*/requirements.yaml ]; then echo "Initializing $*";$(HELM) dep up --skip-refresh $*; fi
cd charts;if [ -s $*/requirements.yaml ]; then echo "Initializing $*";$(HELM) dep up $*; fi
lint: helm-lint gate-lint