Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
e9927664
Commit
e9927664
authored
Oct 26, 2016
by
Janet Kuo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unnecessary dependency in client-gen
parent
c2bf059b
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
12 additions
and
13 deletions
+12
-13
main.go
cmd/libs/go2idl/client-gen/main.go
+0
-1
apps_client.go
...d/internalclientset/typed/apps/unversioned/apps_client.go
+3
-3
fake_apps_client.go
...clientset/typed/apps/unversioned/fake/fake_apps_client.go
+2
-2
generated_expansion.go
...alclientset/typed/apps/unversioned/generated_expansion.go
+1
-1
apps_client.go
..._generated/release_1_5/typed/apps/v1alpha1/apps_client.go
+3
-3
fake_apps_client.go
.../release_1_5/typed/apps/v1alpha1/fake/fake_apps_client.go
+2
-2
generated_expansion.go
...ed/release_1_5/typed/apps/v1alpha1/generated_expansion.go
+1
-1
No files found.
cmd/libs/go2idl/client-gen/main.go
View file @
e9927664
...
...
@@ -150,7 +150,6 @@ func main() {
"k8s.io/kubernetes/pkg/fields"
,
"k8s.io/kubernetes/pkg/labels"
,
"k8s.io/kubernetes/pkg/watch"
,
"k8s.io/kubernetes/pkg/client/unversioned"
,
"k8s.io/kubernetes/pkg/apimachinery/registered"
,
}
...
...
pkg/client/clientset_generated/internalclientset/typed/apps/unversioned/apps_client.go
View file @
e9927664
...
...
@@ -24,7 +24,7 @@ import (
type
AppsInterface
interface
{
RESTClient
()
restclient
.
Interface
Pet
SetsGetter
Stateful
SetsGetter
}
// AppsClient is used to interact with features provided by the Apps group.
...
...
@@ -32,8 +32,8 @@ type AppsClient struct {
restClient
restclient
.
Interface
}
func
(
c
*
AppsClient
)
PetSets
(
namespace
string
)
Pet
SetInterface
{
return
new
Pet
Sets
(
c
,
namespace
)
func
(
c
*
AppsClient
)
StatefulSets
(
namespace
string
)
Stateful
SetInterface
{
return
new
Stateful
Sets
(
c
,
namespace
)
}
// NewForConfig creates a new AppsClient for the given config.
...
...
pkg/client/clientset_generated/internalclientset/typed/apps/unversioned/fake/fake_apps_client.go
View file @
e9927664
...
...
@@ -26,8 +26,8 @@ type FakeApps struct {
*
core
.
Fake
}
func
(
c
*
FakeApps
)
PetSets
(
namespace
string
)
unversioned
.
Pet
SetInterface
{
return
&
Fake
Pet
Sets
{
c
,
namespace
}
func
(
c
*
FakeApps
)
StatefulSets
(
namespace
string
)
unversioned
.
Stateful
SetInterface
{
return
&
Fake
Stateful
Sets
{
c
,
namespace
}
}
// RESTClient returns a RESTClient that is used to communicate
...
...
pkg/client/clientset_generated/internalclientset/typed/apps/unversioned/generated_expansion.go
View file @
e9927664
...
...
@@ -16,4 +16,4 @@ limitations under the License.
package
unversioned
type
Pet
SetExpansion
interface
{}
type
Stateful
SetExpansion
interface
{}
pkg/client/clientset_generated/release_1_5/typed/apps/v1alpha1/apps_client.go
View file @
e9927664
...
...
@@ -25,7 +25,7 @@ import (
type
AppsInterface
interface
{
RESTClient
()
restclient
.
Interface
Pet
SetsGetter
Stateful
SetsGetter
}
// AppsClient is used to interact with features provided by the Apps group.
...
...
@@ -33,8 +33,8 @@ type AppsClient struct {
restClient
restclient
.
Interface
}
func
(
c
*
AppsClient
)
PetSets
(
namespace
string
)
Pet
SetInterface
{
return
new
Pet
Sets
(
c
,
namespace
)
func
(
c
*
AppsClient
)
StatefulSets
(
namespace
string
)
Stateful
SetInterface
{
return
new
Stateful
Sets
(
c
,
namespace
)
}
// NewForConfig creates a new AppsClient for the given config.
...
...
pkg/client/clientset_generated/release_1_5/typed/apps/v1alpha1/fake/fake_apps_client.go
View file @
e9927664
...
...
@@ -26,8 +26,8 @@ type FakeApps struct {
*
core
.
Fake
}
func
(
c
*
FakeApps
)
PetSets
(
namespace
string
)
v1alpha1
.
Pet
SetInterface
{
return
&
Fake
Pet
Sets
{
c
,
namespace
}
func
(
c
*
FakeApps
)
StatefulSets
(
namespace
string
)
v1alpha1
.
Stateful
SetInterface
{
return
&
Fake
Stateful
Sets
{
c
,
namespace
}
}
// RESTClient returns a RESTClient that is used to communicate
...
...
pkg/client/clientset_generated/release_1_5/typed/apps/v1alpha1/generated_expansion.go
View file @
e9927664
...
...
@@ -16,4 +16,4 @@ limitations under the License.
package
v1alpha1
type
Pet
SetExpansion
interface
{}
type
Stateful
SetExpansion
interface
{}
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