Skip to content

Commit

Permalink
DO NOT MERGE
Browse files Browse the repository at this point in the history
Signed-off-by: Tobias Klauser <[email protected]>
  • Loading branch information
tklauser committed Jul 16, 2021
1 parent f424b04 commit d1d73ab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/eks-tunnel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: EKS (tunnel)

# Any change in triggers needs to be reflected in the concurrency group.
on:
pull_request_target: {}
pull_request: {}
# Run every 6 hours
schedule:
- cron: '30 1/6 * * *'
Expand Down Expand Up @@ -106,6 +106,8 @@ jobs:
- name: Make sure the 'aws-node' DaemonSet exists but has no scheduled pods
run: |
kubectl -n kube-system get ds
kubectl -n kube-system get pods
kubectl -n kube-sytem wait --for=delete pods -l k8s-app=aws-node
[[ $(kubectl -n kube-system get ds/aws-node -o jsonpath='{.status.currentNumberScheduled}') == 0 ]]
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/eks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: EKS (ENI)

# Any change in triggers needs to be reflected in the concurrency group.
on:
pull_request_target: {}
pull_request: {}
# Run every 6 hours
schedule:
- cron: '0 1/6 * * *'
Expand Down Expand Up @@ -106,6 +106,8 @@ jobs:
- name: Make sure the 'aws-node' DaemonSet exists but has no scheduled pods
run: |
kubectl -n kube-system get ds
kubectl -n kube-system get pods
kubectl -n kube-sytem wait --for=delete pods -l k8s-app=aws-node
[[ $(kubectl -n kube-system get ds/aws-node -o jsonpath='{.status.currentNumberScheduled}') == 0 ]]
Expand Down

0 comments on commit d1d73ab

Please sign in to comment.