Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for authn (0.06 sec)

  1. pilot/pkg/model/push_context_test.go

    					},
    				},
    			},
    		},
    		"authn-med-prio-all": {
    			Meta: config.Meta{Name: "authn-med-prio-all", Namespace: "testns-1", GroupVersionKind: gvk.WasmPlugin},
    			Spec: &extensions.WasmPlugin{
    				Phase:    extensions.PluginPhase_AUTHN,
    				Priority: &wrapperspb.Int32Value{Value: 50},
    			},
    		},
    		"global-authn-high-prio-app": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    		want                          string
    		wantCELMapper                 bool
    		wantUsesEmailVerifiedClaim    bool
    	}{
    		{
    			name:                          "claim and expression are empty, structured authn feature enabled",
    			in:                            []api.ClaimValidationRule{{}},
    			structuredAuthnFeatureEnabled: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_test.go

    		httpFilters := []string{
    			xdsfilters.MxFilterName,
    			// Ext auth makes 2 filters
    			wellknown.HTTPRoleBasedAccessControl,
    			wellknown.HTTPExternalAuthorization,
    			"extenstions.istio.io/wasmplugin/istio-system.wasm-authn",
    			"extenstions.istio.io/wasmplugin/istio-system.wasm-authz",
    			wellknown.HTTPRoleBasedAccessControl,
    			"extenstions.istio.io/wasmplugin/istio-system.wasm-stats",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  4. cmd/iam.go

    		return updatedAt, errServerNotInitialized
    	}
    
    	if !auth.IsAccessKeyValid(accessKey) {
    		return updatedAt, auth.ErrInvalidAccessKeyLength
    	}
    
    	if auth.ContainsReservedChars(accessKey) {
    		return updatedAt, auth.ErrContainsReservedChars
    	}
    
    	if !auth.IsSecretKeyValid(ureq.SecretKey) {
    		return updatedAt, auth.ErrInvalidSecretKeyLength
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	var cacheInterval *watchCacheInterval
    	cacheInterval, err = c.watchCache.getAllEventsSinceLocked(requiredResourceVersion, key, opts)
    	if err != nil {
    		// To match the uncached watch implementation, once we have passed authn/authz/admission,
    		// and successfully parsed a resource version, other errors must fail with a watch event of type ERROR,
    		// rather than a directly returned error.
    		return newErrWatcher(err), nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. tests/integration/ambient/baseline_test.go

    				t.NewSubTest("authz target deny").RunParallel(func(t framework.TestContext) {
    					opts := echo.CallOptions{
    						To:     authzDst,
    						Check:  CheckDeny,
    						Port:   echo.Port{Name: "http"},
    						Scheme: scheme.HTTP,
    						Count:  10,
    					}
    					src.CallOrFail(t, opts)
    				})
    				t.NewSubTest("non-authz target allow").RunParallel(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context.go

    	envoyFiltersByNamespace map[string][]*EnvoyFilterWrapper
    
    	// wasm plugins for each namespace including global config namespace
    	wasmPluginsByNamespace map[string][]*WasmPluginWrapper
    
    	// AuthnPolicies contains Authn policies by namespace.
    	AuthnPolicies *AuthenticationPolicies `json:"-"`
    
    	// AuthzPolicies stores the existing authorization policies in the cluster. Could be nil if there
    	// are no authorization policies in the cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    		pol := c.(*clientsecurityv1beta1.PeerAuthentication)
    		pol.Spec.Mtls = &auth.PeerAuthentication_MutualTLS{
    			Mode: auth.PeerAuthentication_MutualTLS_PERMISSIVE,
    		}
    		pol.Spec.PortLevelMtls = map[uint32]*auth.PeerAuthentication_MutualTLS{
    			9090: {
    				Mode: auth.PeerAuthentication_MutualTLS_STRICT,
    			},
    		}
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  9. tests/integration/security/authz_test.go

    			fromAndTo := to.Instances().Append(from)
    
    			config.New(t).
    				Source(config.File("testdata/authz/mtls.yaml.tmpl")).
    				Source(config.File("testdata/authz/deny-global.yaml.tmpl").WithParams(param.Params{
    					param.Namespace.String(): istio.ClaimSystemNamespaceOrFail(t, t),
    				})).
    				Source(config.File("testdata/authz/deny-principal.yaml.tmpl").WithParams(
    					param.Params{
    						"Denied": denied,
    					})).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/route/route.go

    // Examples using `[]` as a separator:
    // - `@request.auth.claims[admin]` matches the claim "admin".
    // - `@request.auth.claims[group][id]` matches the nested claims "group" and "id".
    func translateMetadataMatch(name string, in *networking.StringMatch, useExtendedJwt bool) *matcher.MetadataMatcher {
    	rc := jwt.ToRoutingClaim(name)
    	if !rc.Match {
    		return nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
Back to top