Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for appsv1beta1 (0.16 sec)

  1. pkg/apis/apps/v1beta1/defaults_test.go

    	}
    	tests := []struct {
    		original *appsv1beta1.Deployment
    		expected *appsv1beta1.Deployment
    	}{
    		{
    			original: &appsv1beta1.Deployment{},
    			expected: &appsv1beta1.Deployment{
    				Spec: appsv1beta1.DeploymentSpec{
    					Replicas: ptr.To[int32](1),
    					Strategy: appsv1beta1.DeploymentStrategy{
    						Type: appsv1beta1.RollingUpdateDeploymentStrategyType,
    						RollingUpdate: &appsv1beta1.RollingUpdateDeployment{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta1/statefulset.go

    // Experimental!
    func ExtractStatefulSet(statefulSet *appsv1beta1.StatefulSet, fieldManager string) (*StatefulSetApplyConfiguration, error) {
    	return extractStatefulSet(statefulSet, fieldManager, "")
    }
    
    // ExtractStatefulSetStatus is the same as ExtractStatefulSet except
    // that it extracts the status subresource applied configuration.
    // Experimental!
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  3. pkg/registry/apps/replicaset/storage/storage.go

    	switch containingGV {
    	case extensionsv1beta1.SchemeGroupVersion:
    		return extensionsv1beta1.SchemeGroupVersion.WithKind("Scale")
    	case appsv1beta1.SchemeGroupVersion:
    		return appsv1beta1.SchemeGroupVersion.WithKind("Scale")
    	case appsv1beta2.SchemeGroupVersion:
    		return appsv1beta2.SchemeGroupVersion.WithKind("Scale")
    	default:
    		return autoscalingv1.SchemeGroupVersion.WithKind("Scale")
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta1/deployment.go

    // Experimental!
    func ExtractDeployment(deployment *appsv1beta1.Deployment, fieldManager string) (*DeploymentApplyConfiguration, error) {
    	return extractDeployment(deployment, fieldManager, "")
    }
    
    // ExtractDeploymentStatus is the same as ExtractDeployment except
    // that it extracts the status subresource applied configuration.
    // Experimental!
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  5. pkg/registry/apps/statefulset/storage/storage.go

    func (r *ScaleREST) GroupVersionKind(containingGV schema.GroupVersion) schema.GroupVersionKind {
    	switch containingGV {
    	case appsv1beta1.SchemeGroupVersion:
    		return appsv1beta1.SchemeGroupVersion.WithKind("Scale")
    	case appsv1beta2.SchemeGroupVersion:
    		return appsv1beta2.SchemeGroupVersion.WithKind("Scale")
    	default:
    		return autoscalingv1.SchemeGroupVersion.WithKind("Scale")
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  6. pkg/registry/apps/deployment/storage/storage.go

    	switch containingGV {
    	case extensionsv1beta1.SchemeGroupVersion:
    		return extensionsv1beta1.SchemeGroupVersion.WithKind("Scale")
    	case appsv1beta1.SchemeGroupVersion:
    		return appsv1beta1.SchemeGroupVersion.WithKind("Scale")
    	case appsv1beta2.SchemeGroupVersion:
    		return appsv1beta2.SchemeGroupVersion.WithKind("Scale")
    	default:
    		return autoscalingv1.SchemeGroupVersion.WithKind("Scale")
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  7. pkg/apis/apps/v1beta2/defaults_test.go

    		},
    		{ // Custom unique label key.
    			original: &appsv1beta2.DaemonSet{
    				Spec: appsv1beta2.DaemonSetSpec{},
    			},
    			expected: &appsv1beta2.DaemonSet{
    				Spec: appsv1beta2.DaemonSetSpec{
    					Template: templateNoLabel,
    					UpdateStrategy: appsv1beta2.DaemonSetUpdateStrategy{
    						Type: appsv1beta2.RollingUpdateDaemonSetStrategyType,
    						RollingUpdate: &appsv1beta2.RollingUpdateDaemonSet{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta2/deployment.go

    // Experimental!
    func ExtractDeployment(deployment *appsv1beta2.Deployment, fieldManager string) (*DeploymentApplyConfiguration, error) {
    	return extractDeployment(deployment, fieldManager, "")
    }
    
    // ExtractDeploymentStatus is the same as ExtractDeployment except
    // that it extracts the status subresource applied configuration.
    // Experimental!
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta2/replicaset.go

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

    // Experimental!
    func ExtractStatefulSet(statefulSet *appsv1beta2.StatefulSet, fieldManager string) (*StatefulSetApplyConfiguration, error) {
    	return extractStatefulSet(statefulSet, fieldManager, "")
    }
    
    // ExtractStatefulSetStatus is the same as ExtractStatefulSet except
    // that it extracts the status subresource applied configuration.
    // Experimental!
    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