Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 237 for Healthy (0.13 sec)

  1. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/emptyfilter_output.json

                                    }
                                },
                                "healthCheckConfig": {}
                            },
                            "healthStatus": "HEALTHY",
                            "loadBalancingWeight": 1
                        }
                    ]
                }
            ],
            "policy": {
                "overprovisioningFactor": 140
            }
        },
        {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 40.4K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/emptyfilter_output.yaml

            healthCheckConfig: {}
          healthStatus: HEALTHY
          loadBalancingWeight: 1
          metadata:
            filterMetadata:
              istio:
                workload: coredns;kube-system;;;Kubernetes
        - endpoint:
            address:
              socketAddress:
                address: 10.244.0.3
                portValue: 53
            healthCheckConfig: {}
          healthStatus: HEALTHY
          loadBalancingWeight: 1
          metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/ztunnel/configdump/testdata/dump.json

          "workloadType": "deployment",
          "canonicalName": "ratings",
          "canonicalRevision": "v1",
          "network": "network1",
          "node": "ambient-worker2",
          "nativeTunnel": true,
          "status": "Healthy",
          "clusterId": "Kubernetes"
        },
        "/10.244.2.58": {
          "workloadIps": [
            "10.244.2.58"
          ],
          "protocol": "HBONE",
          "uid": "Kubernetes//Pod/default/sleep-7656cf8794-lxcmx",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/policy/v1beta1/types.go

    	// but not yet healthy can be evicted only if the guarded application is not
    	// disrupted (status.currentHealthy is at least equal to status.desiredHealthy).
    	// Healthy pods will be subject to the PDB for eviction.
    	//
    	// AlwaysAllow policy means that all running pods (status.phase="Running"),
    	// but not yet healthy are considered disrupted and can be evicted regardless
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/policy/v1/types.go

    	// but not yet healthy can be evicted only if the guarded application is not
    	// disrupted (status.currentHealthy is at least equal to status.desiredHealthy).
    	// Healthy pods will be subject to the PDB for eviction.
    	//
    	// AlwaysAllow policy means that all running pods (status.phase="Running"),
    	// but not yet healthy are considered disrupted and can be evicted regardless
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/apiclient/wait.go

    			w.client.Discovery().RESTClient().Get().AbsPath("/healthz").Do(ctx).StatusCode(&healthStatus)
    			if healthStatus != http.StatusOK {
    				return false, nil
    			}
    			return true, nil
    		})
    	if err != nil {
    		fmt.Printf("[api-check] The API server is not healthy after %v\n", time.Since(start))
    		return err
    	}
    
    	fmt.Printf("[api-check] The API server is healthy after %v\n", time.Since(start))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. pilot/pkg/autoregistration/controller_test.go

    	ig.OnConnect(makeConn(p, time.Now()))
    	t.Run("auto registered healthy health", func(t *testing.T) {
    		ig.QueueWorkloadEntryHealth(p, HealthEvent{
    			Healthy: true,
    		})
    		checkHealthOrFail(t, store, p, true)
    	})
    	t.Run("auto registered unhealthy health", func(t *testing.T) {
    		ig.QueueWorkloadEntryHealth(p, HealthEvent{
    			Healthy: false,
    			Message: "lol health bad",
    		})
    		checkHealthOrFail(t, store, p, false)
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/ServiceManager.java

      /**
       * Waits for the {@link ServiceManager} to become {@linkplain #isHealthy() healthy}. The manager
       * will become healthy after all the component services have reached the {@linkplain State#RUNNING
       * running} state.
       *
       * @throws IllegalStateException if the service manager reaches a state from which it cannot
       *     become {@linkplain #isHealthy() healthy}.
       */
      public void awaitHealthy() {
        state.awaitHealthy();
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 33K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

      /**
       * Waits for the {@link ServiceManager} to become {@linkplain #isHealthy() healthy}. The manager
       * will become healthy after all the component services have reached the {@linkplain State#RUNNING
       * running} state.
       *
       * @throws IllegalStateException if the service manager reaches a state from which it cannot
       *     become {@linkplain #isHealthy() healthy}.
       */
      public void awaitHealthy() {
        state.awaitHealthy();
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. pilot/pkg/xds/eds_test.go

    			adscon := s.Connect(nil, nil, watchEds)
    
    			validateEndpoints := func(expectPush bool, healthy []string, unhealthy []string) {
    				t.Helper()
    				// Normalize lists to make comparison easier
    				if healthy == nil {
    					healthy = []string{}
    				}
    				if unhealthy == nil {
    					unhealthy = []string{}
    				}
    				sort.Strings(healthy)
    				sort.Strings(unhealthy)
    				if expectPush {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
Back to top