diff --git a/kubernetes/resource_kubernetes_daemon_set_v1_test.go b/kubernetes/resource_kubernetes_daemon_set_v1_test.go index 711c166f52..f9f609b33f 100644 --- a/kubernetes/resource_kubernetes_daemon_set_v1_test.go +++ b/kubernetes/resource_kubernetes_daemon_set_v1_test.go @@ -685,6 +685,7 @@ func testAccKubernetesDaemonSetV1ConfigWithTemplateMetadata(depName, imageName s container { image = "%s" name = "containername" + command = ["sleep", "infinity"] } termination_grace_period_seconds = 1 } @@ -772,6 +773,7 @@ func testAccKubernetesDaemonSetV1WithInitContainer(depName, imageName string) st container { image = "%s" name = "containername" + command = ["sleep", "infinity"] } termination_grace_period_seconds = 1 } @@ -805,6 +807,7 @@ func testAccKubernetesDaemonSetV1WithNoTopLevelLabels(depName, imageName string) container { image = "%s" name = "containername" + command = ["sleep", "infinity"] } termination_grace_period_seconds = 1 } @@ -859,6 +862,7 @@ func testAccKubernetesDaemonSetV1ConfigWithTolerations(rcName, imageName string, container { image = "%s" name = "containername" + command = ["sleep", "infinity"] } termination_grace_period_seconds = 1 } @@ -912,6 +916,7 @@ func testAccKubernetesDaemonSetV1ConfigWithContainerSecurityContextSeccompProfil } } } + wait_for_rollout = false } `, deploymentName, seccompProfileType, imageName, seccompProfileType) } @@ -962,6 +967,7 @@ func testAccKubernetesDaemonSetV1ConfigWithContainerSecurityContextSeccompProfil } } } + wait_for_rollout = false } `, deploymentName, imageName) } @@ -994,18 +1000,17 @@ func testAccKubernetesDaemonSetV1ConfigWithResourceRequirements(deploymentName, container { image = "%s" name = "containername" + command = ["sleep", "infinity"] resources { limits = { cpu = "0.5" memory = "512Mi" - "nvidia/gpu" = "1" } requests = { cpu = "250m" memory = "50Mi" - "nvidia/gpu" = "1" } } } @@ -1045,6 +1050,7 @@ func testAccKubernetesDaemonSetV1ConfigWithEmptyResourceRequirements(deploymentN container { image = "%s" name = "containername" + command = ["sleep", "infinity"] resources { limits = {} @@ -1087,6 +1093,7 @@ func testAccKubernetesDaemonSetV1ConfigWithResourceRequirementsLimitsOnly(deploy container { image = "%s" name = "containername" + command = ["sleep", "infinity"] resources { limits = {