We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3fde22 commit 4901b9bCopy full SHA for 4901b9b
1 file changed
.github/workflows/test-e2e.yml
@@ -64,7 +64,9 @@ jobs:
64
run: |
65
mkdir -p /tmp/k8s-artifacts
66
kubectl logs -n func-operator-system -l control-plane=controller-manager --tail=-1 --all-containers --prefix --timestamps > /tmp/k8s-artifacts/func-operator.log
67
- kubectl get functions -A -o yaml > /tmp/functions.yaml
+ for resource in functions deployments configmaps; do
68
+ kubectl get ${resource} -A -o yaml > /tmp/k8s-artifacts/${resource}.yaml
69
+ done
70
71
- name: Upload Kubernetes artifacts
72
if: failure()
0 commit comments