Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/helm-chart-smoketest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -206,11 +206,13 @@ jobs:
# Get install pod logs
IFS=',' read -ra shims <<< "${{ env.SAMPLE_SHIMS }}"
for shim_file in "${shims[@]}"; do
cd ${{ github.workspace }}/config/samples
shim_name="$(cat $shim_file | yq '.metadata.name')"
install_pod="$(kubectl get pods -n rcm --no-headers -o name | grep $shim_name-install)"
kubectl describe -n rcm $install_pod || true
kubectl logs -n rcm -c downloader $install_pod || true
kubectl logs -n rcm -c provisioner $install_pod || true
cd -
done

# RCM pod logs
Expand Down
Loading