Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 774 for Healthy (0.12 sec)

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

    127.0.0.1:15020                                  HEALTHY                  agent
    10.244.0.156:9402                                HEALTHY                  outbound|9402||cert-manager-istio-csr-metrics.cert-manager.svc.cluster.local
    10.244.0.156:6443                                HEALTHY                  outbound|443||cert-manager-istio-csr.cert-manager.svc.cluster.local
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 21 14:17:23 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. pkg/istio-agent/health/health_check_test.go

    		expectedHTTPEvents := [4]*ProbeEvent{
    			{Healthy: true},
    			{Healthy: false},
    			{Healthy: true},
    			{Healthy: false},
    		}
    
    		eventNum := atomic.NewInt32(0)
    		go httpHealthChecker.PerformApplicationHealthCheck(func(event *ProbeEvent) {
    			if event.Healthy != expectedHTTPEvents[eventNum.Load()].Healthy {
    				t.Errorf("tcp: got event healthy: %v at idx %v when expected healthy: %v",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 16:50:11 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. pkg/istio-agent/health/health_check.go

    		// probe target
    		healthy, err := w.prober.Probe(w.config.ProbeTimeout)
    		if healthy.IsHealthy() {
    			healthCheckLog.Debug("probe completed with healthy status")
    			// we were healthy, increment success counter
    			numSuccess++
    			// wipe numFail (need consecutive success)
    			numFail = 0
    			// if we reached the threshold, mark the target as healthy
    			if numSuccess == w.config.SuccessThresh && lastState != lastStateHealthy {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 03:06:44 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/configdump.json

                                                },
                                                "health_check_config": {}
                                            },
                                            "health_status": "HEALTHY",
                                            "load_balancing_weight": 1
                                        }
                                    ]
                                }
                            ],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 66K bytes
    - Viewed (0)
  7. pkg/proxy/healthcheck/proxier_health.go

    	nodeEligible := h.hs.NodeEligible()
    	healthy, lastUpdated := h.hs.isHealthy()
    	currentTime := h.hs.clock.Now()
    
    	healthy = healthy && nodeEligible
    	resp.Header().Set("Content-Type", "application/json")
    	resp.Header().Set("X-Content-Type-Options", "nosniff")
    	if !healthy {
    		metrics.ProxyHealthzTotal.WithLabelValues("503").Inc()
    		resp.WriteHeader(http.StatusServiceUnavailable)
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 10:41:18 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. pkg/istio-agent/health/health_probers_test.go

    		desc                string
    		statusCode          int
    		expectedProbeResult ProbeResult
    		expectedError       error
    	}{
    		{
    			desc:                "Healthy - 200 status code",
    			statusCode:          200,
    			expectedProbeResult: Healthy,
    			expectedError:       nil,
    		},
    		{
    			desc:                "Unhealthy - 500 status code",
    			statusCode:          500,
    			expectedProbeResult: Unhealthy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 14 19:26:09 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  9. pkg/apis/policy/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
    - 6.9K bytes
    - Viewed (0)
  10. pkg/istio-agent/health/health_probers.go

    const (
    	Healthy   ProbeResult = "HEALTHY"
    	Unhealthy ProbeResult = "UNHEALTHY"
    	Unknown   ProbeResult = "UNKNOWN"
    )
    
    func (p *ProbeResult) IsHealthy() bool {
    	return *p == Healthy
    }
    
    type HTTPProber struct {
    	Config    *v1alpha3.HTTPHealthCheckConfig
    	Transport *http.Transport
    }
    
    var _ Prober = &HTTPProber{}
    
    func NewHTTPProber(cfg *v1alpha3.HTTPHealthCheckConfig, ipv6 bool) *HTTPProber {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 5.7K bytes
    - Viewed (0)
Back to top