diff --git a/hypershift-operator/controllers/hostedcluster/hostedcluster_controller.go b/hypershift-operator/controllers/hostedcluster/hostedcluster_controller.go index 5ecd69cfa2..21f55cb558 100644 --- a/hypershift-operator/controllers/hostedcluster/hostedcluster_controller.go +++ b/hypershift-operator/controllers/hostedcluster/hostedcluster_controller.go @@ -764,9 +764,12 @@ func (r *HostedClusterReconciler) reconcile(ctx context.Context, req ctrl.Reques } } - // Copy the platform status from the hostedcontrolplane if hcp != nil { + // Copy the platform status from the hostedcontrolplane hcluster.Status.Platform = hcp.Status.Platform + + // Copy the oldestKubeletVersion status from the hostedcontrolplane + hcluster.Status.OldestKubeletVersion = hcp.Status.OldestKubeletVersion } // Copy the AWSDefaultSecurityGroupCreated condition from the hostedcontrolplane