Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 415 for prober (0.35 sec)

  1. pkg/controller/volume/attachdetach/attach_detach_controller.go

    	csiNodeInformer storageinformersv1.CSINodeInformer,
    	csiDriverInformer storageinformersv1.CSIDriverInformer,
    	volumeAttachmentInformer storageinformersv1.VolumeAttachmentInformer,
    	plugins []volume.VolumePlugin,
    	prober volume.DynamicPluginProber,
    	disableReconciliationSync bool,
    	reconcilerSyncDuration time.Duration,
    	disableForceDetachOnTimeout bool,
    	timerConfig TimerConfig) (AttachDetachController, error) {
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/framework_test.go

    			recycleCalls:   expectedRecycleCalls,
    			deleteCalls:    expectedDeleteCalls,
    			provisionCalls: expectedProvisionCalls,
    		}
    		ctrl.volumePluginMgr.InitPlugins([]volume.VolumePlugin{plugin}, nil /* prober */, ctrl)
    		return toWrap(ctrl, reactor, test)
    	}
    }
    
    // wrapTestWithReclaimCalls returns a testCall that:
    //   - configures controller with recycler or deleter which will return provided
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 09:54:00 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. docs/en/docs/img/sponsors/porter.png

    porter.png...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Aug 09 17:04:49 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  7. helm-releases/minio-5.0.0.tgz

    indent 4 }} {{- end }} spec: jobName: {{ template "minio.fullname" . }} {{- if .Values.tls.enabled }} tlsConfig: ca: secret: name: {{ .Values.tls.certSecret }} key: {{ .Values.tls.publicCrt }} serverName: {{ template "minio.fullname" . }} {{- end }} prober: url: {{ template "minio.fullname" . }}.{{ .Release.Namespace }}:{{ .Values.service.port }} path: /minio/v2/metrics/cluster {{- if .Values.tls.enabled }} scheme: https {{ else }} scheme: http {{- end }} {{- if .Values.metrics.serviceMonitor.relabelConfigsCluste...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Oct 25 10:20:22 UTC 2022
    - 19.8K bytes
    - Viewed (0)
  8. helm-releases/minio-5.0.6.tgz

    indent 4 }} {{- end }} spec: jobName: {{ template "minio.fullname" . }} {{- if .Values.tls.enabled }} tlsConfig: ca: secret: name: {{ .Values.tls.certSecret }} key: {{ .Values.tls.publicCrt }} serverName: {{ template "minio.fullname" . }} {{- end }} prober: url: {{ template "minio.fullname" . }}.{{ .Release.Namespace }}:{{ .Values.service.port }} path: /minio/v2/metrics/cluster {{- if .Values.tls.enabled }} scheme: https {{ else }} scheme: http {{- end }} {{- if .Values.metrics.serviceMonitor.relabelConfigsCluste...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 13 06:53:06 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    	var kmsHealthChecks []healthz.HealthChecker
    	transformers, probes, kmsUsed, err := getTransformerOverridesAndKMSPluginProbes(ctx, config, apiServerID)
    	if err != nil {
    		return nil, nil, nil, err
    	}
    	for i := range probes {
    		probe := probes[i]
    		kmsHealthChecks = append(kmsHealthChecks, probe.toHealthzCheck(i))
    	}
    
    	return transformers, kmsHealthChecks, kmsUsed, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  10. helm-releases/minio-5.0.9.tgz

    nindent 4 }} {{- end }} spec: jobName: {{ template "minio.fullname" . }} {{- if .Values.tls.enabled }} tlsConfig: ca: secret: name: {{ .Values.tls.certSecret }} key: {{ .Values.tls.publicCrt }} serverName: {{ template "minio.fullname" . }} {{- end }} prober: url: {{ template "minio.fullname" . }}.{{ .Release.Namespace }}:{{ .Values.service.port }} path: /minio/v2/metrics/cluster {{- if .Values.tls.enabled }} scheme: https {{- else }} scheme: http {{- end }} {{- if .Values.metrics.serviceMonitor.relabelConfigsCluste...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 03 06:23:26 UTC 2023
    - 20.2K bytes
    - Viewed (0)
Back to top