Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for socketPath (0.17 sec)

  1. pkg/kubelet/pluginmanager/reconciler/reconciler_test.go

    	}
    	if aswPlugins[0].SocketPath != socketPath {
    		t.Fatalf("Test_Run_Positive_RegisterThenUnregister: expected\n%s\nin actual state of world, but got\n%v\n", socketPath, aswPlugins[0])
    	}
    
    	dsw.RemovePlugin(socketPath)
    	os.Remove(socketPath)
    	waitForUnregistration(t, socketPath, asw)
    
    	// Get asw plugins; it should no longer contain the added plugin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. pkg/istio-agent/agent.go

    // Otherwise, returns (true, nil)
    func checkSocket(ctx context.Context, socketPath string) (bool, error) {
    	socketExists := socketFileExists(socketPath)
    	if !socketExists {
    		return false, nil
    	}
    
    	err := socketHealthCheck(ctx, socketPath)
    	if err != nil {
    		log.Debugf("SDS socket detected but not healthy: %v", err)
    		err = os.Remove(socketPath)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/util/util_test.go

    const (
    	testHostName      = "test-hostname"
    	socketPath        = "/var/run/kmsplugin"
    	migratedVolume    = "migrated-volume-name"
    	nonMigratedVolume = "non-migrated-volume-name"
    	testNodeName      = "test-node-name"
    )
    
    var (
    	dirOrCreate = v1.HostPathType(v1.HostPathDirectoryOrCreate)
    	nodeName    = kubetypes.NodeName(testNodeName)
    	hostPath    = &v1.HostPathVolumeSource{
    		Path: socketPath,
    		Type: &dirOrCreate,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 12 05:42:38 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/devicemanager/manager.go

    	socketPath := pluginapi.KubeletSocket
    	if runtime.GOOS == "windows" {
    		socketPath = os.Getenv("SYSTEMDRIVE") + pluginapi.KubeletSocketWindows
    	}
    	return newManagerImpl(socketPath, topology, topologyAffinityStore)
    }
    
    func newManagerImpl(socketPath string, topology []cadvisorapi.Node, topologyAffinityStore topologymanager.Store) (*ManagerImpl, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  5. samples/security/spire/spire-quickstart.yaml

      namespace: spire
    data:
      agent.conf: |
        agent {
          data_dir = "/run/spire"
          log_level = "DEBUG"
          server_address = "spire-server"
          server_port = "8081"
          socket_path = "/run/secrets/workload-spiffe-uds/socket"
          trust_bundle_path = "/run/spire/bundle/bundle.crt"
          trust_domain = "example.org"
        }
    
        plugins {
          NodeAttestor "k8s_psat" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
Back to top