12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- // +build !ignore_autogenerated
- /*
- Copyright The Kubernetes Authors.
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- // Code generated by defaulter-gen. DO NOT EDIT.
- package v1beta1
- import (
- v1beta1 "k8s.io/api/storage/v1beta1"
- runtime "k8s.io/apimachinery/pkg/runtime"
- v1 "k8s.io/kubernetes/pkg/apis/core/v1"
- )
- // RegisterDefaults adds defaulters functions to the given scheme.
- // Public to allow building arbitrary schemes.
- // All generated defaulters are covering - they call all nested defaulters.
- func RegisterDefaults(scheme *runtime.Scheme) error {
- scheme.AddTypeDefaultingFunc(&v1beta1.CSIDriver{}, func(obj interface{}) { SetObjectDefaults_CSIDriver(obj.(*v1beta1.CSIDriver)) })
- scheme.AddTypeDefaultingFunc(&v1beta1.CSIDriverList{}, func(obj interface{}) { SetObjectDefaults_CSIDriverList(obj.(*v1beta1.CSIDriverList)) })
- scheme.AddTypeDefaultingFunc(&v1beta1.StorageClass{}, func(obj interface{}) { SetObjectDefaults_StorageClass(obj.(*v1beta1.StorageClass)) })
- scheme.AddTypeDefaultingFunc(&v1beta1.StorageClassList{}, func(obj interface{}) { SetObjectDefaults_StorageClassList(obj.(*v1beta1.StorageClassList)) })
- scheme.AddTypeDefaultingFunc(&v1beta1.VolumeAttachment{}, func(obj interface{}) { SetObjectDefaults_VolumeAttachment(obj.(*v1beta1.VolumeAttachment)) })
- scheme.AddTypeDefaultingFunc(&v1beta1.VolumeAttachmentList{}, func(obj interface{}) { SetObjectDefaults_VolumeAttachmentList(obj.(*v1beta1.VolumeAttachmentList)) })
- return nil
- }
- func SetObjectDefaults_CSIDriver(in *v1beta1.CSIDriver) {
- SetDefaults_CSIDriver(in)
- }
- func SetObjectDefaults_CSIDriverList(in *v1beta1.CSIDriverList) {
- for i := range in.Items {
- a := &in.Items[i]
- SetObjectDefaults_CSIDriver(a)
- }
- }
- func SetObjectDefaults_StorageClass(in *v1beta1.StorageClass) {
- SetDefaults_StorageClass(in)
- }
- func SetObjectDefaults_StorageClassList(in *v1beta1.StorageClassList) {
- for i := range in.Items {
- a := &in.Items[i]
- SetObjectDefaults_StorageClass(a)
- }
- }
- func SetObjectDefaults_VolumeAttachment(in *v1beta1.VolumeAttachment) {
- if in.Spec.Source.InlineVolumeSpec != nil {
- v1.SetDefaults_ResourceList(&in.Spec.Source.InlineVolumeSpec.Capacity)
- if in.Spec.Source.InlineVolumeSpec.PersistentVolumeSource.HostPath != nil {
- v1.SetDefaults_HostPathVolumeSource(in.Spec.Source.InlineVolumeSpec.PersistentVolumeSource.HostPath)
- }
- if in.Spec.Source.InlineVolumeSpec.PersistentVolumeSource.RBD != nil {
- v1.SetDefaults_RBDPersistentVolumeSource(in.Spec.Source.InlineVolumeSpec.PersistentVolumeSource.RBD)
- }
- if in.Spec.Source.InlineVolumeSpec.PersistentVolumeSource.ISCSI != nil {
- v1.SetDefaults_ISCSIPersistentVolumeSource(in.Spec.Source.InlineVolumeSpec.PersistentVolumeSource.ISCSI)
- }
- if in.Spec.Source.InlineVolumeSpec.PersistentVolumeSource.AzureDisk != nil {
- v1.SetDefaults_AzureDiskVolumeSource(in.Spec.Source.InlineVolumeSpec.PersistentVolumeSource.AzureDisk)
- }
- if in.Spec.Source.InlineVolumeSpec.PersistentVolumeSource.ScaleIO != nil {
- v1.SetDefaults_ScaleIOPersistentVolumeSource(in.Spec.Source.InlineVolumeSpec.PersistentVolumeSource.ScaleIO)
- }
- }
- }
- func SetObjectDefaults_VolumeAttachmentList(in *v1beta1.VolumeAttachmentList) {
- for i := range in.Items {
- a := &in.Items[i]
- SetObjectDefaults_VolumeAttachment(a)
- }
- }
|