Skip to content

Commit ba128e6

Browse files
author
Kenneth Owens
committed
Implements ControllerRevision API Object without codec and code
generation
1 parent 079020f commit ba128e6

File tree

83 files changed

+10123
-1052
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+10123
-1052
lines changed

api/openapi-spec/swagger.json

+1,014-100
Large diffs are not rendered by default.

api/swagger-spec/apps_v1beta1.json

+1,004-85
Large diffs are not rendered by default.

docs/api-reference/apps/v1beta1/definitions.html

+183-60
Large diffs are not rendered by default.

docs/api-reference/apps/v1beta1/operations.html

+2,108-467
Large diffs are not rendered by default.

hack/.linted_packages

+1
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,7 @@ pkg/proxy/healthcheck
208208
pkg/quota
209209
pkg/quota/install
210210
pkg/registry
211+
pkg/registry/apps/controllerrevision/storage
211212
pkg/registry/authorization/util
212213
pkg/registry/core/configmap/storage
213214
pkg/registry/core/endpoint

pkg/apis/apps/register.go

+2
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ func addKnownTypes(scheme *runtime.Scheme) error {
5353
&extensions.Scale{},
5454
&StatefulSet{},
5555
&StatefulSetList{},
56+
&ControllerRevision{},
57+
&ControllerRevisionList{},
5658
)
5759
return nil
5860
}

pkg/apis/apps/types.go

+33
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ package apps
1818

1919
import (
2020
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
21+
"k8s.io/apimachinery/pkg/runtime"
2122
"k8s.io/kubernetes/pkg/api"
2223
)
2324

@@ -127,3 +128,35 @@ type StatefulSetList struct {
127128
metav1.ListMeta
128129
Items []StatefulSet
129130
}
131+
132+
// +genclient=true
133+
134+
// ControllerRevision implements an immutable snapshot of state data. Clients
135+
// are responsible for serializing and deserializing the objects that contain
136+
// their internal state.
137+
// Once a ControllerRevision has been successfully created, it can not be updated.
138+
// The API Server will fail validation of all requests that attempt to mutate
139+
// the Data field. ControllerRevisions may, however, be deleted.
140+
type ControllerRevision struct {
141+
metav1.TypeMeta
142+
// Standard object's metadata.
143+
// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
144+
// +optional
145+
metav1.ObjectMeta
146+
147+
// Data is the Object representing the state.
148+
Data runtime.Object
149+
150+
// Revision indicates the revision of the state represented by Data.
151+
Revision int64
152+
}
153+
154+
// ControllerRevisionList is a resource containing a list of ControllerRevision objects.
155+
type ControllerRevisionList struct {
156+
metav1.TypeMeta
157+
// +optional
158+
metav1.ListMeta
159+
160+
// Items is the list of ControllerRevision objects.
161+
Items []ControllerRevision
162+
}

0 commit comments

Comments
 (0)