Struct k8s_openapi::apiextensions_apiserver::pkg::apis::apiextensions::v1::CustomResourceSubresourceScale [−][src]
pub struct CustomResourceSubresourceScale {
pub label_selector_path: Option<String>,
pub spec_replicas_path: String,
pub status_replicas_path: String,
}
Expand description
CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources.
Fields
label_selector_path: Option<String>
labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale status.selector
. Only JSON paths without the array notation are allowed. Must be a JSON Path under .status
or .spec
. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path in the custom resource, the status.selector
value in the /scale
subresource will default to the empty string.
spec_replicas_path: String
specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale spec.replicas
. Only JSON paths without the array notation are allowed. Must be a JSON Path under .spec
. If there is no value under the given path in the custom resource, the /scale
subresource will return an error on GET.
status_replicas_path: String
statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale status.replicas
. Only JSON paths without the array notation are allowed. Must be a JSON Path under .status
. If there is no value under the given path in the custom resource, the status.replicas
value in the /scale
subresource will default to 0.
Trait Implementations
Returns the “default value” for a type. Read more
Deserialize this value from the given Serde deserializer. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for CustomResourceSubresourceScale
impl Sync for CustomResourceSubresourceScale
impl Unpin for CustomResourceSubresourceScale
impl UnwindSafe for CustomResourceSubresourceScale
Blanket Implementations
Mutably borrows from an owned value. Read more