Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Ijaz Ahmad
ksonnet
Commits
a0228cf3
Unverified
Commit
a0228cf3
authored
Apr 20, 2018
by
bryanl
Browse files
move component to pkg/component
Signed-off-by:
bryanl
<
bryanliles@gmail.com
>
parent
7d0b21b5
Changes
77
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
26 additions
and
26 deletions
+26
-26
actions/actions_test.go
actions/actions_test.go
+1
-1
actions/component_list.go
actions/component_list.go
+1
-1
actions/component_list_test.go
actions/component_list_test.go
+2
-2
actions/component_rm.go
actions/component_rm.go
+1
-1
actions/env_targets.go
actions/env_targets.go
+1
-1
actions/env_targets_test.go
actions/env_targets_test.go
+1
-1
actions/import.go
actions/import.go
+1
-1
actions/module_create.go
actions/module_create.go
+1
-1
actions/module_create_test.go
actions/module_create_test.go
+1
-1
actions/module_list.go
actions/module_list.go
+1
-1
actions/module_list_test.go
actions/module_list_test.go
+2
-2
actions/param_delete.go
actions/param_delete.go
+1
-1
actions/param_delete_test.go
actions/param_delete_test.go
+2
-2
actions/param_diff.go
actions/param_diff.go
+1
-1
actions/param_diff_test.go
actions/param_diff_test.go
+2
-2
actions/param_list.go
actions/param_list.go
+1
-1
actions/param_list_test.go
actions/param_list_test.go
+2
-2
actions/param_set.go
actions/param_set.go
+1
-1
actions/param_set_test.go
actions/param_set_test.go
+2
-2
actions/prototype_use.go
actions/prototype_use.go
+1
-1
No files found.
actions/actions_test.go
View file @
a0228cf3
...
...
@@ -23,8 +23,8 @@ import (
"testing"
"github.com/ksonnet/ksonnet/client"
cmocks
"github.com/ksonnet/ksonnet/component/mocks"
"github.com/ksonnet/ksonnet/metadata/app/mocks"
cmocks
"github.com/ksonnet/ksonnet/pkg/component/mocks"
"github.com/ksonnet/ksonnet/pkg/registry"
rmocks
"github.com/ksonnet/ksonnet/pkg/registry/mocks"
"github.com/pkg/errors"
...
...
actions/component_list.go
View file @
a0228cf3
...
...
@@ -20,8 +20,8 @@ import (
"os"
"sort"
"github.com/ksonnet/ksonnet/component"
"github.com/ksonnet/ksonnet/metadata/app"
"github.com/ksonnet/ksonnet/pkg/component"
"github.com/ksonnet/ksonnet/pkg/util/table"
"github.com/pkg/errors"
)
...
...
actions/component_list_test.go
View file @
a0228cf3
...
...
@@ -19,9 +19,9 @@ import (
"bytes"
"testing"
"github.com/ksonnet/ksonnet/component"
cmocks
"github.com/ksonnet/ksonnet/component/mocks"
amocks
"github.com/ksonnet/ksonnet/metadata/app/mocks"
"github.com/ksonnet/ksonnet/pkg/component"
cmocks
"github.com/ksonnet/ksonnet/pkg/component/mocks"
"github.com/stretchr/testify/mock"
"github.com/stretchr/testify/require"
)
...
...
actions/component_rm.go
View file @
a0228cf3
...
...
@@ -16,8 +16,8 @@
package
actions
import
(
"github.com/ksonnet/ksonnet/component"
"github.com/ksonnet/ksonnet/metadata/app"
"github.com/ksonnet/ksonnet/pkg/component"
)
// RunComponentRm runs `component list`
...
...
actions/env_targets.go
View file @
a0228cf3
...
...
@@ -16,8 +16,8 @@
package
actions
import
(
"github.com/ksonnet/ksonnet/component"
"github.com/ksonnet/ksonnet/metadata/app"
"github.com/ksonnet/ksonnet/pkg/component"
)
// RunEnvTargets runs `env targets`
...
...
actions/env_targets_test.go
View file @
a0228cf3
...
...
@@ -21,9 +21,9 @@ import (
"github.com/stretchr/testify/mock"
cmocks
"github.com/ksonnet/ksonnet/component/mocks"
"github.com/ksonnet/ksonnet/metadata/app"
amocks
"github.com/ksonnet/ksonnet/metadata/app/mocks"
cmocks
"github.com/ksonnet/ksonnet/pkg/component/mocks"
"github.com/stretchr/testify/require"
)
...
...
actions/import.go
View file @
a0228cf3
...
...
@@ -27,9 +27,9 @@ import (
"path/filepath"
"strings"
"github.com/ksonnet/ksonnet/component"
"github.com/ksonnet/ksonnet/metadata/app"
"github.com/ksonnet/ksonnet/metadata/params"
"github.com/ksonnet/ksonnet/pkg/component"
"github.com/ksonnet/ksonnet/pkg/schema"
utilyaml
"github.com/ksonnet/ksonnet/pkg/util/yaml"
"github.com/ksonnet/ksonnet/prototype"
...
...
actions/module_create.go
View file @
a0228cf3
...
...
@@ -16,8 +16,8 @@
package
actions
import
(
"github.com/ksonnet/ksonnet/component"
"github.com/ksonnet/ksonnet/metadata/app"
"github.com/ksonnet/ksonnet/pkg/component"
"github.com/pkg/errors"
)
...
...
actions/module_create_test.go
View file @
a0228cf3
...
...
@@ -21,8 +21,8 @@ import (
"github.com/pkg/errors"
"github.com/stretchr/testify/mock"
cmocks
"github.com/ksonnet/ksonnet/component/mocks"
amocks
"github.com/ksonnet/ksonnet/metadata/app/mocks"
cmocks
"github.com/ksonnet/ksonnet/pkg/component/mocks"
"github.com/stretchr/testify/require"
)
...
...
actions/module_list.go
View file @
a0228cf3
...
...
@@ -20,8 +20,8 @@ import (
"os"
"sort"
"github.com/ksonnet/ksonnet/component"
"github.com/ksonnet/ksonnet/metadata/app"
"github.com/ksonnet/ksonnet/pkg/component"
"github.com/ksonnet/ksonnet/pkg/util/table"
)
...
...
actions/module_list_test.go
View file @
a0228cf3
...
...
@@ -19,9 +19,9 @@ import (
"bytes"
"testing"
"github.com/ksonnet/ksonnet/component"
cmocks
"github.com/ksonnet/ksonnet/component/mocks"
amocks
"github.com/ksonnet/ksonnet/metadata/app/mocks"
"github.com/ksonnet/ksonnet/pkg/component"
cmocks
"github.com/ksonnet/ksonnet/pkg/component/mocks"
"github.com/stretchr/testify/require"
)
...
...
actions/param_delete.go
View file @
a0228cf3
...
...
@@ -18,8 +18,8 @@ package actions
import
(
"strings"
"github.com/ksonnet/ksonnet/component"
"github.com/ksonnet/ksonnet/metadata/app"
"github.com/ksonnet/ksonnet/pkg/component"
"github.com/ksonnet/ksonnet/pkg/env"
"github.com/pkg/errors"
)
...
...
actions/param_delete_test.go
View file @
a0228cf3
...
...
@@ -18,10 +18,10 @@ package actions
import
(
"testing"
"github.com/ksonnet/ksonnet/component"
cmocks
"github.com/ksonnet/ksonnet/component/mocks"
"github.com/ksonnet/ksonnet/metadata/app"
amocks
"github.com/ksonnet/ksonnet/metadata/app/mocks"
"github.com/ksonnet/ksonnet/pkg/component"
cmocks
"github.com/ksonnet/ksonnet/pkg/component/mocks"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
...
...
actions/param_diff.go
View file @
a0228cf3
...
...
@@ -19,8 +19,8 @@ import (
"io"
"os"
"github.com/ksonnet/ksonnet/component"
"github.com/ksonnet/ksonnet/metadata/app"
"github.com/ksonnet/ksonnet/pkg/component"
"github.com/ksonnet/ksonnet/pkg/util/table"
)
...
...
actions/param_diff_test.go
View file @
a0228cf3
...
...
@@ -20,10 +20,10 @@ import (
"path/filepath"
"testing"
"github.com/ksonnet/ksonnet/component"
"github.com/ksonnet/ksonnet/component/mocks"
"github.com/ksonnet/ksonnet/metadata/app"
amocks
"github.com/ksonnet/ksonnet/metadata/app/mocks"
"github.com/ksonnet/ksonnet/pkg/component"
"github.com/ksonnet/ksonnet/pkg/component/mocks"
"github.com/pkg/errors"
"github.com/stretchr/testify/require"
)
...
...
actions/param_list.go
View file @
a0228cf3
...
...
@@ -19,8 +19,8 @@ import (
"io"
"os"
"github.com/ksonnet/ksonnet/component"
"github.com/ksonnet/ksonnet/metadata/app"
"github.com/ksonnet/ksonnet/pkg/component"
"github.com/ksonnet/ksonnet/pkg/util/table"
"github.com/pkg/errors"
)
...
...
actions/param_list_test.go
View file @
a0228cf3
...
...
@@ -20,10 +20,10 @@ import (
"path/filepath"
"testing"
"github.com/ksonnet/ksonnet/component"
cmocks
"github.com/ksonnet/ksonnet/component/mocks"
"github.com/ksonnet/ksonnet/metadata/app"
amocks
"github.com/ksonnet/ksonnet/metadata/app/mocks"
"github.com/ksonnet/ksonnet/pkg/component"
cmocks
"github.com/ksonnet/ksonnet/pkg/component/mocks"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
...
...
actions/param_set.go
View file @
a0228cf3
...
...
@@ -18,9 +18,9 @@ package actions
import
(
"strings"
"github.com/ksonnet/ksonnet/component"
"github.com/ksonnet/ksonnet/metadata/app"
mp
"github.com/ksonnet/ksonnet/metadata/params"
"github.com/ksonnet/ksonnet/pkg/component"
"github.com/ksonnet/ksonnet/pkg/env"
"github.com/ksonnet/ksonnet/pkg/util/jsonnet"
"github.com/pkg/errors"
...
...
actions/param_set_test.go
View file @
a0228cf3
...
...
@@ -18,10 +18,10 @@ package actions
import
(
"testing"
"github.com/ksonnet/ksonnet/component"
cmocks
"github.com/ksonnet/ksonnet/component/mocks"
"github.com/ksonnet/ksonnet/metadata/app"
amocks
"github.com/ksonnet/ksonnet/metadata/app/mocks"
"github.com/ksonnet/ksonnet/pkg/component"
cmocks
"github.com/ksonnet/ksonnet/pkg/component/mocks"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
...
...
actions/prototype_use.go
View file @
a0228cf3
...
...
@@ -20,9 +20,9 @@ import (
"os"
"strings"
"github.com/ksonnet/ksonnet/component"
"github.com/ksonnet/ksonnet/metadata/app"
param
"github.com/ksonnet/ksonnet/metadata/params"
"github.com/ksonnet/ksonnet/pkg/component"
"github.com/ksonnet/ksonnet/pkg/pkg"
"github.com/ksonnet/ksonnet/prototype"
"github.com/pkg/errors"
...
...
Prev
1
2
3
4
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment