File tree Expand file tree Collapse file tree 2 files changed +24
-1
lines changed
Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 4242 - name : Add Helm repositories
4343 run : |
4444 cd applications/mlflow
45- make add-helm-repositories
45+ make debug-env
46+ make debug-helm
4647
4748 - name : Lint charts
4849 run : |
Original file line number Diff line number Diff line change @@ -153,3 +153,25 @@ clean-templates:
153153
154154.PHONY : clean
155155clean : clean-charts clean-templates
156+
157+ # Debug target to print environment information
158+ .PHONY : debug-env
159+ debug-env :
160+ echo " === Debug Environment Information ==="
161+ echo " Shell: $$ {SHELL}"
162+ echo " PATH: $$ {PATH}"
163+ which helm || echo " helm not found in PATH"
164+ echo " Current directory: $$ (pwd)"
165+ echo " Directory listing:"
166+ ls -la
167+ echo " === End Debug Info ==="
168+
169+ # Debug target for testing helm repo commands
170+ .PHONY : debug-helm
171+ debug-helm :
172+ echo " === Testing Helm Commands ==="
173+ echo " Helm version:"
174+ helm version
175+ echo " Testing repo add command:"
176+ helm repo list
177+ echo " === End Helm Tests ==="
You can’t perform that action at this time.
0 commit comments