io.fabric8.openshift.api.model.installer.v1.Networking Maven / Gradle / Ivy
The newest version!
package io.fabric8.openshift.api.model.installer.v1;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import javax.annotation.Generated;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import io.fabric8.kubernetes.api.builder.Editable;
import io.fabric8.kubernetes.api.model.Container;
import io.fabric8.kubernetes.api.model.ContainerPort;
import io.fabric8.kubernetes.api.model.EnvVar;
import io.fabric8.kubernetes.api.model.IntOrString;
import io.fabric8.kubernetes.api.model.KubernetesResource;
import io.fabric8.kubernetes.api.model.LabelSelector;
import io.fabric8.kubernetes.api.model.LocalObjectReference;
import io.fabric8.kubernetes.api.model.ObjectMeta;
import io.fabric8.kubernetes.api.model.ObjectReference;
import io.fabric8.kubernetes.api.model.PersistentVolumeClaim;
import io.fabric8.kubernetes.api.model.PodTemplateSpec;
import io.fabric8.kubernetes.api.model.ResourceRequirements;
import io.fabric8.kubernetes.api.model.Volume;
import io.fabric8.kubernetes.api.model.VolumeMount;
import io.sundr.builder.annotations.Buildable;
import io.sundr.builder.annotations.BuildableReference;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import lombok.experimental.Accessors;
/**
* Networking defines the pod network provider in the cluster.
*/
@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"clusterNetwork",
"clusterNetworkMTU",
"clusterNetworks",
"machineCIDR",
"machineNetwork",
"networkType",
"serviceCIDR",
"serviceNetwork",
"type"
})
@ToString
@EqualsAndHashCode
@Accessors(prefix = {
"_",
""
})
@Buildable(editableEnabled = false, validationEnabled = false, generateBuilderPackage = false, lazyCollectionInitEnabled = false, builderPackage = "io.fabric8.kubernetes.api.builder", refs = {
@BuildableReference(ObjectMeta.class),
@BuildableReference(LabelSelector.class),
@BuildableReference(Container.class),
@BuildableReference(PodTemplateSpec.class),
@BuildableReference(ResourceRequirements.class),
@BuildableReference(IntOrString.class),
@BuildableReference(ObjectReference.class),
@BuildableReference(LocalObjectReference.class),
@BuildableReference(PersistentVolumeClaim.class),
@BuildableReference(EnvVar.class),
@BuildableReference(ContainerPort.class),
@BuildableReference(Volume.class),
@BuildableReference(VolumeMount.class)
})
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator")
public class Networking implements Editable, KubernetesResource
{
@JsonProperty("clusterNetwork")
@JsonInclude(JsonInclude.Include.NON_EMPTY)
private List clusterNetwork = new ArrayList<>();
@JsonProperty("clusterNetworkMTU")
private Long clusterNetworkMTU;
@JsonProperty("clusterNetworks")
@JsonInclude(JsonInclude.Include.NON_EMPTY)
private List clusterNetworkList = new ArrayList<>();
@JsonProperty("machineCIDR")
private String machineCIDR;
@JsonProperty("machineNetwork")
@JsonInclude(JsonInclude.Include.NON_EMPTY)
private List machineNetwork = new ArrayList<>();
@JsonProperty("networkType")
private String networkType;
@JsonProperty("serviceCIDR")
private String serviceCIDR;
@JsonProperty("serviceNetwork")
@JsonInclude(JsonInclude.Include.NON_EMPTY)
private List serviceNetwork = new ArrayList<>();
@JsonProperty("type")
private String type;
@JsonIgnore
private Map additionalProperties = new LinkedHashMap();
/**
* No args constructor for use in serialization
*/
public Networking() {
}
public Networking(List clusterNetwork, Long clusterNetworkMTU, List clusterNetworkList, String machineCIDR, List machineNetwork, String networkType, String serviceCIDR, List serviceNetwork, String type) {
super();
this.clusterNetwork = clusterNetwork;
this.clusterNetworkMTU = clusterNetworkMTU;
this.clusterNetworkList = clusterNetworkList;
this.machineCIDR = machineCIDR;
this.machineNetwork = machineNetwork;
this.networkType = networkType;
this.serviceCIDR = serviceCIDR;
this.serviceNetwork = serviceNetwork;
this.type = type;
}
/**
* ClusterNetwork is the list of IP address pools for pods. Default is 10.128.0.0/14 and a host prefix of /23.
*/
@JsonProperty("clusterNetwork")
@JsonInclude(JsonInclude.Include.NON_EMPTY)
public List getClusterNetwork() {
return clusterNetwork;
}
/**
* ClusterNetwork is the list of IP address pools for pods. Default is 10.128.0.0/14 and a host prefix of /23.
*/
@JsonProperty("clusterNetwork")
public void setClusterNetwork(List clusterNetwork) {
this.clusterNetwork = clusterNetwork;
}
/**
* ClusterNetworkMTU is the Maximum Transmit (MTU) Unit size in bytes to allocate to the cluster network. For example, 1200 would set the MTU of the entire overlay network. If the deployment does not require changes in the network plugin, leave it unset and the MTU will be calculated automatically based on the host network MTU.
*/
@JsonProperty("clusterNetworkMTU")
public Long getClusterNetworkMTU() {
return clusterNetworkMTU;
}
/**
* ClusterNetworkMTU is the Maximum Transmit (MTU) Unit size in bytes to allocate to the cluster network. For example, 1200 would set the MTU of the entire overlay network. If the deployment does not require changes in the network plugin, leave it unset and the MTU will be calculated automatically based on the host network MTU.
*/
@JsonProperty("clusterNetworkMTU")
public void setClusterNetworkMTU(Long clusterNetworkMTU) {
this.clusterNetworkMTU = clusterNetworkMTU;
}
/**
* Deprecated name for ClusterNetwork
*/
@JsonProperty("clusterNetworks")
@JsonInclude(JsonInclude.Include.NON_EMPTY)
public List getClusterNetworks() {
return clusterNetworkList;
}
/**
* Deprecated name for ClusterNetwork
*/
@JsonProperty("clusterNetworks")
public void setClusterNetworks(List clusterNetworkList) {
this.clusterNetworkList = clusterNetworkList;
}
/**
* Networking defines the pod network provider in the cluster.
*/
@JsonProperty("machineCIDR")
public String getMachineCIDR() {
return machineCIDR;
}
/**
* Networking defines the pod network provider in the cluster.
*/
@JsonProperty("machineCIDR")
public void setMachineCIDR(String machineCIDR) {
this.machineCIDR = machineCIDR;
}
/**
* MachineNetwork is the list of IP address pools for machines. This field replaces MachineCIDR, and if set MachineCIDR must be empty or match the first entry in the list. Default is 10.0.0.0/16 for all platforms other than Power VS. For Power VS, the default is 192.168.0.0/24.
*/
@JsonProperty("machineNetwork")
@JsonInclude(JsonInclude.Include.NON_EMPTY)
public List getMachineNetwork() {
return machineNetwork;
}
/**
* MachineNetwork is the list of IP address pools for machines. This field replaces MachineCIDR, and if set MachineCIDR must be empty or match the first entry in the list. Default is 10.0.0.0/16 for all platforms other than Power VS. For Power VS, the default is 192.168.0.0/24.
*/
@JsonProperty("machineNetwork")
public void setMachineNetwork(List machineNetwork) {
this.machineNetwork = machineNetwork;
}
/**
* NetworkType is the type of network to install. The default value is OVNKubernetes.
*/
@JsonProperty("networkType")
public String getNetworkType() {
return networkType;
}
/**
* NetworkType is the type of network to install. The default value is OVNKubernetes.
*/
@JsonProperty("networkType")
public void setNetworkType(String networkType) {
this.networkType = networkType;
}
/**
* Networking defines the pod network provider in the cluster.
*/
@JsonProperty("serviceCIDR")
public String getServiceCIDR() {
return serviceCIDR;
}
/**
* Networking defines the pod network provider in the cluster.
*/
@JsonProperty("serviceCIDR")
public void setServiceCIDR(String serviceCIDR) {
this.serviceCIDR = serviceCIDR;
}
/**
* ServiceNetwork is the list of IP address pools for services. Default is 172.30.0.0/16. NOTE: currently only one entry is supported.
*/
@JsonProperty("serviceNetwork")
@JsonInclude(JsonInclude.Include.NON_EMPTY)
public List getServiceNetwork() {
return serviceNetwork;
}
/**
* ServiceNetwork is the list of IP address pools for services. Default is 172.30.0.0/16. NOTE: currently only one entry is supported.
*/
@JsonProperty("serviceNetwork")
public void setServiceNetwork(List serviceNetwork) {
this.serviceNetwork = serviceNetwork;
}
/**
* Deprecated name for NetworkType
*/
@JsonProperty("type")
public String getType() {
return type;
}
/**
* Deprecated name for NetworkType
*/
@JsonProperty("type")
public void setType(String type) {
this.type = type;
}
@JsonIgnore
public NetworkingBuilder edit() {
return new NetworkingBuilder(this);
}
@JsonIgnore
public NetworkingBuilder toBuilder() {
return edit();
}
@JsonAnyGetter
public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
public void setAdditionalProperties(Map additionalProperties) {
this.additionalProperties = additionalProperties;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy