Skip to content

Commit 4f81d31

Browse files
generated: For proto and authorization changes
1 parent 161c599 commit 4f81d31

16 files changed

+1318
-415
lines changed

api/swagger-spec/oapi-v1.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -21648,7 +21648,7 @@
2164821648
"items": {
2164921649
"$ref": "v1.DeploymentTriggerPolicy"
2165021650
},
21651-
"description": "Triggers determine how updates to a DeploymentConfig result in new deployments. If no triggers are defined, a new deployment can only occur as a result of an explicit client update to the DeploymentConfig with a new LatestVersion."
21651+
"description": "Triggers determine how updates to a DeploymentConfig result in new deployments. If no triggers are defined, a new deployment can only occur as a result of an explicit client update to the DeploymentConfig with a new LatestVersion. If null, defaults to having a config change trigger."
2165221652
},
2165321653
"replicas": {
2165421654
"type": "integer",

pkg/authorization/api/deep_copy_generated.go

+10-10
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414

1515
func init() {
1616
if err := api.Scheme.AddGeneratedDeepCopyFuncs(
17-
DeepCopy_api_AuthorizationAttributes,
17+
DeepCopy_api_Action,
1818
DeepCopy_api_ClusterPolicy,
1919
DeepCopy_api_ClusterPolicyBinding,
2020
DeepCopy_api_ClusterPolicyBindingList,
@@ -48,7 +48,7 @@ func init() {
4848
}
4949
}
5050

51-
func DeepCopy_api_AuthorizationAttributes(in AuthorizationAttributes, out *AuthorizationAttributes, c *conversion.Cloner) error {
51+
func DeepCopy_api_Action(in Action, out *Action, c *conversion.Cloner) error {
5252
out.Namespace = in.Namespace
5353
out.Verb = in.Verb
5454
out.Group = in.Group
@@ -77,7 +77,7 @@ func DeepCopy_api_ClusterPolicy(in ClusterPolicy, out *ClusterPolicy, c *convers
7777
}
7878
if in.Roles != nil {
7979
in, out := in.Roles, &out.Roles
80-
*out = make(map[string]*ClusterRole)
80+
*out = make(ClusterRolesByName)
8181
for key, val := range in {
8282
if newVal, err := c.DeepCopy(val); err != nil {
8383
return err
@@ -106,7 +106,7 @@ func DeepCopy_api_ClusterPolicyBinding(in ClusterPolicyBinding, out *ClusterPoli
106106
}
107107
if in.RoleBindings != nil {
108108
in, out := in.RoleBindings, &out.RoleBindings
109-
*out = make(map[string]*ClusterRoleBinding)
109+
*out = make(ClusterRoleBindingsByName)
110110
for key, val := range in {
111111
if newVal, err := c.DeepCopy(val); err != nil {
112112
return err
@@ -260,7 +260,7 @@ func DeepCopy_api_LocalResourceAccessReview(in LocalResourceAccessReview, out *L
260260
if err := unversioned.DeepCopy_unversioned_TypeMeta(in.TypeMeta, &out.TypeMeta, c); err != nil {
261261
return err
262262
}
263-
if err := DeepCopy_api_AuthorizationAttributes(in.Action, &out.Action, c); err != nil {
263+
if err := DeepCopy_api_Action(in.Action, &out.Action, c); err != nil {
264264
return err
265265
}
266266
return nil
@@ -270,7 +270,7 @@ func DeepCopy_api_LocalSubjectAccessReview(in LocalSubjectAccessReview, out *Loc
270270
if err := unversioned.DeepCopy_unversioned_TypeMeta(in.TypeMeta, &out.TypeMeta, c); err != nil {
271271
return err
272272
}
273-
if err := DeepCopy_api_AuthorizationAttributes(in.Action, &out.Action, c); err != nil {
273+
if err := DeepCopy_api_Action(in.Action, &out.Action, c); err != nil {
274274
return err
275275
}
276276
out.User = in.User
@@ -309,7 +309,7 @@ func DeepCopy_api_Policy(in Policy, out *Policy, c *conversion.Cloner) error {
309309
}
310310
if in.Roles != nil {
311311
in, out := in.Roles, &out.Roles
312-
*out = make(map[string]*Role)
312+
*out = make(RolesByName)
313313
for key, val := range in {
314314
if newVal, err := c.DeepCopy(val); err != nil {
315315
return err
@@ -338,7 +338,7 @@ func DeepCopy_api_PolicyBinding(in PolicyBinding, out *PolicyBinding, c *convers
338338
}
339339
if in.RoleBindings != nil {
340340
in, out := in.RoleBindings, &out.RoleBindings
341-
*out = make(map[string]*RoleBinding)
341+
*out = make(RoleBindingsByName)
342342
for key, val := range in {
343343
if newVal, err := c.DeepCopy(val); err != nil {
344344
return err
@@ -468,7 +468,7 @@ func DeepCopy_api_ResourceAccessReview(in ResourceAccessReview, out *ResourceAcc
468468
if err := unversioned.DeepCopy_unversioned_TypeMeta(in.TypeMeta, &out.TypeMeta, c); err != nil {
469469
return err
470470
}
471-
if err := DeepCopy_api_AuthorizationAttributes(in.Action, &out.Action, c); err != nil {
471+
if err := DeepCopy_api_Action(in.Action, &out.Action, c); err != nil {
472472
return err
473473
}
474474
return nil
@@ -624,7 +624,7 @@ func DeepCopy_api_SubjectAccessReview(in SubjectAccessReview, out *SubjectAccess
624624
if err := unversioned.DeepCopy_unversioned_TypeMeta(in.TypeMeta, &out.TypeMeta, c); err != nil {
625625
return err
626626
}
627-
if err := DeepCopy_api_AuthorizationAttributes(in.Action, &out.Action, c); err != nil {
627+
if err := DeepCopy_api_Action(in.Action, &out.Action, c); err != nil {
628628
return err
629629
}
630630
out.User = in.User

0 commit comments

Comments
 (0)