We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fa2030 commit 653eb23Copy full SHA for 653eb23
test/e2e/network/util.go
@@ -81,11 +81,13 @@ func DescribeSvc(ns string) {
81
// newAgnhostPod returns a pod that uses the agnhost image. The image's binary supports various subcommands
82
// that behave the same, no matter the underlying OS.
83
func newAgnhostPod(name string, args ...string) *v1.Pod {
84
+ zero := int64(0)
85
return &v1.Pod{
86
ObjectMeta: metav1.ObjectMeta{
87
Name: name,
88
},
89
Spec: v1.PodSpec{
90
+ TerminationGracePeriodSeconds: &zero,
91
Containers: []v1.Container{
92
{
93
Name: "agnhost",
0 commit comments