Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for prober (0.14 sec)

  1. 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)
  2. 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)
  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. pilot/pkg/bootstrap/server.go

    			return fmt.Errorf("failed creating kube client: %v", err)
    		}
    		s.kubeClient = kubelib.EnableCrdWatcher(s.kubeClient)
    	}
    
    	return nil
    }
    
    // A single container can't have two readiness probes. Make this readiness probe a generic one
    // that can handle all istiod related readiness checks including webhook, gRPC etc.
    // The "http" portion of the readiness check is satisfied by the fact we've started listening on
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  5. cmd/iam-etcd-store.go

    	// a large number of users
    	r, err := ies.client.Get(cctx, basePrefix, etcd.WithPrefix())
    	if err != nil {
    		return err
    	}
    
    	// Parse all users values to create the proper data model
    	for _, userKv := range r.Kvs {
    		if err = ies.getUserKV(ctx, userKv, userType, m, basePrefix); err != nil && err != errNoSuchUser {
    			return err
    		}
    	}
    	return nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. pilot/pkg/features/pilot.go

    		"If true, pilot will not put istio-peer-exchange ALPN into TLS handshake configuration.",
    	).Get()
    
    	ALPNFilter = env.Register("PILOT_ENABLE_ALPN_FILTER", true,
    		"If true, pilot will add Istio ALPN filters, required for proper protocol sniffing.",
    	).Get()
    
    	WorkloadEntryAutoRegistration = env.Register("PILOT_ENABLE_WORKLOAD_ENTRY_AUTOREGISTRATION", true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster.go

    		c.UpstreamConnectionOptions = &cluster.UpstreamConnectionOptions{
    			TcpKeepalive: &core.TcpKeepalive{},
    		}
    	}
    	if keepalive.Probes > 0 {
    		c.UpstreamConnectionOptions.TcpKeepalive.KeepaliveProbes = &wrappers.UInt32Value{Value: keepalive.Probes}
    	}
    
    	if keepalive.Time != nil {
    		c.UpstreamConnectionOptions.TcpKeepalive.KeepaliveTime = &wrappers.UInt32Value{Value: uint32(keepalive.Time.Seconds)}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_test.go

    		},
    		Tcp: &networking.ConnectionPoolSettings_TCPSettings{
    			MaxConnections: 1,
    			ConnectTimeout: durationpb.New(2 * time.Second),
    			TcpKeepalive: &networking.ConnectionPoolSettings_TCPSettings_TcpKeepalive{
    				Probes:   3,
    				Time:     durationpb.New(4 * time.Second),
    				Interval: durationpb.New(5 * time.Second),
    			},
    			MaxConnectionDuration: durationpb.New(6 * time.Second),
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  9. 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)
  10. 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