Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 929 for authn (0.13 sec)

  1. cmd/kubelet/app/auth.go

    func BuildAuthn(client authenticationclient.AuthenticationV1Interface, authn kubeletconfig.KubeletAuthentication) (authenticator.Request, func(<-chan struct{}), error) {
    	var dynamicCAContentFromFile *dynamiccertificates.DynamicFileCAContent
    	var err error
    	if len(authn.X509.ClientCAFile) > 0 {
    		dynamicCAContentFromFile, err = dynamiccertificates.NewDynamicCAContentFromFile("client-ca-bundle", authn.X509.ClientCAFile)
    		if err != nil {
    			return nil, nil, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 07 14:37:01 UTC 2022
    - 5K bytes
    - Viewed (0)
  2. releasenotes/notes/filter-order.yaml

          
          * Metadata Exchange
          * CUSTOM Authz
          * WASM Authn
          * Authn
          * WASM Authz
          * Authz
          * WASM Stats
          * Stats
          * WASM unspecified
          
          This changes the following areas:
          * Inbound TCP filters now place Metadata Exchange before Authn.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 15 18:28:50 UTC 2023
    - 895 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/test/datasets/validation/dataset/extensions-v1alpha1-WasmPlugin.yaml

        matchLabels:
          istio: ingressgateway
      url: oci://private-registry:5000/openid-connect/openid:latest
      imagePullPolicy: IfNotPresent
      imagePullSecret: private-registry-pull-secret
      phase: AUTHN
      pluginConfig:
        openid_server: authn
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 07:02:38 UTC 2023
    - 371 bytes
    - Viewed (0)
  7. 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)
  8. pkg/wasm/imagefetcher.go

    	if key == name.DefaultRegistry {
    		key = authn.DefaultAuthKey
    	}
    	cfg, err := cf.GetAuthConfig(key)
    	if err != nil {
    		return nil, err
    	}
    
    	empty := dtypes.AuthConfig{}
    	if cfg == empty {
    		return authn.Anonymous, nil
    	}
    	authConfig := authn.AuthConfig{
    		Username:      cfg.Username,
    		Password:      cfg.Password,
    		Auth:          cfg.Auth,
    		IdentityToken: cfg.IdentityToken,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 10 05:44:51 UTC 2023
    - 12K bytes
    - Viewed (0)
  9. pkg/util/image/registry.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package image
    
    import (
    	"fmt"
    	"strings"
    
    	"github.com/google/go-containerregistry/pkg/authn"
    	"github.com/google/go-containerregistry/pkg/name"
    	"github.com/google/go-containerregistry/pkg/v1/remote"
    	"github.com/google/go-containerregistry/pkg/v1/remote/transport"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 25 16:28:36 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. tests/integration/security/https_jwt/testdata/remotehttps.yaml.tmpl

    ---
    apiVersion: security.istio.io/v1beta1
    kind: RequestAuthentication
    metadata:
      name: request-authn
    spec:
      selector: 
        matchLabels:
          app: {{ .dst }}
      jwtRules:
      - issuer: "******@****.***"
        # https jwt-server running in istio-system ns
        jwksUri: "https://jwt-server:8443/jwks" 
        outputPayloadToHeader: "x-test-payload"
        forwardOriginalToken: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 382 bytes
    - Viewed (0)
Back to top