Skip to content

Commit 00112a4

Browse files
authored
Update remaining server side apply for crds (#3711)
Update remaining server side apply for crds, remaining one was in the upgrade nfr test.
1 parent 924252b commit 00112a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
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", "-f", crdPath,
137+
"kubectl", "apply", "--server-side", "-f", crdPath,
138138
)
139139
output, err := cmd.CombinedOutput()
140140
if err != nil {

0 commit comments

Comments
 (0)