Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for DeploymentStatus (0.22 sec)

  1. staging/src/k8s.io/api/apps/v1beta1/generated.pb.go

    func (m *DeploymentStatus) Reset()      { *m = DeploymentStatus{} }
    func (*DeploymentStatus) ProtoMessage() {}
    func (*DeploymentStatus) Descriptor() ([]byte, []int) {
    	return fileDescriptor_2747f709ac7c95e7, []int{7}
    }
    func (m *DeploymentStatus) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *DeploymentStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  2. pkg/apis/apps/validation/validation_test.go

    		name string
    
    		from, to apps.DeploymentStatus
    
    		expectedErr bool
    	}{{
    		name: "increase: valid update",
    		from: apps.DeploymentStatus{
    			CollisionCount: nil,
    		},
    		to: apps.DeploymentStatus{
    			CollisionCount: &collisionCount,
    		},
    		expectedErr: false,
    	}, {
    		name: "stable: valid update",
    		from: apps.DeploymentStatus{
    			CollisionCount: &collisionCount,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1/generated.pb.go

    func (m *DeploymentStatus) Reset()      { *m = DeploymentStatus{} }
    func (*DeploymentStatus) ProtoMessage() {}
    func (*DeploymentStatus) Descriptor() ([]byte, []int) {
    	return fileDescriptor_5b781835628d5338, []int{12}
    }
    func (m *DeploymentStatus) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *DeploymentStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 217.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta2/generated.pb.go

    func (m *DeploymentStatus) Reset()      { *m = DeploymentStatus{} }
    func (*DeploymentStatus) ProtoMessage() {}
    func (*DeploymentStatus) Descriptor() ([]byte, []int) {
    	return fileDescriptor_c423c016abf485d4, []int{12}
    }
    func (m *DeploymentStatus) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *DeploymentStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            }
          },
          "required": [
            "selector",
            "template"
          ],
          "type": "object"
        },
        "io.k8s.api.apps.v1.DeploymentStatus": {
          "description": "DeploymentStatus is the most recently observed status of the Deployment.",
          "properties": {
            "availableReplicas": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers.go

    		{Name: "Ready", Type: "string", Description: "Number of the pod with ready state"},
    		{Name: "Up-to-date", Type: "string", Description: extensionsv1beta1.DeploymentStatus{}.SwaggerDoc()["updatedReplicas"]},
    		{Name: "Available", Type: "string", Description: extensionsv1beta1.DeploymentStatus{}.SwaggerDoc()["availableReplicas"]},
    		{Name: "Age", Type: "string", Description: metav1.ObjectMeta{}.SwaggerDoc()["creationTimestamp"]},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers_test.go

    							Name:  "fake-container2",
    							Image: "fake-image2",
    						},
    					},
    				},
    			},
    			Selector: &metav1.LabelSelector{MatchLabels: map[string]string{"foo": "bar"}},
    		},
    		Status: apps.DeploymentStatus{
    			Replicas:            10,
    			UpdatedReplicas:     2,
    			AvailableReplicas:   1,
    			UnavailableReplicas: 4,
    		},
    	}
    
    	tests := []struct {
    		deployment apps.Deployment
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top