File tree Expand file tree Collapse file tree 4 files changed +3
-5
lines changed Expand file tree Collapse file tree 4 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ func (a *App) Name() string { return a.app.Name }
77
77
func (a * App ) Namespace () string { return a .app .Namespace }
78
78
79
79
// Kind return kind of App
80
- func (a * App ) Kind () string { return "app " }
80
+ func (a * App ) Kind () string { return "App " }
81
81
82
82
func (a * App ) Status () v1alpha1.AppStatus { return a .app .Status }
83
83
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ type PackageInstallCR struct {
61
61
62
62
// Kind return kind of pkg install
63
63
func (pi * PackageInstallCR ) Kind () string {
64
- return "pkgi "
64
+ return "PackageInstall "
65
65
}
66
66
67
67
// nolint: revive
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ func (a *App) Name() string { return a.app.Name }
50
50
func (a * App ) Namespace () string { return a .app .Namespace }
51
51
52
52
// Kind return kind of pkg repo
53
- func (a * App ) Kind () string { return "pkgr " }
53
+ func (a * App ) Kind () string { return "PackageRepository " }
54
54
55
55
func (a * App ) Status () v1alpha1.AppStatus { return a .app .Status }
56
56
Original file line number Diff line number Diff line change @@ -12,8 +12,6 @@ import (
12
12
"os/exec"
13
13
"strings"
14
14
"sync"
15
- //"fmt"
16
- //"os/exec"
17
15
"testing"
18
16
"time"
19
17
You can’t perform that action at this time.
0 commit comments