We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e082924 commit c7fd089Copy full SHA for c7fd089
tests/framework/ngf.go
@@ -78,7 +78,7 @@ func InstallNGF(cfg InstallationConfig, extraArgs ...string) ([]byte, error) {
78
79
// UpgradeNGF upgrades NGF. CRD upgrades assume the chart is local.
80
func UpgradeNGF(cfg InstallationConfig, extraArgs ...string) ([]byte, error) {
81
- crdPath := filepath.Join(cfg.ChartPath, "crds")
+ crdPath := filepath.Join(cfg.ChartPath, "crds") + "/"
82
if output, err := exec.Command("kubectl", "apply", "-f", crdPath).CombinedOutput(); err != nil {
83
return output, err
84
}
0 commit comments