Skip to content

Commit 31cf91c

Browse files
authored
(Cherry-pick) Fix NFR tests (#3722) (#3723)
Cherry-pick #3722
1 parent 00112a4 commit 31cf91c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/framework/ngf.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ func UpgradeNGF(cfg InstallationConfig, extraArgs ...string) ([]byte, error) {
134134
crdPath := filepath.Join(cfg.ChartPath, "crds") + "/"
135135
cmd := exec.CommandContext(
136136
context.Background(),
137-
"kubectl", "apply", "--server-side", "-f", crdPath,
137+
"kubectl", "apply", "--server-side", "--force-conflicts", "-f", crdPath,
138138
)
139139
output, err := cmd.CombinedOutput()
140140
if err != nil {

tests/framework/timeout.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ func DefaultTimeoutConfig() TimeoutConfig {
4646
CreateTimeout: 60 * time.Second,
4747
UpdateTimeout: 60 * time.Second,
4848
DeleteTimeout: 10 * time.Second,
49-
DeleteNamespaceTimeout: 90 * time.Second,
49+
DeleteNamespaceTimeout: 150 * time.Second,
5050
GetTimeout: 10 * time.Second,
5151
ManifestFetchTimeout: 10 * time.Second,
5252
RequestTimeout: 10 * time.Second,

0 commit comments

Comments
 (0)