Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for impersonate (0.21 sec)

  1. pkg/apis/authentication/types.go

    )
    
    const (
    	// ImpersonateUserHeader is used to impersonate a particular user during an API server request
    	ImpersonateUserHeader = "Impersonate-User"
    
    	// ImpersonateUIDHeader is used to impersonate a particular UID during an API server request.
    	ImpersonateUIDHeader = "Impersonate-Uid"
    
    	// ImpersonateGroupHeader is used to impersonate a particular group during an API server request.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:33:37 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/authentication/v1/types.go

    const (
    	// ImpersonateUserHeader is used to impersonate a particular user during an API server request
    	ImpersonateUserHeader = "Impersonate-User"
    
    	// ImpersonateGroupHeader is used to impersonate a particular group during an API server request.
    	// It can be repeated multiplied times for multiple groups.
    	ImpersonateGroupHeader = "Impersonate-Group"
    
    	// ImpersonateUIDHeader is used to impersonate a particular UID during an API server request
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/config_flags.go

    	}
    	if f.Impersonate != nil {
    		flags.StringVar(f.Impersonate, flagImpersonate, *f.Impersonate, "Username to impersonate for the operation. User could be a regular user or a service account in a namespace.")
    	}
    	if f.ImpersonateUID != nil {
    		flags.StringVar(f.ImpersonateUID, flagImpersonateUID, *f.ImpersonateUID, "UID to impersonate for the operation.")
    	}
    	if f.ImpersonateGroup != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 11 15:04:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  4. security/pkg/server/ca/node_auth.go

    		Name:      caller.PodServiceAccount,
    	}
    	// First, make sure the caller is allowed to impersonate, in general
    	if _, f := na.trustedNodeAccounts[callerSa]; !f {
    		return fmt.Errorf("caller (%v) is not allowed to impersonate", caller)
    	}
    	// Next, make sure the identity they want to impersonate is valid, in general
    	requestedIdentity, err := spiffe.ParseIdentity(requestedIdentityString)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. releasenotes/notes/49011.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    issue:
      - 47489
    releaseNotes:
      - |-
        **Added** support for istio CA to handle node authorization for CSRs with impersonate identity from remote clusters.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 15:46:44 UTC 2024
    - 328 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/filters/impersonation.go

    		groupsSpecified := len(req.Header[authenticationv1.ImpersonateGroupHeader]) > 0
    
    		// make sure we're allowed to impersonate each thing we're requesting.  While we're iterating through, start building username
    		// and group information
    		username := ""
    		groups := []string{}
    		userExtra := map[string][]string{}
    		uid := ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 10:10:35 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/webhook/authentication.go

    		if err != nil {
    			return nil, err
    		}
    		config.BearerToken = string(tokenBytes)
    		config.BearerTokenFile = configAuthInfo.TokenFile
    	}
    	if len(configAuthInfo.Impersonate) > 0 {
    		config.Impersonate = rest.ImpersonationConfig{
    			UserName: configAuthInfo.Impersonate,
    			UID:      configAuthInfo.ImpersonateUID,
    			Groups:   configAuthInfo.ImpersonateGroups,
    			Extra:    configAuthInfo.ImpersonateUserExtra,
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/dist_list_missing.txt

    # 'go tool dist list' should inject its output.
    
    
    # Set GOROOT to a directory that definitely does not include
    # a compiled 'dist' tool. 'go tool dist list' should still
    # work, because 'cmd/go' itself can impersonate this command.
    
    mkdir $WORK/goroot/bin
    mkdir $WORK/goroot/pkg/tool/${GOOS}_${GOARCH}
    env GOROOT=$WORK/goroot
    
    ! go tool -n dist
    stderr 'go: no such tool "dist"'
    
    go tool dist list
    stdout linux/amd64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:52:13 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. samples/unixdomainsockets/src/main/java/okhttp3/unixdomainsockets/UnixDomainSocketFactory.java

    import java.io.File;
    import java.io.IOException;
    import java.net.InetAddress;
    import java.net.InetSocketAddress;
    import java.net.Socket;
    import javax.net.SocketFactory;
    import jnr.unixsocket.UnixSocketChannel;
    
    /** Impersonate TCP-style SocketFactory over UNIX domain sockets. */
    public final class UnixDomainSocketFactory extends SocketFactory {
      private final File path;
    
      public UnixDomainSocketFactory(File path) {
        this.path = path;
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 03 21:33:52 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/HttpBuildCache.java

         * <p>
         * Allowing communication with untrusted servers keeps data encrypted during transmission,
         * but makes it easier for a man-in-the-middle to impersonate the intended server and capture data.
         * <p>
         * This value has no effect if a server is specified using the HTTP protocol (i.e. has SSL disabled).
         *
         * @since 4.2
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top