Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 218 for prober (0.11 sec)

  1. pkg/kube/inject/webhook.go

    	if rewrite {
    		if prober := DumpAppProbers(pod, req.meshConfig.GetDefaultConfig().GetStatusPort()); prober != "" {
    			// If sidecar.istio.io/status is not present then append instead of merge.
    			_, previouslyInjected := pod.Annotations[annotation.SidecarStatus.Name]
    			sidecar.Env = mergeOrAppendProbers(previouslyInjected, sidecar.Env, prober)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/pv_controller_base.go

    		resyncPeriod:                  p.SyncPeriod,
    		operationTimestamps:           metrics.NewOperationStartTimeCache(),
    	}
    
    	// Prober is nil because PV is not aware of Flexvolume.
    	if err := controller.volumePluginMgr.InitPlugins(p.VolumePlugins, nil /* prober */, controller); err != nil {
    		return nil, fmt.Errorf("could not initialize volume plugins for PersistentVolume Controller: %w", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. pkg/istio-agent/agent.go

    	MetadataClientCertChain = "ISTIO_META_TLS_CLIENT_CERT_CHAIN"
    	// MetadataClientRootCert is ISTIO_META env var used for client root cert.
    	MetadataClientRootCert = "ISTIO_META_TLS_CLIENT_ROOT_CERT"
    )
    
    var _ ready.Prober = &Agent{}
    
    type LifecycleEvent string
    
    const (
    	DrainLifecycleEvent LifecycleEvent = "drain"
    	ExitLifecycleEvent  LifecycleEvent = "exit"
    )
    
    type SDSService interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  6. pkg/volume/emptydir/empty_dir_test.go

    )
    
    // Construct an instance of a plugin, by name.
    func makePluginUnderTest(t *testing.T, plugName, basePath string) volume.VolumePlugin {
    	plugMgr := volume.VolumePluginMgr{}
    	plugMgr.InitPlugins(ProbeVolumePlugins(), nil /* prober */, volumetest.NewFakeVolumeHost(t, basePath, nil, nil))
    
    	plug, err := plugMgr.FindPluginByName(plugName)
    	if err != nil {
    		t.Fatal("Can't find the plugin by name")
    	}
    	return plug
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  7. pkg/istio-agent/xds_proxy.go

    func initXdsProxy(ia *Agent) (*XdsProxy, error) {
    	var err error
    	localHostAddr := localHostIPv4
    	if ia.cfg.IsIPv6 {
    		localHostAddr = localHostIPv6
    	}
    	var envoyProbe ready.Prober
    	if !ia.cfg.DisableEnvoy {
    		envoyProbe = &ready.Probe{
    			AdminPort:     uint16(ia.proxyConfig.ProxyAdminPort),
    			LocalHostAddr: localHostAddr,
    		}
    	}
    
    	cache := wasm.NewLocalFileCache(constants.IstioDataDir, ia.cfg.WASMOptions)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_container.go

    func isProbeTerminationGracePeriodSecondsSet(pod *v1.Pod, containerSpec *v1.Container, probe *v1.Probe, containerName string, containerID kubecontainer.ContainerID, probeType string) bool {
    	if probe != nil && probe.TerminationGracePeriodSeconds != nil {
    		if *probe.TerminationGracePeriodSeconds > *pod.Spec.TerminationGracePeriodSeconds {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			// If the container failed the liveness probe, we should kill it.
    			message = fmt.Sprintf("Container %s failed liveness probe", container.Name)
    			reason = reasonLivenessProbe
    		} else if startup, found := m.startupManager.Get(containerStatus.ID); found && startup == proberesults.Failure {
    			// If the container failed the startup probe, we should kill it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  10. pkg/kube/apimirror/probe.go

    	URISchemeHTTP URIScheme = "HTTP"
    	// URISchemeHTTPS means that the scheme used will be https://
    	URISchemeHTTPS URIScheme = "HTTPS"
    )
    
    // HTTPHeader describes a custom header to be used in HTTP probes
    type HTTPHeader struct {
    	// The header field name
    	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
    	// The header field value
    	Value string `json:"value" protobuf:"bytes,2,opt,name=value"`
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top