Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for unavoidable (0.21 sec)

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

    			expectError: true,
    		},
    		"invalid: surge enabled, unavailable zero": {
    			ds: &apps.RollingUpdateDaemonSet{
    				MaxUnavailable: intstr.FromInt32(0),
    			},
    			expectError: true,
    		},
    		"valid: surge enabled, unavailable one": {
    			ds: &apps.RollingUpdateDaemonSet{
    				MaxUnavailable: intstr.FromInt32(1),
    			},
    		},
    		"valid: surge enabled, unavailable one percent": {
    			ds: &apps.RollingUpdateDaemonSet{
    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/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    		{Name: "Min Available", Type: "string", Description: "The minimum number of pods that must be available."},
    		{Name: "Max Unavailable", Type: "string", Description: "The maximum number of pods that may be unavailable."},
    		{Name: "Allowed Disruptions", Type: "integer", Description: "Calculated number of pods that may be disrupted at this time."},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  4. tests/integration/pilot/common/routing.go

        fault:
          abort:
            percentage:
              value: 100
            grpcStatus: "UNAVAILABLE"`,
    		opts: echo.CallOptions{
    			Port: echo.Port{
    				Name: "grpc",
    			},
    			Scheme: scheme.GRPC,
    			Count:  1,
    			Check:  check.GRPCStatus(codes.Unavailable),
    		},
    		workloadAgnostic: true,
    		sourceMatchers:   includeProxyless,
    	})
    	t.RunTraffic(TrafficTestCase{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_control_test.go

    	}
    
    	return set, spc, ssc, maxUnavailable, totalPods
    }
    
    func TestStatefulSetControlRollingUpdateWithMaxUnavailableInOrderedModeVerifyInvariant(t *testing.T) {
    	// Make all pods in statefulset unavailable one by one
    	// and verify that RollingUpdate doesnt proceed with maxUnavailable set
    	// this could have been a simple loop, keeping it like this to be able
    	// to add more params here.
    	testCases := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  6. src/net/http/server.go

    	// needed request body data before writing the response. Once the
    	// headers have been flushed (due to either an explicit Flusher.Flush
    	// call or writing enough data to trigger a flush), the request body
    	// may be unavailable. For HTTP/2 requests, the Go HTTP server permits
    	// handlers to continue to read the request body while concurrently
    	// writing the response. However, such behavior may not be supported
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. pkg/volume/util/operationexecutor/operation_generator.go

    				return volumetypes.NewOperationContext(eventErr, detailedErr, migrated)
    			}
    		}
    
    		// When kubelet is containerized, devicePath may be a symlink at a place unavailable to
    		// kubelet, so evaluate it on the host and expect that it links to a device in /dev,
    		// which will be available to containerized kubelet. If still it does not exist,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  8. pkg/controller/daemon/daemon_controller_test.go

    		manager, podControl, _, err := newTestController(ctx, ds)
    		if err != nil {
    			t.Fatalf("error creating DaemonSets controller: %v", err)
    		}
    
    		node := newNode("network-unavailable", nil)
    		node.Status.Conditions = []v1.NodeCondition{
    			{Type: v1.NodeNetworkUnavailable, Status: v1.ConditionTrue},
    		}
    		err = manager.nodeStore.Add(node)
    		if err != nil {
    			t.Fatal(err)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  9. pkg/config/validation/validation.go

    		// https://www.envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/router_filter#x-envoy-retry-grpc-on
    		"cancelled",
    		"deadline-exceeded",
    		"internal",
    		"resource-exhausted",
    		"unavailable",
    	)
    
    	// golang supported methods: https://golang.org/src/net/http/method.go
    	supportedMethods = sets.New(
    		http.MethodGet,
    		http.MethodHead,
    		http.MethodPost,
    		http.MethodPut,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.4.md

    * Bump GCI to gci-stable-56-9000-84-2: Fixed google-accounts-daemon breaks on GCI when network is unavailable. Fixed iptables-restore performance regression. ([#41831](https://github.com/kubernetes/kubernetes/pull/41831), [@freehan](https://github.com/freehan))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
Back to top