From 400c0a26026cd3320f87ee2244989e5a47b9d6e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20K=C5=99epinsk=C3=BD?= Date: Sun, 20 Jul 2025 23:22:21 +0200 Subject: [PATCH] make update Kubernetes-commit: 2bf467170e737faa33ba739ee05e6359768a807e --- applyconfigurations/apps/v1/deploymentstatus.go | 2 +- applyconfigurations/apps/v1/replicasetstatus.go | 2 +- applyconfigurations/apps/v1beta1/deploymentstatus.go | 2 +- applyconfigurations/apps/v1beta2/deploymentstatus.go | 2 +- applyconfigurations/apps/v1beta2/replicasetstatus.go | 2 +- applyconfigurations/extensions/v1beta1/deploymentstatus.go | 2 +- applyconfigurations/extensions/v1beta1/replicasetstatus.go | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/applyconfigurations/apps/v1/deploymentstatus.go b/applyconfigurations/apps/v1/deploymentstatus.go index ece67ffaf..d932a5b1b 100644 --- a/applyconfigurations/apps/v1/deploymentstatus.go +++ b/applyconfigurations/apps/v1/deploymentstatus.go @@ -40,7 +40,7 @@ type DeploymentStatusApplyConfiguration struct { // Total number of terminating pods targeted by this deployment. Terminating pods have a non-null // .metadata.deletionTimestamp and have not yet reached the Failed or Succeeded .status.phase. // - // This is an alpha field. Enable DeploymentReplicaSetTerminatingReplicas to be able to use this field. + // This is a beta field and requires enabling DeploymentReplicaSetTerminatingReplicas feature (enabled by default). TerminatingReplicas *int32 `json:"terminatingReplicas,omitempty"` // Represents the latest available observations of a deployment's current state. Conditions []DeploymentConditionApplyConfiguration `json:"conditions,omitempty"` diff --git a/applyconfigurations/apps/v1/replicasetstatus.go b/applyconfigurations/apps/v1/replicasetstatus.go index b234f4c9c..b3560959f 100644 --- a/applyconfigurations/apps/v1/replicasetstatus.go +++ b/applyconfigurations/apps/v1/replicasetstatus.go @@ -35,7 +35,7 @@ type ReplicaSetStatusApplyConfiguration struct { // The number of terminating pods for this replica set. Terminating pods have a non-null .metadata.deletionTimestamp // and have not yet reached the Failed or Succeeded .status.phase. // - // This is an alpha field. Enable DeploymentReplicaSetTerminatingReplicas to be able to use this field. + // This is a beta field and requires enabling DeploymentReplicaSetTerminatingReplicas feature (enabled by default). TerminatingReplicas *int32 `json:"terminatingReplicas,omitempty"` // ObservedGeneration reflects the generation of the most recently observed ReplicaSet. ObservedGeneration *int64 `json:"observedGeneration,omitempty"` diff --git a/applyconfigurations/apps/v1beta1/deploymentstatus.go b/applyconfigurations/apps/v1beta1/deploymentstatus.go index ef7025959..d508accbc 100644 --- a/applyconfigurations/apps/v1beta1/deploymentstatus.go +++ b/applyconfigurations/apps/v1beta1/deploymentstatus.go @@ -40,7 +40,7 @@ type DeploymentStatusApplyConfiguration struct { // Total number of terminating pods targeted by this deployment. Terminating pods have a non-null // .metadata.deletionTimestamp and have not yet reached the Failed or Succeeded .status.phase. // - // This is an alpha field. Enable DeploymentReplicaSetTerminatingReplicas to be able to use this field. + // This is a beta field and requires enabling DeploymentReplicaSetTerminatingReplicas feature (enabled by default). TerminatingReplicas *int32 `json:"terminatingReplicas,omitempty"` // Represents the latest available observations of a deployment's current state. Conditions []DeploymentConditionApplyConfiguration `json:"conditions,omitempty"` diff --git a/applyconfigurations/apps/v1beta2/deploymentstatus.go b/applyconfigurations/apps/v1beta2/deploymentstatus.go index e3fd37670..139fe4cf2 100644 --- a/applyconfigurations/apps/v1beta2/deploymentstatus.go +++ b/applyconfigurations/apps/v1beta2/deploymentstatus.go @@ -40,7 +40,7 @@ type DeploymentStatusApplyConfiguration struct { // Total number of terminating pods targeted by this deployment. Terminating pods have a non-null // .metadata.deletionTimestamp and have not yet reached the Failed or Succeeded .status.phase. // - // This is an alpha field. Enable DeploymentReplicaSetTerminatingReplicas to be able to use this field. + // This is a beta field and requires enabling DeploymentReplicaSetTerminatingReplicas feature (enabled by default). TerminatingReplicas *int32 `json:"terminatingReplicas,omitempty"` // Represents the latest available observations of a deployment's current state. Conditions []DeploymentConditionApplyConfiguration `json:"conditions,omitempty"` diff --git a/applyconfigurations/apps/v1beta2/replicasetstatus.go b/applyconfigurations/apps/v1beta2/replicasetstatus.go index e71a0eda7..5d0caaebd 100644 --- a/applyconfigurations/apps/v1beta2/replicasetstatus.go +++ b/applyconfigurations/apps/v1beta2/replicasetstatus.go @@ -35,7 +35,7 @@ type ReplicaSetStatusApplyConfiguration struct { // The number of terminating pods for this replica set. Terminating pods have a non-null .metadata.deletionTimestamp // and have not yet reached the Failed or Succeeded .status.phase. // - // This is an alpha field. Enable DeploymentReplicaSetTerminatingReplicas to be able to use this field. + // This is a beta field and requires enabling DeploymentReplicaSetTerminatingReplicas feature (enabled by default). TerminatingReplicas *int32 `json:"terminatingReplicas,omitempty"` // ObservedGeneration reflects the generation of the most recently observed ReplicaSet. ObservedGeneration *int64 `json:"observedGeneration,omitempty"` diff --git a/applyconfigurations/extensions/v1beta1/deploymentstatus.go b/applyconfigurations/extensions/v1beta1/deploymentstatus.go index 1482b92df..e58b08ed2 100644 --- a/applyconfigurations/extensions/v1beta1/deploymentstatus.go +++ b/applyconfigurations/extensions/v1beta1/deploymentstatus.go @@ -40,7 +40,7 @@ type DeploymentStatusApplyConfiguration struct { // Total number of terminating pods targeted by this deployment. Terminating pods have a non-null // .metadata.deletionTimestamp and have not yet reached the Failed or Succeeded .status.phase. // - // This is an alpha field. Enable DeploymentReplicaSetTerminatingReplicas to be able to use this field. + // This is a beta field and requires enabling DeploymentReplicaSetTerminatingReplicas feature (enabled by default). TerminatingReplicas *int32 `json:"terminatingReplicas,omitempty"` // Represents the latest available observations of a deployment's current state. Conditions []DeploymentConditionApplyConfiguration `json:"conditions,omitempty"` diff --git a/applyconfigurations/extensions/v1beta1/replicasetstatus.go b/applyconfigurations/extensions/v1beta1/replicasetstatus.go index 949e39e3e..6882bc666 100644 --- a/applyconfigurations/extensions/v1beta1/replicasetstatus.go +++ b/applyconfigurations/extensions/v1beta1/replicasetstatus.go @@ -35,7 +35,7 @@ type ReplicaSetStatusApplyConfiguration struct { // The number of terminating pods for this replica set. Terminating pods have a non-null .metadata.deletionTimestamp // and have not yet reached the Failed or Succeeded .status.phase. // - // This is an alpha field. Enable DeploymentReplicaSetTerminatingReplicas to be able to use this field. + // This is a beta field and requires enabling DeploymentReplicaSetTerminatingReplicas feature (enabled by default). TerminatingReplicas *int32 `json:"terminatingReplicas,omitempty"` // ObservedGeneration reflects the generation of the most recently observed ReplicaSet. ObservedGeneration *int64 `json:"observedGeneration,omitempty"`