Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 63 of 63 for requestAuthentications (0.36 sec)

  1. pkg/config/validation/validation.go

    var ValidateRequestAuthentication = RegisterValidateFunc("ValidateRequestAuthentication",
    	func(cfg config.Config) (Warning, error) {
    		in, ok := cfg.Spec.(*security_beta.RequestAuthentication)
    		if !ok {
    			return nil, errors.New("cannot cast to RequestAuthentication")
    		}
    
    		errs := Validation{}
    		errs = AppendValidation(errs,
    			validateOneOfSelectorType(in.GetSelector(), in.GetTargetRef(), in.GetTargetRefs()),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  2. tests/integration/ambient/baseline_test.go

    				opt.HTTP.Path = "/"
    				opt.HTTP.Headers = headers.New().
    					WithAuthz(jwt.TokenIssuer1).
    					Build()
    				opt.Check = check.OK()
    			})
    
    			t.NewSubTest("deny with sub-3 token due to ignored RequestAuthentication").Run(func(t framework.TestContext) {
    				opt := opt.DeepCopy()
    				opt.HTTP.Path = "/"
    				opt.HTTP.Headers = headers.New().
    					WithAuthz(jwt.TokenIssuer3).
    					Build()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  3. tests/integration/pilot/common/routing.go

            {{- end }}
          {{- end }}
        route:
        - destination:
            host: {{ .dstSvc }}
    ---
    `
    	configAll := configRoute + `
    apiVersion: security.istio.io/v1beta1
    kind: RequestAuthentication
    metadata:
      name: default
      namespace: {{.SystemNamespace | default "istio-system"}}
    spec:
      jwtRules:
      - issuer: "******@****.***"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top