Retry kubectl test replace on conflict

This commit is contained in:
Jordan Liggitt 2017-03-16 00:47:46 -04:00
parent a19210f418
commit 9cd791e83c
No known key found for this signature in database
GPG Key ID: 24E7ADF9A3B42012

View File

@ -666,16 +666,15 @@ run_pod_tests() {
}
}
__EOF__
kubectl replace -f - "${kube_flags[@]}" << __EOF__
{
kubectl-with-retry replace "${kube_flags[@]}" -f <(echo '{
"kind": "Node",
"apiVersion": "v1",
"metadata": {
"name": "node-v1-test",
"annotations": {"a":"b"}
}
}
__EOF__
}')
# Post-condition: the node command succeeds
kube::test::get_object_assert "node node-v1-test" "{{.metadata.annotations.a}}" 'b'
kubectl delete node node-v1-test "${kube_flags[@]}"