Loading go-apps/meepctl/cmd/deploy.go +1 −1 Original line number Diff line number Diff line Loading @@ -209,7 +209,7 @@ func deployCore(cobraCmd *cobra.Command) { // Create CRDs func createCRD(cobraCmd *cobra.Command) { for _, crd := range deployData.crds { cmd := exec.Command("kubectl", "apply", "-f", crd) cmd := exec.Command("kubectl", "apply", "-f", deployData.gitdir+"/"+crd) _, err := utils.ExecuteCmd(cmd, cobraCmd) if err != nil { err = errors.New("Error creating CRD from path [" + crd + "]") Loading Loading
go-apps/meepctl/cmd/deploy.go +1 −1 Original line number Diff line number Diff line Loading @@ -209,7 +209,7 @@ func deployCore(cobraCmd *cobra.Command) { // Create CRDs func createCRD(cobraCmd *cobra.Command) { for _, crd := range deployData.crds { cmd := exec.Command("kubectl", "apply", "-f", crd) cmd := exec.Command("kubectl", "apply", "-f", deployData.gitdir+"/"+crd) _, err := utils.ExecuteCmd(cmd, cobraCmd) if err != nil { err = errors.New("Error creating CRD from path [" + crd + "]") Loading