Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for authn (0.07 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. istioctl/pkg/describe/describe.go

    	"istio.io/istio/pilot/pkg/config/kube/crdclient"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/util"
    	"istio.io/istio/pilot/pkg/security/authn"
    	pilotcontroller "istio.io/istio/pilot/pkg/serviceregistry/kube/controller"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/config"
    	analyzerutil "istio.io/istio/pkg/config/analysis/analyzers/util"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  6. pilot/pkg/security/authn/policy_applier_test.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 (
    	"reflect"
    	"testing"
    	"time"
    
    	"github.com/davecgh/go-spew/spew"
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top