diff --git a/ci_gcp/gitlab-ci.yaml b/ci_gcp/gitlab-ci.yaml
index 577c6bf875b3670506b29e61febe3b9d0af167ff..7336e07eec2b17a05317a9bd55358eca868b9bd8 100644
--- a/ci_gcp/gitlab-ci.yaml
+++ b/ci_gcp/gitlab-ci.yaml
@@ -57,7 +57,11 @@ gstest deploy client:
     - ls ~/.kube || echo "Nope"
     - ls ~/.config || echo "Nope"
     - helm_debug ls -a /root
+    - helm_debug ls -a /root/.cache
+    - helm_debug ls -a /root/.config
+    - helm_debug ls -a /root/.helm
     - helm_debug ls -a /root/.kube
+    - helm_debug ls -a /app
     - helm_for_gcp list --kubeconfig /root/.kube/config
     # namespace names are the same as domain names
     - helm_for_gcp upgrade -v 2 --kubeconfig /root/.kube/config --install --namespace $ns -f /apps/values-client.yaml geosphere-client /apps/geosphere-client/
diff --git a/helpers/shell_aliases.sh b/helpers/shell_aliases.sh
index 85e74ef01eec8f5a2052678bf083fb4dca7a6d32..26349c1d1c5448c3a72676ea591d8a36e56c3c11 100644
--- a/helpers/shell_aliases.sh
+++ b/helpers/shell_aliases.sh
@@ -8,7 +8,7 @@ helm() {
 export -f helm
 
 helm_debug() {
-  docker run -t --rm -e HELM_EXPERIMENTAL_OCI="$HELM_EXPERIMENTAL_OCI" -e KUBECONFIG="/root/.kube/config" -v $(pwd):/apps -v ~/.kube:/root/.kube -v ~/.helm:/root/.helm -v ~/.config:/root/.config -v ~/.cache:/root/.cache --entrypoint="" alpine/helm:3.2.3 "$@"
+  docker run -t --rm -e HELM_EXPERIMENTAL_OCI="$HELM_EXPERIMENTAL_OCI" -e KUBECONFIG="/root/.kube/config" -v $(pwd):/apps -v /root/.kube:/root/.kube -v ~/.helm:/root/.helm -v ~/.config:/root/.config -v ~/.cache:/root/.cache --entrypoint="" alpine/helm:3.2.3 "$@"
 }
 export -f helm_debug