46 lines
1.8 KiB
Go
46 lines
1.8 KiB
Go
/*
|
|
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 applyconfiguration-gen. DO NOT EDIT.
|
|
|
|
package v1beta1
|
|
|
|
// ServiceCIDRSpecApplyConfiguration represents a declarative configuration of the ServiceCIDRSpec type for use
|
|
// with apply.
|
|
//
|
|
// ServiceCIDRSpec define the CIDRs the user wants to use for allocating ClusterIPs for Services.
|
|
type ServiceCIDRSpecApplyConfiguration struct {
|
|
// CIDRs defines the IP blocks in CIDR notation (e.g. "192.168.0.0/24" or "2001:db8::/64")
|
|
// from which to assign service cluster IPs. Max of two CIDRs is allowed, one of each IP family.
|
|
// This field is immutable.
|
|
CIDRs []string `json:"cidrs,omitempty"`
|
|
}
|
|
|
|
// ServiceCIDRSpecApplyConfiguration constructs a declarative configuration of the ServiceCIDRSpec type for use with
|
|
// apply.
|
|
func ServiceCIDRSpec() *ServiceCIDRSpecApplyConfiguration {
|
|
return &ServiceCIDRSpecApplyConfiguration{}
|
|
}
|
|
|
|
// WithCIDRs adds the given value to the CIDRs field in the declarative configuration
|
|
// and returns the receiver, so that objects can be build by chaining "With" function invocations.
|
|
// If called multiple times, values provided by each call will be appended to the CIDRs field.
|
|
func (b *ServiceCIDRSpecApplyConfiguration) WithCIDRs(values ...string) *ServiceCIDRSpecApplyConfiguration {
|
|
for i := range values {
|
|
b.CIDRs = append(b.CIDRs, values[i])
|
|
}
|
|
return b
|
|
}
|