Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for probe1 (0.11 sec)

  1. pkg/kubelet/kubelet.go

    	// run to introspect the state of each pod.  The probe manager acts on the actual state of the node
    	// and is notified of pods by the podWorker. The probe manager is the authoritative source of the
    	// most recent probe status and is responsible for notifying the status manager, which
    	// synthesizes them into the overall pod status.
    	probeManager prober.Manager
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. pilot/pkg/xds/delta.go

    			return
    		}
    		// This should be only set for the first request. The node id may not be set - for example malicious clients.
    		if firstRequest {
    			// probe happens before envoy sends first xDS request
    			if req.TypeUrl == v3.HealthInfoType {
    				log.Warnf("ADS: %q %s send health check probe before normal xDS request", con.Peer(), con.ID())
    				continue
    			}
    			firstRequest = false
    			if req.Node == nil || req.Node.Id == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			RestartPolicy: &containerRestartPolicyAlways,
    			LivenessProbe: &v1.Probe{},
    			StartupProbe:  &v1.Probe{},
    		},
    		{
    			Name:          "restartable-init-3",
    			Image:         "bar-image",
    			RestartPolicy: &containerRestartPolicyAlways,
    			LivenessProbe: &v1.Probe{},
    			StartupProbe:  &v1.Probe{},
    		},
    	}
    	// Replace the original statuses of the containers with those for the init
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_test.go

    	"k8s.io/kubernetes/pkg/kubelet/pluginmanager"
    	kubepod "k8s.io/kubernetes/pkg/kubelet/pod"
    	podtest "k8s.io/kubernetes/pkg/kubelet/pod/testing"
    	proberesults "k8s.io/kubernetes/pkg/kubelet/prober/results"
    	probetest "k8s.io/kubernetes/pkg/kubelet/prober/testing"
    	"k8s.io/kubernetes/pkg/kubelet/secret"
    	"k8s.io/kubernetes/pkg/kubelet/server"
    	serverstats "k8s.io/kubernetes/pkg/kubelet/server/stats"
    	"k8s.io/kubernetes/pkg/kubelet/stats"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  5. pilot/pkg/model/endpointshards.go

    		// Should delete the service EndpointShards when endpoints become zero to prevent memory leak,
    		// but we should not delete the keys from EndpointIndex map - that will trigger
    		// unnecessary full push which can become a real problem if a pod is in crashloop and thus endpoints
    		// flip flopping between 1 and 0.
    		e.DeleteServiceShard(shard, hostname, namespace, true)
    		log.Infof("Incremental push, service %s at shard %v has no endpoints", hostname, shard)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    	if err != nil {
    		klog.ErrorS(err, "Error listing containers")
    		return err
    	}
    
    	// Stop probing pods that are not running
    	klog.V(3).InfoS("Clean up probes for terminated pods")
    	kl.probeManager.CleanupPods(possiblyRunningPods)
    
    	// Remove orphaned pod statuses not in the total list of known config pods
    	klog.V(3).InfoS("Clean up orphaned pod statuses")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. docs/en/docs/release-notes.md

    ## 0.101.0
    
    ### Features
    
    * ✨ Enable Pydantic's serialization mode for responses, add support for Pydantic's `computed_field`, better OpenAPI for response models, proper required attributes, better generated clients. PR [#10011](https://github.com/tiangolo/fastapi/pull/10011) by [@tiangolo](https://github.com/tiangolo).
    
    ### Refactors
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top