Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for authProviders (0.76 sec)

  1. pilot/pkg/features/pilot.go

    			"PILOT_INSECURE_MULTICLUSTER_KUBECONFIG_OPTIONS",
    			"",
    			"Comma separated list of potentially insecure kubeconfig authentication options that are allowed for multicluster authentication."+
    				"Support values: all authProviders (`gcp`, `azure`, `exec`, `openstack`), "+
    				"`clientKey`, `clientCertificate`, `tokenFile`, and `exec`.").Get()
    		return sets.New(strings.Split(v, ",")...)
    	}()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/kubeconfig/kubeconfig.go

    		return true
    	}
    
    	// exec authentication
    	if authInfo.Exec != nil && len(authInfo.Exec.Command) != 0 {
    		return true
    	}
    
    	// authprovider authentication
    	if authInfo.AuthProvider != nil && len(authInfo.AuthProvider.Name) != 0 {
    		return true
    	}
    
    	return false
    }
    
    // EnsureAuthenticationInfoAreEmbedded check if some authentication info are provided as external key/certificate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 10:21:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. pkg/kube/util.go

    			ImpersonateGroups:     auths.ImpersonateGroups,
    			ImpersonateUserExtra:  auths.ImpersonateUserExtra,
    			Username:              auths.Username,
    			Password:              auths.Password,
    			AuthProvider:          auths.AuthProvider, // Included because it is sanitized above
    			Exec:                  auths.Exec,
    			// Extensions: Not needed,
    		}
    
    		// Other relevant fields that are not acted on:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/join.go

    		provide a file - a subset of the standard kubeconfig file. The
    		discovery/kubeconfig file supports token, client-go authentication
    		plugins ("exec"), "tokenFile", and "authProvider". This file can be a
    		local file or downloaded via an HTTPS URL. The forms are
    		kubeadm join --discovery-token abcdef.1234567890abcdef 1.2.3.4:6443,
    		kubeadm join --discovery-file path/to/file.conf, or kubeadm join
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.25.md

    - Kubeadm: Added support for additional authentication strategies in `kubeadm join` with discovery/kubeconfig file: client-go authentication plugins (`exec`), `tokenFile`, and `authProvider.` ([#110553](https://github.com/kubernetes/kubernetes/pull/110553), [@tallaxes](https://github.com/tallaxes))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
Back to top