File tree 4 files changed +7
-6
lines changed
eventratelimit/apis/eventratelimit
podtolerationrestriction/apis/podtolerationrestriction 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -359,20 +359,17 @@ pkg/volume/util/recyclerclient
359
359
pkg/volume/util/volumepathhandler
360
360
pkg/volume/vsphere_volume
361
361
plugin/pkg/admission/antiaffinity
362
- plugin/pkg/admission/eventratelimit/apis/eventratelimit
363
362
plugin/pkg/admission/eventratelimit/apis/eventratelimit/v1alpha1
364
363
plugin/pkg/admission/limitranger
365
364
plugin/pkg/admission/noderestriction
366
365
plugin/pkg/admission/podnodeselector
367
366
plugin/pkg/admission/podpreset
368
367
plugin/pkg/admission/podtolerationrestriction
369
- plugin/pkg/admission/podtolerationrestriction/apis/podtolerationrestriction
370
368
plugin/pkg/admission/podtolerationrestriction/apis/podtolerationrestriction/v1alpha1
371
369
plugin/pkg/admission/resourcequota
372
370
plugin/pkg/admission/resourcequota/apis/resourcequota
373
371
plugin/pkg/admission/resourcequota/apis/resourcequota/v1alpha1
374
372
plugin/pkg/admission/resourcequota/apis/resourcequota/v1beta1
375
- plugin/pkg/admission/security
376
373
plugin/pkg/admission/security/podsecuritypolicy
377
374
plugin/pkg/admission/serviceaccount
378
375
plugin/pkg/auth/authorizer/node
Original file line number Diff line number Diff line change @@ -22,8 +22,10 @@ import (
22
22
)
23
23
24
24
var (
25
+ // SchemeBuilder is the scheme builder with scheme init functions to run for this API package
25
26
SchemeBuilder = runtime .NewSchemeBuilder (addKnownTypes )
26
- AddToScheme = SchemeBuilder .AddToScheme
27
+ // AddToScheme is a global function that registers this API group & version to a scheme
28
+ AddToScheme = SchemeBuilder .AddToScheme
27
29
)
28
30
29
31
// GroupName is the group name use in this package
Original file line number Diff line number Diff line change @@ -28,8 +28,10 @@ const GroupName = "podtolerationrestriction.admission.k8s.io"
28
28
var SchemeGroupVersion = schema.GroupVersion {Group : GroupName , Version : runtime .APIVersionInternal }
29
29
30
30
var (
31
+ // SchemeBuilder is the scheme builder with scheme init functions to run for this API package
31
32
SchemeBuilder = runtime .NewSchemeBuilder (addKnownTypes )
32
- AddToScheme = SchemeBuilder .AddToScheme
33
+ // AddToScheme is a global function that registers this API group & version to a scheme
34
+ AddToScheme = SchemeBuilder .AddToScheme
33
35
)
34
36
35
37
// Kind takes an unqualified kind and returns a Group qualified GroupKind
Original file line number Diff line number Diff line change @@ -14,5 +14,5 @@ See the License for the specific language governing permissions and
14
14
limitations under the License.
15
15
*/
16
16
17
- // security contains admission plugins specific to cluster security.
17
+ // Package security contains admission plugins specific to cluster security.
18
18
package security // import "k8s.io/kubernetes/plugin/pkg/admission/security"
You can’t perform that action at this time.
0 commit comments