Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 283 for authn (0.16 sec)

  1. pilot/pkg/networking/plugin/authn/authentication.go

    // limitations under the License.
    
    package authn
    
    import (
    	hcm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/http_connection_manager/v3"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking"
    	"istio.io/istio/pilot/pkg/security/authn"
    	"istio.io/istio/pkg/log"
    )
    
    var authnLog = log.RegisterScope("authn", "authn debugging")
    
    type Builder struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. tests/integration/security/jwt_test.go

    						opts.Check = check.Status(http.StatusForbidden)
    					},
    				},
    			}))
    
    			t.NewSubTest("no-authn-authz").Run(newTest("", []testCase{
    				{
    					name: "no-authn-authz",
    					customizeCall: func(t framework.TestContext, from echo.Instance, opts *echo.CallOptions) {
    						opts.HTTP.Path = "/no-authn-authz"
    						opts.Check = check.And(
    							check.OK(),
    							check.ReachedTargetClusters(t))
    					},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  3. tests/integration/security/pass_through_filter_chain_test.go

    					},
    				},
    				{
    					// There is only authZ policy that allows access to TCPWorkloadOnly should be allowed.
    					name: "DISABLE with authz",
    					config: `apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: mtls
    spec:
      mtls:
        mode: DISABLE
    ---
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: authz
    spec:
      rules:
      - to:
        - operation:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. tests/integration/security/reachability_test.go

    				minIstioVersion string
    			}{
    				{
    					name: "global mtls strict",
    					configs: config.Sources{
    						config.File("testdata/reachability/global-peer-authn.yaml.tmpl"),
    						config.File("testdata/reachability/global-dr.yaml.tmpl"),
    					}.WithParams(param.Params{
    						mtlsModeParam:            model.MTLSStrict.String(),
    						tlsModeParam:             "ISTIO_MUTUAL",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. pilot/pkg/security/authn/factory.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package authn
    
    import (
    	hcm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/http_connection_manager/v3"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/config/labels"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. 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)
  7. pilot/pkg/networking/core/listener_builder.go

    	// authnBuilder provides access to authn (mTLS) configuration for the given proxy.
    	authnBuilder *authn.Builder
    	// authzBuilder provides access to authz configuration for the given proxy.
    	authzBuilder *authz.Builder
    	// authzCustomBuilder provides access to CUSTOM authz configuration for the given proxy.
    	authzCustomBuilder *authz.Builder
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/feature.go

    		"Enable block profiling, if profiling is enabled")
    	fs.StringVar(&o.DebugSocketPath, "debug-socket-path", o.DebugSocketPath,
    		"Use an unprotected (no authn/authz) unix-domain socket for profiling with the given path")
    	fs.BoolVar(&o.EnablePriorityAndFairness, "enable-priority-and-fairness", o.EnablePriorityAndFairness, ""+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. pilot/pkg/networking/grpcgen/lds.go

    	"istio.io/api/label"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/util"
    	"istio.io/istio/pilot/pkg/security/authn"
    	authzmodel "istio.io/istio/pilot/pkg/security/authz/model"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	xdsfilters "istio.io/istio/pilot/pkg/xds/filters"
    	"istio.io/istio/pkg/istio-agent/grpcxds"
    	"istio.io/istio/pkg/util/sets"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. pilot/pkg/model/authentication.go

    	case MTLSPermissive:
    		return "PERMISSIVE"
    	case MTLSStrict:
    		return "STRICT"
    	default:
    		return "UNKNOWN"
    	}
    }
    
    // ConvertToMutualTLSMode converts from peer authn MTLS mode (`PeerAuthentication_MutualTLS_Mode`)
    // to the MTLS mode specified by authn policy.
    func ConvertToMutualTLSMode(mode v1beta1.PeerAuthentication_MutualTLS_Mode) MutualTLSMode {
    	switch mode {
    	case v1beta1.PeerAuthentication_MutualTLS_DISABLE:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top