We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a22235a commit 8ac6af4Copy full SHA for 8ac6af4
.github/workflows/helm-chart-smoketest.yml
@@ -206,11 +206,13 @@ jobs:
206
# Get install pod logs
207
IFS=',' read -ra shims <<< "${{ env.SAMPLE_SHIMS }}"
208
for shim_file in "${shims[@]}"; do
209
+ cd ${{ github.workspace }}/config/samples
210
shim_name="$(cat $shim_file | yq '.metadata.name')"
211
install_pod="$(kubectl get pods -n rcm --no-headers -o name | grep $shim_name-install)"
212
kubectl describe -n rcm $install_pod || true
213
kubectl logs -n rcm -c downloader $install_pod || true
214
kubectl logs -n rcm -c provisioner $install_pod || true
215
+ cd -
216
done
217
218
# RCM pod logs
0 commit comments