Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 160 for authorizer (0.3 sec)

  1. cmd/kubeadm/app/cmd/phases/init/kubeletfinalize.go

    	if !ok {
    		return errors.Errorf("the file %q does not contain authentication for user %q", kubeconfigPath, cfg.NodeRegistration.Name)
    	}
    
    	// Update the client certificate and key of the node authorizer to point to the PEM symbolic link.
    	info.ClientKeyData = []byte{}
    	info.ClientCertificateData = []byte{}
    	info.ClientKey = pemPath
    	info.ClientCertificate = pemPath
    
    	// Writes the kubeconfig back to disk.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:54:51 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. security/pkg/server/ca/node_auth.go

    	clusterID := kubeauth.ExtractClusterID(ctx)
    	na := m.component.ForCluster(clusterID)
    	if na == nil {
    		return fmt.Errorf("no node authorizer for cluster %v", clusterID)
    	}
    	return (*na).authenticateImpersonation(caller, requestedIdentityString)
    }
    
    // ClusterNodeAuthorizer is a component that implements a subset of Kubernetes Node Authorization
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy_test.go

    	api "k8s.io/kubernetes/pkg/apis/core"
    	_ "k8s.io/kubernetes/pkg/apis/core/install"
    	_ "k8s.io/kubernetes/pkg/apis/rbac/install"
    	rbacv1helpers "k8s.io/kubernetes/pkg/apis/rbac/v1"
    	"k8s.io/kubernetes/plugin/pkg/auth/authorizer/rbac/bootstrappolicy"
    )
    
    // semanticRoles is a few enumerated roles for which the relationships are well established
    // and we want to maintain symmetric roles
    type semanticRoles struct {
    	admin *rbacv1.ClusterRole
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:45:31 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  4. pkg/kubeapiserver/authorizer/modes/modes.go

    const (
    	// ModeAlwaysAllow is the mode to set all requests as authorized
    	ModeAlwaysAllow string = "AlwaysAllow"
    	// ModeAlwaysDeny is the mode to set no requests as authorized
    	ModeAlwaysDeny string = "AlwaysDeny"
    	// ModeABAC is the mode to use Attribute Based Access Control to authorize
    	ModeABAC string = "ABAC"
    	// ModeWebhook is the mode to make an external webhook call to authorize
    	ModeWebhook string = "Webhook"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 05 01:22:41 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/apiserver/load/load_test.go

    "kind":"AuthorizationConfiguration",
    "authorizers":[{"type":"Webhook"}]}`),
    			expectConfig: &api.AuthorizationConfiguration{
    				Authorizers: []api.AuthorizerConfiguration{{Type: "Webhook"}},
    			},
    		},
    		{
    			name: "v1alpha1 - defaults",
    			data: []byte(`{
    "apiVersion":"apiserver.config.k8s.io/v1alpha1",
    "kind":"AuthorizationConfiguration",
    "authorizers":[{"type":"Webhook","name":"default","webhook":{}}]}`),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 07:00:31 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. samples/slack/src/main/java/okhttp3/slack/SlackClient.java

        this.slackApi = slackApi;
      }
    
      /** Shows a browser URL to authorize this app to act as this user. */
      public void requestOauthSession(String scopes, String team) throws Exception {
        if (sessionFactory == null) {
          sessionFactory = new OAuthSessionFactory(slackApi);
          sessionFactory.start();
        }
    
        HttpUrl authorizeUrl = sessionFactory.newAuthorizeUrl(scopes, team, session -> {
          initOauthSession(session);
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 12 03:31:36 UTC 2019
    - 3.4K bytes
    - Viewed (0)
  7. docs/metrics/prometheus/README.md

    ## List of metrics exposed by MinIO
    
    - MinIO exports Prometheus compatible data by default as an authorized endpoint at `/minio/v2/metrics/cluster`. 
    - MinIO exports Prometheus compatible data by default which is bucket centric as an authorized endpoint at `/minio/v2/metrics/bucket`.
    - MinIO exports Prometheus compatible data by default which is node centric as an authorized endpoint at `/minio/v2/metrics/node`.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 12 15:49:30 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. samples/slack/src/main/java/okhttp3/slack/SlackApi.java

        this.clientSecret = clientSecret;
        this.port = port;
      }
    
      /** See https://api.slack.com/docs/oauth. */
      public HttpUrl authorizeUrl(String scopes, HttpUrl redirectUrl, ByteString state, String team) {
        HttpUrl.Builder builder = baseUrl.newBuilder("/oauth/authorize")
            .addQueryParameter("client_id", clientId)
            .addQueryParameter("scope", scopes)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Jul 06 19:30:55 UTC 2018
    - 4.4K bytes
    - Viewed (0)
  9. pkg/registry/authorization/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - sig-auth-authorizers-approvers
    reviewers:
      - sig-auth-authorizers-reviewers
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 10 02:31:26 UTC 2021
    - 164 bytes
    - Viewed (0)
  10. pkg/registry/rbac/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - sig-auth-authorizers-approvers
    reviewers:
      - sig-auth-authorizers-reviewers
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 10 02:31:26 UTC 2021
    - 164 bytes
    - Viewed (0)
Back to top