Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,516 for probe1 (0.25 sec)

  1. releasenotes/notes/agent-probe-keepalives.yaml

    releaseNotes:
    - |
      **Improved** istio-agent health probe rewrite to not re-use connections, mirring Kubernetes' probing behavior.
    
    upgradeNotes:
    - title: Health Probes will no longer re-use connections
      content: |
        Health probes using the istio-agent [health probe rewrite](https://istio.io/latest/docs/ops/configuration/mesh/app-health-check/) will
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 07 20:06:21 UTC 2021
    - 963 bytes
    - Viewed (0)
  2. pkg/kubelet/prober/scale_test.go

    // causing conntrack entries and ephemeral ports to be hold for 60 seconds
    // despite the probe may have finished in less than 1 second.
    // If the rate of probes is higher than the rate the OS recycles the ports used,
    // it can consume a considerable number of ephemeral ports or conntrack entries.
    // These tests verify that after certain period the probes keep working, if the probes
    // don't close the sockets faster, they will start to fail.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 16:33:01 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. pkg/kubelet/prober/worker_test.go

    	}
    
    	// Exceeding FailureThreshold should cause resultRun to
    	// reset to 0 so that the probe on the restarted pod
    	// also gets FailureThreshold attempts to succeed.
    	m.prober.exec = fakeExecProber{probe.Failure, nil}
    	msg = "3rd probe failure, result failure"
    	expectContinue(t, w, w.doProbe(ctx), msg)
    	expectResult(t, w, results.Failure, msg)
    	if w.resultRun != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 23:48:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  4. pilot/cmd/pilot-agent/status/server.go

    	}
    	if prober.HTTPGet != nil && prober.HTTPGet.Port.Type != apimirror.Int {
    		return fmt.Errorf("invalid prober config for %v, the port must be int type", path)
    	}
    	if prober.TCPSocket != nil && prober.TCPSocket.Port.Type != apimirror.Int {
    		return fmt.Errorf("invalid prober config for %v, the port must be int type", path)
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
  5. pkg/kubelet/prober/worker.go

    			return true
    		}
    	} else {
    		// Disable other probes until container has started.
    		if w.probeType != startup {
    			return true
    		}
    	}
    
    	// Note, exec probe does NOT have access to pod environment variables or downward API
    	result, err := w.probeManager.prober.probe(ctx, w.probeType, w.pod, status, w.container, w.containerID)
    	if err != nil {
    		// Prober error, throw away the result.
    		return true
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 27 01:28:06 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/core/v1/probe.go

    	TerminationGracePeriodSeconds  *int64 `json:"terminationGracePeriodSeconds,omitempty"`
    }
    
    // ProbeApplyConfiguration constructs an declarative configuration of the Probe type for use with
    // apply.
    func Probe() *ProbeApplyConfiguration {
    	return &ProbeApplyConfiguration{}
    }
    
    // WithExec sets the Exec field in the declarative configuration to the given value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 17:31:23 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  7. pkg/kubelet/prober/prober_manager.go

    	// readinessManager manages the results of readiness probes
    	readinessManager results.Manager
    
    	// livenessManager manages the results of liveness probes
    	livenessManager results.Manager
    
    	// startupManager manages the results of startup probes
    	startupManager results.Manager
    
    	// prober executes the probe actions.
    	prober *prober
    
    	start time.Time
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 11K bytes
    - Viewed (0)
  8. pkg/probe/probe.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package probe
    
    // Result is a string used to handle the results for probing container readiness/liveness
    type Result string
    
    const (
    	// Success Result
    	Success Result = "success"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:20:50 UTC 2019
    - 966 bytes
    - Viewed (0)
  9. pkg/probe/http/http_test.go

    		redirect             string
    		expectLocalResult    probe.Result
    		expectNonLocalResult probe.Result
    	}{
    		"local success":   {"/success", probe.Success, probe.Success},
    		"local fail":      {"/fail", probe.Failure, probe.Failure},
    		"newport success": {newportServer.URL + "/success", probe.Success, probe.Success},
    		"newport fail":    {newportServer.URL + "/fail", probe.Failure, probe.Failure},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 18 01:40:08 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  10. releasenotes/notes/http2-probes.yaml

    issues:
    - 40173
    releaseNotes:
    - |
      **Added** support for ALPN negotiation to Istio [health checks](https://istio.io/latest/docs/ops/configuration/mesh/app-health-check/), mirroring
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 08 19:15:41 UTC 2022
    - 440 bytes
    - Viewed (0)
Back to top