Skip to content

Commit

Permalink
conformance-gke-v1.12: Miscellaneous fixes
Browse files Browse the repository at this point in the history
- Increase timeout from 60 minutes to 75 minutes. Right now a successful
  run takes a bit over 60 minutes.
- Explicitly delete cilium-test namespace as a temporary workaround
  until cilium/cilium-cli#255 is fixed.

Related: #21321
Signed-off-by: Michi Mutsuzaki <michi@isovalent.com>
  • Loading branch information
michi-covalent authored and sayboras committed Oct 8, 2022
1 parent 8b1666a commit b6a5b5b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/conformance-gke-v1.12.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ jobs:
github.event_name == 'schedule' ||
github.event_name == 'pull_request'
runs-on: ubuntu-latest
timeout-minutes: 60
timeout-minutes: 75
steps:
- name: Checkout master branch to access local actions
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
Expand Down Expand Up @@ -263,6 +263,8 @@ jobs:
- name: Clean up Cilium
run: |
pkill -f "cilium.*hubble.*port-forward|kubectl.*port-forward.*hubble-relay"
# Temporary workaround for https://github.com/cilium/cilium-cli/issues/255
kubectl delete ns cilium-test
cilium uninstall --chart-directory=install/kubernetes/cilium --wait
- name: Install Cilium with tunnel datapath
Expand Down Expand Up @@ -292,6 +294,8 @@ jobs:
- name: Clean up Cilium
run: |
pkill -f "cilium.*hubble.*port-forward|kubectl.*port-forward.*hubble-relay"
# Temporary workaround for https://github.com/cilium/cilium-cli/issues/255
kubectl delete ns cilium-test
cilium uninstall --chart-directory=install/kubernetes/cilium --wait
- name: Create custom IPsec secret
Expand Down Expand Up @@ -326,6 +330,8 @@ jobs:
- name: Clean up Cilium
run: |
pkill -f "cilium.*hubble.*port-forward|kubectl.*port-forward.*hubble-relay"
# Temporary workaround for https://github.com/cilium/cilium-cli/issues/255
kubectl delete ns cilium-test
cilium uninstall --chart-directory=install/kubernetes/cilium --wait
- name: Install Cilium with encryption and tunnel datapath
Expand Down

0 comments on commit b6a5b5b

Please sign in to comment.