Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 48 for requestAuthentications (1.19 sec)

  1. tests/integration/security/testdata/authz/jwt.yaml.tmpl

    # Enforce access control based on JWT subject.
    
    # The following policy enables JWT authentication on destination service.
    
    apiVersion: security.istio.io/v1beta1
    kind: RequestAuthentication
    metadata:
      name: default
    spec:
      jwtRules:
      - issuer: "******@****.***"
        jwksUri: "https://raw.githubusercontent.com/istio/istio/master/tests/common/jwt/jwks.json"
      - issuer: "******@****.***"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. pkg/config/validation/validation_test.go

    			name:       "empty spec",
    			configName: constants.DefaultAuthenticationPolicyName,
    			in:         &security_beta.RequestAuthentication{},
    			valid:      true,
    		},
    		{
    			name:       "another empty spec",
    			configName: constants.DefaultAuthenticationPolicyName,
    			in: &security_beta.RequestAuthentication{
    				Selector: &api.WorkloadSelector{},
    			},
    			valid:   true,
    			warning: true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  3. manifests/charts/base/crds/crd-all.gen.yaml

        release: istio
      name: requestauthentications.security.istio.io
    spec:
      group: security.istio.io
      names:
        categories:
        - istio-io
        - security-istio-io
        kind: RequestAuthentication
        listKind: RequestAuthenticationList
        plural: requestauthentications
        shortNames:
        - ra
        singular: requestauthentication
      scope: Namespaced
      versions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  4. pilot/pkg/xds/nds.go

    	kind.Gateway,
    	kind.VirtualService,
    	kind.DestinationRule,
    	kind.Secret,
    	kind.Telemetry,
    	kind.EnvoyFilter,
    	kind.WorkloadEntry,
    	kind.WorkloadGroup,
    	kind.AuthorizationPolicy,
    	kind.RequestAuthentication,
    	kind.PeerAuthentication,
    	kind.WasmPlugin,
    	kind.ProxyConfig,
    	kind.MeshConfig,
    
    	kind.KubernetesGateway,
    	kind.HTTPRoute,
    	kind.TCPRoute,
    	kind.TLSRoute,
    	kind.GRPCRoute,
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. tests/fuzz/config_validation_fuzzer.go

    		err = f.GenerateStruct(in)
    		if err != nil {
    			return 0
    		}
    		c.Spec = in
    		_, _ = validation.ValidateAuthorizationPolicy(c)
    	case 5:
    		in := &security_beta.RequestAuthentication{}
    		err = f.GenerateStruct(in)
    		if err != nil {
    			return 0
    		}
    		c.Spec = in
    		_, _ = validation.ValidateRequestAuthentication(c)
    	case 6:
    		in := &security_beta.PeerAuthentication{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. manifests/addons/dashboards/istio-mesh-dashboard.json

              },
              "expr": "max(pilot_k8s_cfg_events{type=\"RequestAuthentication\", event=\"add\"}) - (max(pilot_k8s_cfg_events{type=\"RequestAuthentication\", event=\"delete\"}) or max(up * 0))",
              "format": "time_series",
              "intervalFactor": 1,
              "refId": "A"
            }
          ],
          "title": "RequestAuthentication Policies",
          "type": "stat"
        },
        {
          "datasource": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 02:28:01 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  7. tests/integration/security/policy_attachment_only/jwt_gateway_test.go

    								WithAuthz(jwt.TokenIssuer1).
    								Build()
    							opts.Check = check.OK()
    						},
    					},
    					{
    						name: "deny with sub-1 token due to ignored RequestAuthentication",
    						customizeCall: func(opts *echo.CallOptions, to echo.Target) {
    							opts.HTTP.Path = "/"
    							opts.HTTP.Headers = headers.New().
    								WithHost(fmt.Sprintf("example.%s.com", to.ServiceName())).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. pilot/pkg/xds/eds.go

    // Map of all configs that do not impact EDS
    var skippedEdsConfigs = sets.New(
    	kind.Gateway,
    	kind.VirtualService,
    	kind.WorkloadGroup,
    	kind.AuthorizationPolicy,
    	kind.RequestAuthentication,
    	kind.Secret,
    	kind.Telemetry,
    	kind.WasmPlugin,
    	kind.ProxyConfig,
    	kind.DNSName,
    
    	kind.KubernetesGateway,
    	kind.HTTPRoute,
    	kind.TCPRoute,
    	kind.TLSRoute,
    	kind.GRPCRoute,
    )
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. pilot/pkg/features/pilot.go

    	).Get()
    
    	JwksFetchMode = func() jwt.JwksFetchMode {
    		v := env.Register(
    			"PILOT_JWT_ENABLE_REMOTE_JWKS",
    			"false",
    			"Mode of fetching JWKs from JwksUri in RequestAuthentication. Supported value: "+
    				"istiod, false, hybrid, true, envoy. The client fetching JWKs is as following: "+
    				"istiod/false - Istiod; hybrid/true - Envoy and fallback to Istiod if JWKs server is external; "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. tests/integration/security/fuzz/fuzz_test.go

    spec:
      action: DENY
      rules:
      - to:
        - operation:
            paths: ["/private/secret.html"]
    `
    	jwtTool            = "jwttool"
    	requestAuthnPolicy = `
    apiVersion: security.istio.io/v1
    kind: RequestAuthentication
    metadata:
      name: jwt
    spec:
      jwtRules:
      - issuer: "******@****.***"
        jwksUri: "https://raw.githubusercontent.com/istio/istio/release-1.10/tests/common/jwt/jwks.json"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top