From f5a803ef103e302d92afa463351f6db977838daa Mon Sep 17 00:00:00 2001
From: David Hoese <david.hoese@ssec.wisc.edu>
Date: Thu, 20 Aug 2020 20:11:18 -0500
Subject: [PATCH] More debug

---
 ci_gcp/gitlab-ci.yaml    | 4 ++++
 helpers/shell_aliases.sh | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/ci_gcp/gitlab-ci.yaml b/ci_gcp/gitlab-ci.yaml
index 577c6bf..7336e07 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 85e74ef..26349c1 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
 
-- 
GitLab