Skip to content

Commit

Permalink
fix: Quote kubeconfig and add sleep to deploy step (#108)
Browse files Browse the repository at this point in the history
Signed-off-by: Ross Fairbanks <[email protected]>
  • Loading branch information
rossf7 committed Jun 27, 2024
1 parent 6be6e66 commit 6042e63
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/benchmark-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
with:
version: v1.30.2
id: install
- run: mkdir ~/.kube && echo ${{ secrets.KUBECONFIG }} > ~/.kube/config
- run: mkdir ~/.kube && echo "${{ secrets.KUBECONFIG }}" > ~/.kube/config
- name: Select the manifest
run: |
MANIFEST=projects/${{ inputs.cncf_project }}
Expand All @@ -51,6 +51,8 @@ jobs:
run: |
kubectl apply -f manifest.yaml
sleep 10
kubectl wait pod \
--all \
--for=condition=Ready \
Expand All @@ -66,7 +68,7 @@ jobs:
with:
version: v1.30.2
id: install
- run: mkdir ~/.kube && echo ${{ secrets.KUBECONFIG }} > ~/.kube/config
- run: mkdir ~/.kube && echo "${{ secrets.KUBECONFIG }}" > ~/.kube/config

- uses: actions/download-artifact@v4
with:
Expand Down

0 comments on commit 6042e63

Please sign in to comment.