File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -44,8 +44,9 @@ remove_operator() {
44
44
kubectl delete --wait=true --ignore-not-found=true -f " $OPERATORDIR /deploy/service_account.yaml"
45
45
kubectl delete --wait=true --ignore-not-found=true -f " $OPERATORDIR /deploy/role.yaml"
46
46
kubectl delete --wait=true --ignore-not-found=true -f " $OPERATORDIR /deploy/role_binding.yaml"
47
- kubectl delete --wait=true --ignore-not-found=true -f " $OPERATORDIR /deploy/crds/ansible.example.com_memcacheds_crd.yaml"
48
- kubectl delete --wait=true --ignore-not-found=true -f " $OPERATORDIR /deploy/crds/ansible.example.com_foos_crd.yaml"
47
+ # TODO: Investigate root cause of failure. CI has 4 hour timeouts on failed CRD deletions, inputting 60s as a stop gap measure
48
+ kubectl delete --wait=true --ignore-not-found=true --timeout=60s -f " $OPERATORDIR /deploy/crds/ansible.example.com_memcacheds_crd.yaml"
49
+ kubectl delete --wait=true --ignore-not-found=true --timeout=60s -f " $OPERATORDIR /deploy/crds/ansible.example.com_foos_crd.yaml"
49
50
kubectl delete --wait=true --ignore-not-found=true -f " $OPERATORDIR /deploy/operator.yaml"
50
51
}
51
52
You can’t perform that action at this time.
0 commit comments