Skip to content

Commit

Permalink
quote
Browse files Browse the repository at this point in the history
  • Loading branch information
porridge committed May 23, 2024
1 parent 080f1c4 commit 3dff1c0
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -149,16 +149,16 @@ jobs:
echo busybox:latest >> images.txt
echo debian:sid >> images.txt
kubectl create --dry-run=client -o yaml --namespace=$NS configmap "$name" --from-file="images.txt=images.txt" > manifest.yaml
kubectl create --dry-run=client -o yaml --namespace="$NS" configmap "$name" --from-file="images.txt=images.txt" > manifest.yaml
echo --- >> manifest.yaml
./deploy/deploy \
--version="$(git rev-parse --short HEAD)" \
--k8s-flavor=vanilla \
--collect-metrics \
"${name}" >> manifest.yaml
kubectl create ns $NS
kubectl apply -n $NS -f manifest.yaml
kubectl create ns "$NS"
kubectl apply -n "$NS" -f manifest.yaml
- name: Wait for prefetcher to finish
run: |
Expand Down Expand Up @@ -190,12 +190,12 @@ jobs:
- name: Dump debug info
if: always()
run: |
kubectl -n $NS get -o yaml daemonsets,pods,services,roles,rolebindings
kubectl -n $NS get events
kubectl -n $NS logs -l app=basic-metrics --all-containers=true --ignore-errors=true --tail=-1
kubectl -n $NS logs -l app=basic-metrics --all-containers=true --ignore-errors=true --tail=-1 --previous=true
kubectl -n $NS logs -l app=basic --all-containers=true --ignore-errors=true --tail=-1
kubectl -n $NS logs -l app=basic --all-containers=true --ignore-errors=true --tail=-1 --previous=true
kubectl -n "$NS" get -o yaml daemonsets,pods,services,roles,rolebindings
kubectl -n "$NS" get events
kubectl -n "$NS" logs -l app=basic-metrics --all-containers=true --ignore-errors=true --tail=-1
kubectl -n "$NS" logs -l app=basic-metrics --all-containers=true --ignore-errors=true --tail=-1 --previous=true
kubectl -n "$NS" logs -l app=basic --all-containers=true --ignore-errors=true --tail=-1
kubectl -n "$NS" logs -l app=basic --all-containers=true --ignore-errors=true --tail=-1 --previous=true
- name: Teardown cluster
if: always()
Expand Down

0 comments on commit 3dff1c0

Please sign in to comment.