Package io.fabric8.kubernetes.api.model
Class APIServiceSpec
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.APIServiceSpec
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<APIServiceSpecBuilder>,KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class APIServiceSpec extends Object implements io.fabric8.kubernetes.api.builder.Editable<APIServiceSpecBuilder>, KubernetesResource
APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description APIServiceSpec()No args constructor for use in serializationAPIServiceSpec(String caBundle, String group, Integer groupPriorityMinimum, Boolean insecureSkipTLSVerify, ServiceReference service, String version, Integer versionPriority)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description APIServiceSpecBuilderedit()Map<String,Object>getAdditionalProperties()StringgetCaBundle()CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate.StringgetGroup()Group is the API group name this server hostsIntegergetGroupPriorityMinimum()GroupPriorityMinimum is the priority this group should have at least.BooleangetInsecureSkipTLSVerify()InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server.ServiceReferencegetService()APIServiceSpec contains information for locating and communicating with a server.StringgetVersion()Version is the API version this server hosts.IntegergetVersionPriority()VersionPriority controls the ordering of this API version inside of its group.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetCaBundle(String caBundle)CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate.voidsetGroup(String group)Group is the API group name this server hostsvoidsetGroupPriorityMinimum(Integer groupPriorityMinimum)GroupPriorityMinimum is the priority this group should have at least.voidsetInsecureSkipTLSVerify(Boolean insecureSkipTLSVerify)InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server.voidsetService(ServiceReference service)APIServiceSpec contains information for locating and communicating with a server.voidsetVersion(String version)Version is the API version this server hosts.voidsetVersionPriority(Integer versionPriority)VersionPriority controls the ordering of this API version inside of its group.APIServiceSpecBuildertoBuilder()
-
-
-
Method Detail
-
getCaBundle
public String getCaBundle()
CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. If unspecified, system trust roots on the apiserver are used.
-
setCaBundle
public void setCaBundle(String caBundle)
CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. If unspecified, system trust roots on the apiserver are used.
-
getGroup
public String getGroup()
Group is the API group name this server hosts
-
setGroup
public void setGroup(String group)
Group is the API group name this server hosts
-
getGroupPriorityMinimum
public Integer getGroupPriorityMinimum()
GroupPriorityMinimum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMinimum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s
-
setGroupPriorityMinimum
public void setGroupPriorityMinimum(Integer groupPriorityMinimum)
GroupPriorityMinimum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMinimum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s
-
getInsecureSkipTLSVerify
public Boolean getInsecureSkipTLSVerify()
InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged. You should use the CABundle instead.
-
setInsecureSkipTLSVerify
public void setInsecureSkipTLSVerify(Boolean insecureSkipTLSVerify)
InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged. You should use the CABundle instead.
-
getService
public ServiceReference getService()
APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification.
-
setService
public void setService(ServiceReference service)
APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification.
-
getVersion
public String getVersion()
Version is the API version this server hosts. For example, "v1"
-
setVersion
public void setVersion(String version)
Version is the API version this server hosts. For example, "v1"
-
getVersionPriority
public Integer getVersionPriority()
VersionPriority controls the ordering of this API version inside of its group. Must be greater than zero. The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). Since it's inside of a group, the number can be small, probably in the 10s. In case of equal version priorities, the version string will be used to compute the order inside a group. If the version string is "kube-like", it will sort above non "kube-like" version strings, which are ordered lexicographically. "Kube-like" versions start with a "v", then are followed by a number (the major version), then optionally the string "alpha" or "beta" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.
-
setVersionPriority
public void setVersionPriority(Integer versionPriority)
VersionPriority controls the ordering of this API version inside of its group. Must be greater than zero. The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). Since it's inside of a group, the number can be small, probably in the 10s. In case of equal version priorities, the version string will be used to compute the order inside a group. If the version string is "kube-like", it will sort above non "kube-like" version strings, which are ordered lexicographically. "Kube-like" versions start with a "v", then are followed by a number (the major version), then optionally the string "alpha" or "beta" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.
-
edit
public APIServiceSpecBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<APIServiceSpecBuilder>
-
toBuilder
public APIServiceSpecBuilder toBuilder()
-
-