Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,109 for authenticating (2.67 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/group/token_group_adder.go

    import (
    	"context"
    
    	"k8s.io/apiserver/pkg/authentication/authenticator"
    	"k8s.io/apiserver/pkg/authentication/user"
    )
    
    // TokenGroupAdder adds groups to an authenticated user.Info
    type TokenGroupAdder struct {
    	// Authenticator is delegated to make the authentication decision
    	Authenticator authenticator.Token
    	// Groups are additional groups to add to the user.Info from a successful authentication
    	Groups []string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 11 20:04:50 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cached_token_authenticator_test.go

    			r.ok = true
    			r.err = nil
    
    			// add some realistic annotations on ~20% of successful authentications
    			if f := rr.Float64(); f < 0.2 {
    				r.annotations = map[string]string{
    					"audience.authentication.kubernetes.io":  "e8357258-88b1-11ea-bc55-0242ac130003",
    					"namespace.authentication.kubernetes.io": "kube-system",
    					"float.authentication.kubernetes.io":     fmt.Sprint(f),
    				}
    			}
    		case choice < 0.99:
    			r.ok = false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  3. docs/sts/tls.md

    ## Introduction
    
    MinIO provides a custom STS API that allows authentication with client X.509 / TLS certificates.
    
    A major advantage of certificate-based authentication compared to other STS authentication methods, like OpenID Connect or LDAP/AD, is that client authentication works without any additional/external component that must be constantly available. Therefore, certificate-based authentication may provide better availability / lower operational complexity.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6K bytes
    - Viewed (0)
  4. pkg/registry/authentication/rest/storage_authentication.go

    limitations under the License.
    */
    
    package rest
    
    import (
    	authenticationv1 "k8s.io/api/authentication/v1"
    	authenticationv1alpha1 "k8s.io/api/authentication/v1alpha1"
    	authenticationv1beta1 "k8s.io/api/authentication/v1beta1"
    	"k8s.io/apiserver/pkg/authentication/authenticator"
    	"k8s.io/apiserver/pkg/registry/generic"
    	"k8s.io/apiserver/pkg/registry/rest"
    	genericapiserver "k8s.io/apiserver/pkg/server"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 12:50:40 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. pkg/apis/authentication/v1/doc.go

    limitations under the License.
    */
    
    // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/authentication
    // +k8s:conversion-gen-external-types=k8s.io/api/authentication/v1
    // +groupName=authentication.k8s.io
    // +k8s:defaulter-gen=TypeMeta
    // +k8s:defaulter-gen-input=k8s.io/api/authentication/v1
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 14 15:00:18 UTC 2021
    - 896 bytes
    - Viewed (0)
  6. pkg/apis/authentication/v1beta1/doc.go

    limitations under the License.
    */
    
    // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/authentication
    // +k8s:conversion-gen-external-types=k8s.io/api/authentication/v1beta1
    // +groupName=authentication.k8s.io
    // +k8s:defaulter-gen=TypeMeta
    // +k8s:defaulter-gen-input=k8s.io/api/authentication/v1beta1
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 14 15:00:18 UTC 2021
    - 916 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/artifacts/defineRepository/kotlin/build.gradle.kts

        }
    }
    
    // tag::digest-authentication[]
    repositories {
        maven {
            url = uri("https://repo.mycompany.com/maven2")
            credentials {
                username = "user"
                password = "password"
            }
            authentication {
                create<DigestAuthentication>("digest")
            }
        }
    }
    // end::digest-authentication[]
    
    // tag::preemptive-authentication[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/security/index.md

        * A cookie.
    * `http`: standard HTTP authentication systems, including:
        * `bearer`: a header `Authorization` with a value of `Bearer ` plus a token. This is inherited from OAuth2.
        * HTTP Basic authentication.
        * HTTP Digest, etc.
    * `oauth2`: all the OAuth2 ways to handle security (called "flows").
        * Several of these flows are appropriate for building an OAuth 2.0 authentication provider (like Google, Facebook, Twitter, GitHub, etc):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 24 14:47:15 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/authentication/v1alpha1/generated.proto

    syntax = "proto2";
    
    package k8s.io.api.authentication.v1alpha1;
    
    import "k8s.io/api/authentication/v1/generated.proto";
    import "k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto";
    import "k8s.io/apimachinery/pkg/runtime/generated.proto";
    import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/authentication/v1alpha1";
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. releasenotes/notes/34118.yaml

    issue:
      - 33809
    releaseNotes:
      - |
        **Added** Auto mTLS support for workload level peer authentication. You no longer need to configure destination rule when servers are configured with workload level peer authentication policy. This can be disabled by setting ENABLE_AUTO_MTLS_CHECK_POLICIES to "false". 
    docs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 19:02:56 UTC 2021
    - 480 bytes
    - Viewed (0)
Back to top