Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for AvailableReplicas (0.46 sec)

  1. pkg/apis/apps/validation/validation_test.go

    		readyReplicas:      4,
    		availableReplicas:  3,
    		observedGeneration: 1,
    		expectedErr:        true,
    	}, {
    		name:               "availableReplicas greater than replicas",
    		replicas:           3,
    		readyReplicas:      3,
    		availableReplicas:  4,
    		observedGeneration: 1,
    		expectedErr:        true,
    	}, {
    		name:               "availableReplicas greater than readyReplicas",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/generated.pb.go

    				return fmt.Errorf("proto: wrong wireType = %d for field AvailableReplicas", wireType)
    			}
    			m.AvailableReplicas = 0
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return io.ErrUnexpectedEOF
    				}
    				b := dAtA[iNdEx]
    				iNdEx++
    				m.AvailableReplicas |= int32(b&0x7F) << shift
    				if b < 0x80 {
    					break
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 217.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1beta2/generated.pb.go

    				return fmt.Errorf("proto: wrong wireType = %d for field AvailableReplicas", wireType)
    			}
    			m.AvailableReplicas = 0
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return io.ErrUnexpectedEOF
    				}
    				b := dAtA[iNdEx]
    				iNdEx++
    				m.AvailableReplicas |= int32(b&0x7F) << shift
    				if b < 0x80 {
    					break
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta1/generated.pb.go

    				return fmt.Errorf("proto: wrong wireType = %d for field AvailableReplicas", wireType)
    			}
    			m.AvailableReplicas = 0
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return io.ErrUnexpectedEOF
    				}
    				b := dAtA[iNdEx]
    				iNdEx++
    				m.AvailableReplicas |= int32(b&0x7F) << shift
    				if b < 0x80 {
    					break
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers.go

    		Object: runtime.RawExtension{Object: obj},
    	}
    	desiredReplicas := obj.Spec.Replicas
    	updatedReplicas := obj.Status.UpdatedReplicas
    	readyReplicas := obj.Status.ReadyReplicas
    	availableReplicas := obj.Status.AvailableReplicas
    	age := translateTimestampSince(obj.CreationTimestamp)
    	containers := obj.Spec.Template.Spec.Containers
    	selector, err := metav1.LabelSelectorAsSelector(obj.Spec.Selector)
    	selectorString := ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "type": "object"
        },
        "io.k8s.api.apps.v1.DeploymentStatus": {
          "description": "DeploymentStatus is the most recently observed status of the Deployment.",
          "properties": {
            "availableReplicas": {
              "description": "Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.",
              "format": "int32",
              "type": "integer"
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_set_control_test.go

    		status, err := ssc.UpdateStatefulSet(context.TODO(), set, pods)
    		if err != nil {
    			t.Fatalf("%s: %s", test.name, err)
    		}
    		if status.AvailableReplicas != test.expectedActiveReplicas {
    			t.Fatalf("expected %d active replicas got %d", test.expectedActiveReplicas, status.AvailableReplicas)
    		}
    	}
    }
    
    func TestStatefulSetStatusUpdate(t *testing.T) {
    	var (
    		syncErr   = fmt.Errorf("sync error")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers_test.go

    			// Columns: Name, ReadyReplicas, UpdatedReplicas, AvailableReplicas, Age
    			expected: []metav1.TableRow{{Cells: []interface{}{"test1", "0/5", int64(2), int64(1), "0s"}}},
    		},
    		// Test generate options: Wide.
    		{
    			deployment: testDeployment,
    			options:    printers.GenerateOptions{Wide: true},
    			// Columns: Name, ReadyReplicas, UpdatedReplicas, AvailableReplicas, Age, Containers, Images, Selectors
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.5.md

    * promote contrib/mesos to incubator ([#33658](https://github.com/kubernetes/kubernetes/pull/33658), [@deads2k](https://github.com/deads2k))
    * MinReadySeconds / AvailableReplicas for ReplicaSets ([#32771](https://github.com/kubernetes/kubernetes/pull/32771), [@kargakis](https://github.com/kargakis))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
Back to top