chore: remove orphaned deployment/polaris-rbac.yaml (PRI-917) #149

Closed
privilegedescalation-engineer[bot] wants to merge 19 commits from gandalf/remove-orphaned-polaris-rbac-pri-917 into main
Showing only changes of commit 1fc5b45aa8 - Show all commits
+5 -7
View File
@@ -50,13 +50,11 @@ jobs:
set -euo pipefail
echo "HOME=${HOME}"
echo "ACTIONS_KUBECONFIG=${ACTIONS_KUBECONFIG:-<unset>}"
echo "Listing /runner contents:"
ls -la /runner/ 2>&1 || echo "/runner does not exist"
echo "Listing /home/runner contents:"
ls -la /home/runner/ 2>&1 || echo "/home/runner does not exist"
echo "Listing /home/github contents:"
ls -la /home/github/ 2>&1 || echo "/home/github does not exist"
for dir in /runner /home/runner/.kube /home/github/.kube "$HOME/.kube"; do
echo "Listing /home/runner/k8s contents:"
ls -la /home/runner/k8s/ 2>&1 || echo "/home/runner/k8s does not exist"
echo "Listing /home/runner/k8s-novolume contents:"
ls -la /home/runner/k8s-novolume/ 2>&1 || echo "/home/runner/k8s-novolume does not exist"
for dir in /home/runner/k8s /home/runner/k8s-novolume "$HOME/.kube" /runner; do
if [ -f "${dir}/config" ]; then
echo "Found kubeconfig at ${dir}/config"
echo "KUBECONFIG=${dir}/config" >> "$GITHUB_ENV"