Skip to content

Commit

Permalink
Use latest action for Kind
Browse files Browse the repository at this point in the history
  • Loading branch information
rhkp committed May 16, 2024
1 parent 66189ef commit d9dda5c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/mtav7.0.2-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
needs: build
steps:
- name: Create k8s Kind Cluster
uses: helm/kind-action@v1.8.0
uses: helm/kind-action@v1.10.0
with:
cluster_name: kind

Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
# deploy the manifests created by the ${{ steps.build-image.outputs.image }} image
kubectl apply -f manifests/
sleep 5
kubectl get deployment mta-analysis -o jsonpath={.spec.template.spec.containers[]}
kubectl get deployment mta-analysis -o jsonpath='{.spec.template.spec.containers[]}'
# give the pod time to start
sleep 15
kubectl get pods -o wide
Expand Down
3 changes: 3 additions & 0 deletions experimental-e2e-tests-on-ubuntu-vm/ubuntuvm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ sudo apt install make
# yq
sudo wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/bin/yq && sudo chmod +x /usr/bin/yq

#jq
sudo apt-get install jq -y # needed for Ubuntu 22.04LTS

# kind
# For AMD64 / x86_64
[ "$(uname -m)" = x86_64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.22.0/kind-linux-amd64
Expand Down

0 comments on commit d9dda5c

Please sign in to comment.