Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for DeleteServiceAccountTokenFunc (0.41 sec)

  1. pkg/controller/volume/persistentvolume/volume_host.go

    		return nil, fmt.Errorf("GetServiceAccountToken unsupported in PersistentVolumeController")
    	}
    }
    
    func (ctrl *PersistentVolumeController) DeleteServiceAccountTokenFunc() func(types.UID) {
    	return func(types.UID) {
    		//nolint:logcheck
    		klog.ErrorS(nil, "DeleteServiceAccountToken unsupported in PersistentVolumeController")
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. pkg/kubelet/volume_host.go

    	return kvh.tokenManager.GetServiceAccountToken
    }
    
    func (kvh *kubeletVolumeHost) DeleteServiceAccountTokenFunc() func(podUID types.UID) {
    	return kvh.tokenManager.DeleteServiceAccountToken
    }
    
    func (kvh *kubeletVolumeHost) GetTrustAnchorsByName(name string, allowMissing bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. pkg/volume/projected/projected.go

    	plugin.getSecret = host.GetSecretFunc()
    	plugin.getConfigMap = host.GetConfigMapFunc()
    	plugin.getServiceAccountToken = host.GetServiceAccountTokenFunc()
    	plugin.deleteServiceAccountToken = host.DeleteServiceAccountTokenFunc()
    	return nil
    }
    
    func (plugin *projectedPlugin) GetPluginName() string {
    	return projectedPluginName
    }
    
    func (plugin *projectedPlugin) GetVolumeName(spec *volume.Spec) (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. pkg/controller/volume/expand/expand_controller.go

    		return nil, fmt.Errorf("GetServiceAccountToken unsupported in expandController")
    	}
    }
    
    func (expc *expandController) DeleteServiceAccountTokenFunc() func(types.UID) {
    	return func(types.UID) {
    		//nolint:logcheck
    		klog.ErrorS(nil, "DeleteServiceAccountToken unsupported in expandController")
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. pkg/volume/testing/volume_host.go

    		return f.kubeClient.CoreV1().ServiceAccounts(namespace).CreateToken(context.TODO(), name, tr, metav1.CreateOptions{})
    	}
    }
    
    func (f *fakeVolumeHost) DeleteServiceAccountTokenFunc() func(types.UID) {
    	return func(types.UID) {}
    }
    
    func (f *fakeVolumeHost) GetNodeLabels() (map[string]string, error) {
    	if f.nodeLabels == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/attach_detach_controller.go

    		return nil, fmt.Errorf("GetServiceAccountToken unsupported in attachDetachController")
    	}
    }
    
    func (adc *attachDetachController) DeleteServiceAccountTokenFunc() func(types.UID) {
    	return func(types.UID) {
    		// nolint:logcheck
    		klog.ErrorS(nil, "DeleteServiceAccountToken unsupported in attachDetachController")
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  7. pkg/volume/plugins.go

    	GetConfigMapFunc() func(namespace, name string) (*v1.ConfigMap, error)
    
    	GetServiceAccountTokenFunc() func(namespace, name string, tr *authenticationv1.TokenRequest) (*authenticationv1.TokenRequest, error)
    
    	DeleteServiceAccountTokenFunc() func(podUID types.UID)
    
    	// Returns an interface that should be used to execute any utilities in volume plugins
    	GetExec(pluginName string) exec.Interface
    
    	// Returns the labels on the node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
Back to top