|
|
|
@@ -1996,7 +1996,7 @@ type Container struct {
|
|
|
|
|
ImagePullPolicy PullPolicy `json:"imagePullPolicy,omitempty" protobuf:"bytes,14,opt,name=imagePullPolicy,casttype=PullPolicy"`
|
|
|
|
|
// Security options the pod should run with.
|
|
|
|
|
// More info: https://kubernetes.io/docs/concepts/policy/security-context/
|
|
|
|
|
// More info: https://git.k8s.io/community/contributors/design-proposals/security_context.md
|
|
|
|
|
// More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/
|
|
|
|
|
// +optional
|
|
|
|
|
SecurityContext *SecurityContext `json:"securityContext,omitempty" protobuf:"bytes,15,opt,name=securityContext"`
|
|
|
|
|
|
|
|
|
@@ -3825,7 +3825,7 @@ const (
|
|
|
|
|
// NamespaceSpec describes the attributes on a Namespace.
|
|
|
|
|
type NamespaceSpec struct {
|
|
|
|
|
// Finalizers is an opaque list of values that must be empty to permanently remove object from storage.
|
|
|
|
|
// More info: https://git.k8s.io/community/contributors/design-proposals/namespaces.md#finalizers
|
|
|
|
|
// More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/
|
|
|
|
|
// +optional
|
|
|
|
|
Finalizers []FinalizerName `json:"finalizers,omitempty" protobuf:"bytes,1,rep,name=finalizers,casttype=FinalizerName"`
|
|
|
|
|
}
|
|
|
|
@@ -3833,7 +3833,7 @@ type NamespaceSpec struct {
|
|
|
|
|
// NamespaceStatus is information about the current status of a Namespace.
|
|
|
|
|
type NamespaceStatus struct {
|
|
|
|
|
// Phase is the current lifecycle phase of the namespace.
|
|
|
|
|
// More info: https://git.k8s.io/community/contributors/design-proposals/namespaces.md#phases
|
|
|
|
|
// More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/
|
|
|
|
|
// +optional
|
|
|
|
|
Phase NamespacePhase `json:"phase,omitempty" protobuf:"bytes,1,opt,name=phase,casttype=NamespacePhase"`
|
|
|
|
|
}
|
|
|
|
@@ -4376,7 +4376,7 @@ type LimitRangeList struct {
|
|
|
|
|
metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
|
|
|
|
|
|
|
|
|
|
// Items is a list of LimitRange objects.
|
|
|
|
|
// More info: https://git.k8s.io/community/contributors/design-proposals/admission_control_limit_range.md
|
|
|
|
|
// More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
|
|
|
|
|
Items []LimitRange `json:"items" protobuf:"bytes,2,rep,name=items"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -4433,7 +4433,7 @@ const (
|
|
|
|
|
// ResourceQuotaSpec defines the desired hard limits to enforce for Quota.
|
|
|
|
|
type ResourceQuotaSpec struct {
|
|
|
|
|
// Hard is the set of desired hard limits for each named resource.
|
|
|
|
|
// More info: https://git.k8s.io/community/contributors/design-proposals/admission_control_resource_quota.md
|
|
|
|
|
// More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/
|
|
|
|
|
// +optional
|
|
|
|
|
Hard ResourceList `json:"hard,omitempty" protobuf:"bytes,1,rep,name=hard,casttype=ResourceList,castkey=ResourceName"`
|
|
|
|
|
// A collection of filters that must match each object tracked by a quota.
|
|
|
|
@@ -4445,7 +4445,7 @@ type ResourceQuotaSpec struct {
|
|
|
|
|
// ResourceQuotaStatus defines the enforced hard limits and observed use.
|
|
|
|
|
type ResourceQuotaStatus struct {
|
|
|
|
|
// Hard is the set of enforced hard limits for each named resource.
|
|
|
|
|
// More info: https://git.k8s.io/community/contributors/design-proposals/admission_control_resource_quota.md
|
|
|
|
|
// More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/
|
|
|
|
|
// +optional
|
|
|
|
|
Hard ResourceList `json:"hard,omitempty" protobuf:"bytes,1,rep,name=hard,casttype=ResourceList,castkey=ResourceName"`
|
|
|
|
|
// Used is the current observed total usage of the resource in the namespace.
|
|
|
|
@@ -4486,7 +4486,7 @@ type ResourceQuotaList struct {
|
|
|
|
|
metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
|
|
|
|
|
|
|
|
|
|
// Items is a list of ResourceQuota objects.
|
|
|
|
|
// More info: https://git.k8s.io/community/contributors/design-proposals/admission_control_resource_quota.md
|
|
|
|
|
// More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/
|
|
|
|
|
Items []ResourceQuota `json:"items" protobuf:"bytes,2,rep,name=items"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|