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
7ac2b3c8
Commit
7ac2b3c8
authored
Feb 13, 2018
by
Nikhita Raghunath
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update generated files
parent
e7341f4d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
23 additions
and
0 deletions
+23
-0
swagger.json
api/openapi-spec/swagger.json
+7
-0
generated.pb.go
...-apiserver/pkg/apis/apiextensions/v1beta1/generated.pb.go
+0
-0
generated.proto
...-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto
+4
-0
zz_generated.conversion.go
...pkg/apis/apiextensions/v1beta1/zz_generated.conversion.go
+2
-0
zz_generated.deepcopy.go
...r/pkg/apis/apiextensions/v1beta1/zz_generated.deepcopy.go
+5
-0
zz_generated.deepcopy.go
...apiserver/pkg/apis/apiextensions/zz_generated.deepcopy.go
+5
-0
No files found.
api/openapi-spec/swagger.json
View file @
7ac2b3c8
...
...
@@ -83859,6 +83859,13 @@
"kind"
],
"properties"
:
{
"categories"
:
{
"description"
:
"Categories is a list of grouped resources custom resources belong to (e.g. 'all')"
,
"type"
:
"array"
,
"items"
:
{
"type"
:
"string"
}
},
"kind"
:
{
"description"
:
"Kind is the serialized kind of the resource. It is normally CamelCase and singular."
,
"type"
:
"string"
staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.pb.go
View file @
7ac2b3c8
This diff is collapsed.
Click to expand it.
staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto
View file @
7ac2b3c8
...
...
@@ -88,6 +88,10 @@ message CustomResourceDefinitionNames {
// ListKind is the serialized kind of the list for this resource. Defaults to <kind>List.
optional
string
listKind
=
5
;
// Categories is a list of grouped resources custom resources belong to (e.g. 'all')
// +optional
repeated
string
categories
=
6
;
}
// CustomResourceDefinitionSpec describes how a user wants their resource to appear
...
...
staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/zz_generated.conversion.go
View file @
7ac2b3c8
...
...
@@ -179,6 +179,7 @@ func autoConvert_v1beta1_CustomResourceDefinitionNames_To_apiextensions_CustomRe
out
.
ShortNames
=
*
(
*
[]
string
)(
unsafe
.
Pointer
(
&
in
.
ShortNames
))
out
.
Kind
=
in
.
Kind
out
.
ListKind
=
in
.
ListKind
out
.
Categories
=
*
(
*
[]
string
)(
unsafe
.
Pointer
(
&
in
.
Categories
))
return
nil
}
...
...
@@ -193,6 +194,7 @@ func autoConvert_apiextensions_CustomResourceDefinitionNames_To_v1beta1_CustomRe
out
.
ShortNames
=
*
(
*
[]
string
)(
unsafe
.
Pointer
(
&
in
.
ShortNames
))
out
.
Kind
=
in
.
Kind
out
.
ListKind
=
in
.
ListKind
out
.
Categories
=
*
(
*
[]
string
)(
unsafe
.
Pointer
(
&
in
.
Categories
))
return
nil
}
...
...
staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/zz_generated.deepcopy.go
View file @
7ac2b3c8
...
...
@@ -112,6 +112,11 @@ func (in *CustomResourceDefinitionNames) DeepCopyInto(out *CustomResourceDefinit
*
out
=
make
([]
string
,
len
(
*
in
))
copy
(
*
out
,
*
in
)
}
if
in
.
Categories
!=
nil
{
in
,
out
:=
&
in
.
Categories
,
&
out
.
Categories
*
out
=
make
([]
string
,
len
(
*
in
))
copy
(
*
out
,
*
in
)
}
return
}
...
...
staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/zz_generated.deepcopy.go
View file @
7ac2b3c8
...
...
@@ -112,6 +112,11 @@ func (in *CustomResourceDefinitionNames) DeepCopyInto(out *CustomResourceDefinit
*
out
=
make
([]
string
,
len
(
*
in
))
copy
(
*
out
,
*
in
)
}
if
in
.
Categories
!=
nil
{
in
,
out
:=
&
in
.
Categories
,
&
out
.
Categories
*
out
=
make
([]
string
,
len
(
*
in
))
copy
(
*
out
,
*
in
)
}
return
}
...
...
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