Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for DeploymentStatus (0.23 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta2/deploymentstatus.go

    	CollisionCount      *int32                                  `json:"collisionCount,omitempty"`
    }
    
    // DeploymentStatusApplyConfiguration constructs an declarative configuration of the DeploymentStatus type for use with
    // apply.
    func DeploymentStatus() *DeploymentStatusApplyConfiguration {
    	return &DeploymentStatusApplyConfiguration{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/apps/v1/deploymentstatus.go

    	CollisionCount      *int32                                  `json:"collisionCount,omitempty"`
    }
    
    // DeploymentStatusApplyConfiguration constructs an declarative configuration of the DeploymentStatus type for use with
    // apply.
    func DeploymentStatus() *DeploymentStatusApplyConfiguration {
    	return &DeploymentStatusApplyConfiguration{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta1/deploymentstatus.go

    	CollisionCount      *int32                                  `json:"collisionCount,omitempty"`
    }
    
    // DeploymentStatusApplyConfiguration constructs an declarative configuration of the DeploymentStatus type for use with
    // apply.
    func DeploymentStatus() *DeploymentStatusApplyConfiguration {
    	return &DeploymentStatusApplyConfiguration{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  4. operator/pkg/verifier/verify_test.go

    )
    
    var (
    	availableDeployment = appsv1.Deployment{
    		Status: appsv1.DeploymentStatus{
    			Conditions: []appsv1.DeploymentCondition{
    				{
    					Type: appsv1.DeploymentAvailable,
    				},
    			},
    		},
    	}
    
    	scaleUpRollingDeployment = appsv1.Deployment{
    		Spec: appsv1.DeploymentSpec{
    			Replicas: &[]int32{3}[0],
    		},
    		Status: appsv1.DeploymentStatus{
    			Conditions: []appsv1.DeploymentCondition{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 28 16:26:13 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/extract_test.go

        - name: status
          type:
            namedType: io.k8s.api.apps.v1.DeploymentStatus
    - name: io.k8s.api.apps.v1.DeploymentSpec
      map:
        fields:
        - name: paused
          type:
            scalar: boolean
        - name: replicas
          type:
            scalar: numeric
    - name: io.k8s.api.apps.v1.DeploymentStatus
      map:
        fields:
        - name: replicas
          type:
            scalar: numeric
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 22 22:32:45 UTC 2021
    - 8.3K bytes
    - Viewed (0)
  6. operator/pkg/verifier/k8s_util.go

    				daemonSet.Namespace, daemonSet.Name, daemonSet.Status.NumberReady, daemonSet.Status.DesiredNumberScheduled)
    		}
    	}
    	return nil
    }
    
    func getDeploymentCondition(status appsv1.DeploymentStatus, condType appsv1.DeploymentConditionType) *appsv1.DeploymentCondition {
    	for i := range status.Conditions {
    		c := status.Conditions[i]
    		if c.Type == condType {
    			return &c
    		}
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 28 16:26:13 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. pkg/controller/deployment/recreate.go

    	// scale down old replica sets.
    	scaledDown, err := dc.scaleDownOldReplicaSetsForRecreate(ctx, activeOldRSs, d)
    	if err != nil {
    		return err
    	}
    	if scaledDown {
    		// Update DeploymentStatus.
    		return dc.syncRolloutStatus(ctx, allRSs, newRS, d)
    	}
    
    	// Do not process a deployment when it has old pods running.
    	if oldPodsRunning(newRS, oldRSs, podMap) {
    		return dc.syncRolloutStatus(ctx, allRSs, newRS, d)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 13 20:32:13 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  8. pkg/controller/deployment/progress.go

    // will be requeued now, or -1 if it does not need to be requeued.
    func (dc *DeploymentController) requeueStuckDeployment(ctx context.Context, d *apps.Deployment, newStatus apps.DeploymentStatus) time.Duration {
    	logger := klog.FromContext(ctx)
    	currentCond := util.GetDeploymentCondition(d.Status, apps.DeploymentProgressing)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 11:00:44 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. pkg/registry/apps/deployment/strategy.go

    func (deploymentStrategy) PrepareForCreate(ctx context.Context, obj runtime.Object) {
    	deployment := obj.(*apps.Deployment)
    	deployment.Status = apps.DeploymentStatus{}
    	deployment.Generation = 1
    
    	pod.DropDisabledTemplateFields(&deployment.Spec.Template, nil)
    }
    
    // Validate validates a new deployment.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 16 21:07:13 UTC 2022
    - 8.2K bytes
    - Viewed (0)
Back to top