Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for blocked (0.2 sec)

  1. pkg/proxy/iptables/proxier_test.go

    			destPort: svcPort,
    			output:   fmt.Sprintf("%s:%d", epIP, svcPort),
    			masq:     true,
    		},
    		{
    			name:     "blocked external to LB1",
    			sourceIP: testExternalClientBlocked,
    			destIP:   svcLBIP1,
    			destPort: svcPort,
    			output:   "DROP",
    		},
    		{
    			name:     "blocked external to LB2",
    			sourceIP: testExternalClientBlocked,
    			destIP:   svcLBIP2,
    			destPort: svcPort,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    }
    
    // CloseWithError causes the next Read (waking up a current blocked
    // Read if needed) to return the provided err after all data has been
    // read.
    //
    // The error must be non-nil.
    func (p *http2pipe) CloseWithError(err error) { p.closeWithError(&p.err, err, nil) }
    
    // BreakWithError causes the next Read (waking up a current blocked
    // Read if needed) to return the provided err immediately, without
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.7.md

    	   annotation, you should delete any existing NetworkPolicy
    	   objects. These would have had no effect before, but with v1
    	   semantics they might cause some traffic to be blocked that you
    	   didn't intend to be blocked.
    
    ### Other notable changes
    
    * Added exponential backoff to Azure cloudprovider ([#46660](https://github.com/kubernetes/kubernetes/pull/46660), [@jackfrancis](https://github.com/jackfrancis))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.8.md

    	   annotation, you should delete any existing NetworkPolicy
    	   objects. These would have had no effect before, but with v1
    	   semantics they might cause some traffic to be blocked that you
    	   didn't intend to be blocked.
    
    ### Other notable changes
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/core/v1/generated.proto

      map<string, string> options = 5;
    }
    
    // Represents a Flocker volume mounted by the Flocker agent.
    // One and only one of datasetName and datasetUUID should be set.
    // Flocker volumes do not support ownership management or SELinux relabeling.
    message FlockerVolumeSource {
      // datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker
      // should be considered as deprecated
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.6.md

    ### Deployment
    * **[beta]** Deployments that cannot make progress in rolling out the newest version will now indicate via the API they are blocked ([docs](https://kubernetes.io/docs/user-guide/deployments/#deployment-status))
    
    ### Federation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.25.md

    - Kubeadm: graduated the kubeadm specific feature gate `UnversionedKubeletConfigMap` to GA and locked it to `true` by default. The kubelet related ConfigMap and RBAC rules are now locked to have a simplified naming `*kubelet-config` instead of the legacy naming `*kubelet-config-x.yy`, where `x.yy` was the version of the control plane. If you have previously used the old naming format with...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.16.md

    - Switch to VM Update call in attach/detach disk operation, original CreateOrUpdate call may lead to orphaned VMs or blocked resources ([#81208](https://github.com/kubernetes/kubernetes/pull/81208), [@andyzhangx](https://github.com/andyzhangx))
    - Fix azure disk naming matching issue due to case sensitive comparison ([#81720](https://github.com/kubernetes/kubernetes/pull/81720), [@andyzhangx](https://github.com/andyzhangx))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

            "description": "Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.",
            "properties": {
              "datasetName": {
                "description": "datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  10. pkg/registry/core/service/storage/storage_test.go

    	}
    	proveClusterIPsAllocated(t, storage, svc, createdSvc)
    	proveNodePortsAllocated(t, storage, svc, createdSvc)
    	proveHealthCheckNodePortAllocated(t, storage, svc, createdSvc)
    
    	// Try to delete it, but it should be blocked by the finalizer.
    	obj, deleted, err := storage.Delete(ctx, svcName, rest.ValidateAllObjectFunc, &metav1.DeleteOptions{})
    	if err != nil {
    		t.Fatalf("unexpected error deleting service: %v", err)
    	}
    	if deleted {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
Back to top