Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for extractReplicaSet (0.91 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/apps/v1/replicaset.go

    	return extractReplicaSet(replicaSet, fieldManager, "")
    }
    
    // ExtractReplicaSetStatus is the same as ExtractReplicaSet except
    // that it extracts the status subresource applied configuration.
    // Experimental!
    func ExtractReplicaSetStatus(replicaSet *apiappsv1.ReplicaSet, fieldManager string) (*ReplicaSetApplyConfiguration, error) {
    	return extractReplicaSet(replicaSet, fieldManager, "status")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta2/replicaset.go

    	return extractReplicaSet(replicaSet, fieldManager, "")
    }
    
    // ExtractReplicaSetStatus is the same as ExtractReplicaSet except
    // that it extracts the status subresource applied configuration.
    // Experimental!
    func ExtractReplicaSetStatus(replicaSet *appsv1beta2.ReplicaSet, fieldManager string) (*ReplicaSetApplyConfiguration, error) {
    	return extractReplicaSet(replicaSet, fieldManager, "status")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 12.2K bytes
    - Viewed (0)
Back to top