Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SecretTypeBootstrapToken (0.94 sec)

  1. pkg/controller/bootstrap/tokencleaner.go

    		cache.FilteringResourceEventHandler{
    			FilterFunc: func(obj interface{}) bool {
    				switch t := obj.(type) {
    				case *v1.Secret:
    					return t.Type == bootstrapapi.SecretTypeBootstrapToken && t.Namespace == e.tokenSecretNamespace
    				default:
    					utilruntime.HandleError(fmt.Errorf("object passed to %T that is not expected: %T", e, obj))
    					return false
    				}
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. pkg/controller/bootstrap/bootstrapsigner.go

    		cache.FilteringResourceEventHandler{
    			FilterFunc: func(obj interface{}) bool {
    				switch t := obj.(type) {
    				case *v1.Secret:
    					return t.Type == bootstrapapi.SecretTypeBootstrapToken && t.Namespace == e.secretNamespace
    				default:
    					utilruntime.HandleError(fmt.Errorf("object passed to %T that is not expected: %T", e, obj))
    					return false
    				}
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/token.go

    	// First, build our selector for bootstrap tokens only
    	klog.V(1).Infoln("[token] preparing selector for bootstrap token")
    	tokenSelector := fields.SelectorFromSet(
    		map[string]string{
    			"type": string(bootstrapapi.SecretTypeBootstrapToken),
    		},
    	)
    	listOptions := metav1.ListOptions{
    		FieldSelector: tokenSelector.String(),
    	}
    
    	klog.V(1).Info("[token] retrieving list of bootstrap tokens")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// TLSPrivateKeyKey is the key for the private key field in a TLS secret.
    	TLSPrivateKeyKey = "tls.key"
    	// SecretTypeBootstrapToken is used during the automated bootstrap process (first
    	// implemented by kubeadm). It stores tokens that are used to sign well known
    	// ConfigMaps. They are used for authn.
    	SecretTypeBootstrapToken SecretType = "bootstrap.kubernetes.io/token"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// TLSPrivateKeyKey is the key for the private key field in a TLS secret.
    	TLSPrivateKeyKey = "tls.key"
    	// SecretTypeBootstrapToken is used during the automated bootstrap process (first
    	// implemented by kubeadm). It stores tokens that are used to sign well known
    	// ConfigMaps. They are used for authn.
    	SecretTypeBootstrapToken SecretType = "bootstrap.kubernetes.io/token"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top