Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for authnmodel (0.45 sec)

  1. pilot/pkg/security/authz/builder/extauthz.go

    		Filter: name,
    		Path: []*envoy_type_matcher_v3.MetadataMatcher_PathSegment{
    			{
    				Segment: &envoy_type_matcher_v3.MetadataMatcher_PathSegment_Key{
    					Key: authzmodel.RBACExtAuthzShadowRulesStatPrefix + authzmodel.RBACShadowEffectivePolicyID,
    				},
    			},
    		},
    		Value: &envoy_type_matcher_v3.ValueMatcher{
    			MatchPattern: &envoy_type_matcher_v3.ValueMatcher_StringMatch{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/grpcgen/lds.go

    	wrappers "google.golang.org/protobuf/types/known/wrapperspb"
    
    	"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)
  3. cmd/kubeadm/app/phases/controlplane/manifests_test.go

    	}
    }
    
    func TestGetAuthzModes(t *testing.T) {
    	var tests = []struct {
    		name     string
    		authMode []string
    		expected string
    	}{
    		{
    			name:     "default if empty",
    			authMode: []string{},
    			expected: "Node,RBAC",
    		},
    		{
    			name:     "default non empty",
    			authMode: []string{kubeadmconstants.ModeNode, kubeadmconstants.ModeRBAC},
    			expected: "Node,RBAC",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  4. pilot/pkg/security/authn/policy_applier.go

    	"istio.io/api/security/v1beta1"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking"
    	authn_utils "istio.io/istio/pilot/pkg/security/authn/utils"
    	authn_model "istio.io/istio/pilot/pkg/security/model"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	"istio.io/istio/pilot/pkg/xds/filters"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/security"
    	"istio.io/istio/pkg/jwt"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/controlplane/manifests.go

    		}
    	}
    	return true
    }
    
    func isValidAuthzMode(authzMode string) bool {
    	allModes := []string{
    		kubeadmconstants.ModeNode,
    		kubeadmconstants.ModeRBAC,
    		kubeadmconstants.ModeWebhook,
    		kubeadmconstants.ModeABAC,
    		kubeadmconstants.ModeAlwaysAllow,
    		kubeadmconstants.ModeAlwaysDeny,
    	}
    
    	for _, mode := range allModes {
    		if authzMode == mode {
    			return true
    		}
    	}
    	return false
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  6. fastapi/security/oauth2.py

    from typing import Any, Dict, List, Optional, Union, cast
    
    from fastapi.exceptions import HTTPException
    from fastapi.openapi.models import OAuth2 as OAuth2Model
    from fastapi.openapi.models import OAuthFlows as OAuthFlowsModel
    from fastapi.param_functions import Form
    from fastapi.security.base import SecurityBase
    from fastapi.security.utils import get_authorization_scheme_param
    from starlette.requests import Request
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. pkg/kubeapiserver/options/authentication.go

    	serviceaccountcontroller "k8s.io/kubernetes/pkg/controller/serviceaccount"
    	"k8s.io/kubernetes/pkg/features"
    	kubeauthenticator "k8s.io/kubernetes/pkg/kubeapiserver/authenticator"
    	authzmodes "k8s.io/kubernetes/pkg/kubeapiserver/authorizer/modes"
    	"k8s.io/kubernetes/pkg/util/filesystem"
    	"k8s.io/kubernetes/plugin/pkg/auth/authenticator/token/bootstrap"
    	"k8s.io/utils/pointer"
    )
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_builder_test.go

    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/api/type/v1beta1"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/util"
    	authn_model "istio.io/istio/pilot/pkg/security/model"
    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    	"istio.io/istio/pilot/pkg/xds/endpoints"
    	xdsfilters "istio.io/istio/pilot/pkg/xds/filters"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
Back to top