Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 257 for authorizer (0.49 sec)

  1. CHANGELOG/CHANGELOG-1.8.md

    ## Changelog since v1.8.0-beta.1
    
    ### Action Required
    
    * New GCE or GKE clusters created with `cluster/kube-up.sh` will not enable the legacy ABAC authorizer by default. If you would like to enable the legacy ABAC authorizer, export ENABLE_LEGACY_ABAC=true before running `cluster/kube-up.sh`. ([#51367](https://github.com/kubernetes/kubernetes/pull/51367), [@cjcullen](https://github.com/cjcullen))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  2. 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)
  3. tests/integration/security/egress_sidecar_tls_origination_test.go

    				from             echo.Instances
    				authorizeSidecar bool
    				drSelector       string
    				expectedResponse ingressutil.ExpectedResponse
    			}{
    				// Mutual TLS origination from an authorized sidecar to https endpoint
    				{
    					name:             "authorized sidecar",
    					credentialToUse:  credNameGeneric,
    					from:             apps.Ns1.A,
    					drSelector:       "a",
    					authorizeSidecar: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. pilot/pkg/credentials/kube/secrets.go

    	}
    	log.Debugf("cached authorization for user %s: %v", user, response)
    	s.authorizationCache[key] = authorizationResponse{
    		expiration: time.Now().Add(expDelta),
    		authorized: response,
    	}
    }
    
    func (s *CredentialsController) Authorize(serviceAccount, namespace string) error {
    	user := sa.MakeUsername(namespace, serviceAccount)
    	if cached, f := s.cachedAuthorization(user); f {
    		return cached
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. pilot/pkg/xds/sds.go

    	var authzResult *bool
    	var authzError error
    	// isAuthorized is a small wrapper around credscontroller.Authorize so we only call it once instead of each time in the loop
    	isAuthorized := func() bool {
    		if authzResult != nil {
    			return *authzResult
    		}
    		res := false
    		if err := secrets.Authorize(proxy.VerifiedIdentity.ServiceAccount, proxy.VerifiedIdentity.Namespace); err == nil {
    			res = true
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/zz_generated.defaults.go

    	return nil
    }
    
    func SetObjectDefaults_AuthorizationConfiguration(in *AuthorizationConfiguration) {
    	for i := range in.Authorizers {
    		a := &in.Authorizers[i]
    		if a.Webhook != nil {
    			SetDefaults_WebhookConfiguration(a.Webhook)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 07:00:31 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/zz_generated.defaults.go

    	return nil
    }
    
    func SetObjectDefaults_AuthorizationConfiguration(in *AuthorizationConfiguration) {
    	for i := range in.Authorizers {
    		a := &in.Authorizers[i]
    		if a.Webhook != nil {
    			SetDefaults_WebhookConfiguration(a.Webhook)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 18 06:03:17 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.27.md

    - Added authorization check support to the CEL expressions of ValidatingAdmissionPolicy via a `authorizer`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultUnauthorizedDirectoryWalkerTest.groovy

        def rootDir
    
        def setup() {
            rootDir = tmpDir.createDir('root')
            rootDir.createFile('unauthorized/file')
            rootDir.createDir('authorized')
            rootDir.file('unauthorized').mode = 0000
        }
    
        def cleanup() {
            rootDir.file('unauthorized').mode = 0777
        }
    
        def "excluded files' permissions should be ignored"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/security/oauth2-jwt.md

    After a week, the token will be expired and the user will not be authorized and will have to sign in again to get a new token. And if the user (or a third party) tried to modify the token to change the expiration, you would be able to discover it, because the signatures would not match.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top