Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for healthChecks (0.14 sec)

  1. pkg/proxy/ipvs/proxier_test.go

    		t.Errorf("expected stale UDP services length 0, got %d", len(result.DeletedUDPClusterIPs))
    	}
    
    	// No proxied services, so no healthchecks
    	healthCheckNodePorts := fp.svcPortMap.HealthCheckNodePorts()
    	if len(healthCheckNodePorts) != 0 {
    		t.Errorf("expected healthcheck ports length 0, got %d", len(healthCheckNodePorts))
    	}
    }
    
    func TestBuildServiceMapServiceTypeExternalName(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier_test.go

    		t.Errorf("expected stale UDP services length 0, got %d", len(result.DeletedUDPClusterIPs))
    	}
    
    	// No proxied services, so no healthchecks
    	healthCheckNodePorts := fp.svcPortMap.HealthCheckNodePorts()
    	if len(healthCheckNodePorts) != 0 {
    		t.Errorf("expected healthcheck ports length 0, got %d", len(healthCheckNodePorts))
    	}
    }
    
    func TestBuildServiceMapServiceTypeExternalName(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    	}
    
    	if len(c.wantHealthErrPrefix) > 0 {
    		if err := wait.PollUntilContextTimeout(ctx, time.Second, time.Minute, true, func(context.Context) (bool, error) {
    			healthErr := a.HealthCheck()
    			if healthErr == nil {
    				return false, fmt.Errorf("authenticator reported healthy when it should not")
    			}
    
    			if strings.HasPrefix(healthErr.Error(), c.wantHealthErrPrefix) {
    				return true, nil
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.5.md

    * kube-apiserver now drops unneeded path information if an older version of Windows kubectl sends it. ([#44585](https://github.com/kubernetes/kubernetes/pull/44585), [@mml](https://github.com/mml))
    * Fix for kube-proxy healthcheck handling an update that simultaneously removes one port and adds another. ([#44365](https://github.com/kubernetes/kubernetes/pull/44365), [@MrHohn](https://github.com/MrHohn))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.4.md

    * Added --log-facility flag to enhance dnsmasq logging ([#32422](https://github.com/kubernetes/kubernetes/pull/32422), [@MrHohn](https://github.com/MrHohn))
    * Split dns healthcheck into two different urls ([#32406](https://github.com/kubernetes/kubernetes/pull/32406), [@MrHohn](https://github.com/MrHohn))
    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