Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 491 for authn (0.05 sec)

  1. 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)
  2. pilot/pkg/networking/core/filterchain_options.go

    package core
    
    import (
    	tls "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/tls/v3"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking"
    	"istio.io/istio/pilot/pkg/security/authn"
    	xdsfilters "istio.io/istio/pilot/pkg/xds/filters"
    )
    
    // FilterChainMatchOptions describes options used for filter chain matches.
    type FilterChainMatchOptions struct {
    	// Application protocols of the filter chain match
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. tests/integration/security/remote_jwks/testdata/requestauthn-no-se.yaml.tmpl

    ---
    apiVersion: security.istio.io/v1beta1
    kind: RequestAuthentication
    metadata:
      name: request-authn
    spec:
      selector:
        matchLabels:
          app: {{ .dst }}
      jwtRules:
      - issuer: "******@****.***"
        jwksUri: "http://example.com:8000/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
    - 330 bytes
    - Viewed (0)
  4. tests/integration/security/remote_jwks/testdata/requestauthn-with-se-timeout.yaml.tmpl

    ---
    apiVersion: security.istio.io/v1beta1
    kind: RequestAuthentication
    metadata:
      name: request-authn
    spec:
      selector:
        matchLabels:
          app: {{ .dst }}
      jwtRules:
      - issuer: "******@****.***"
        jwksUri: "http://example.com:8000/jwks?delay={{ .delay }}"
        outputPayloadToHeader: "x-test-payload"
        forwardOriginalToken: true
        timeout: {{ .timeout }}
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: ServiceEntry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 675 bytes
    - Viewed (0)
  5. pilot/pkg/xds/testdata/benchmarks/authorizationpolicy.yaml

      endpoints:
        - address: 1.1.1.1
          labels:
            istio.io/benchmark: "true"
    ---
    {{- range $i := until .Services }}
    apiVersion: security.istio.io/v1
    kind: AuthorizationPolicy
    metadata:
      name: authn-{{$i}}
    spec:
      action: DENY
      rules:
        - from:
            - source:
                namespaces: ["default"]
          to:
            - operation:
                methods: ["POST"]
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 29 02:10:48 UTC 2023
    - 738 bytes
    - Viewed (0)
  6. pilot/pkg/networking/plugin/authn/util.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 (
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pkg/util/sets"
    )
    
    func TrustDomainsForValidation(meshConfig *meshconfig.MeshConfig) []string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 16:11:07 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. releasenotes/notes/25818.yaml

    # Istio.
    securityNotes:
      - |
        __Source principal validation at Gateway does not work even with ISTIO_MUTUAL TLS mode__:
        When the Gateway server's TLS mode is ISTIO_MUTUAL, Istio's authN filter is not installed on the appropriate filter chain. Consequently, any Istio Authorization policy with source principal based rules will not work when applied to a Gateway workload.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 1.7K 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/plugin/authn/util_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"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    )
    
    func TestTrustDomainsForValidation(t *testing.T) {
    	tests := []struct {
    		name       string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 16:11:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. tools/docker-builder/builder/crane.go

    // limitations under the License.
    
    package builder
    
    import (
    	"bytes"
    	"compress/gzip"
    	"context"
    	"fmt"
    	"io"
    	"strings"
    	"sync"
    	"time"
    
    	"github.com/google/go-containerregistry/pkg/authn"
    	"github.com/google/go-containerregistry/pkg/name"
    	"github.com/google/go-containerregistry/pkg/registry"
    	v1 "github.com/google/go-containerregistry/pkg/v1"
    	"github.com/google/go-containerregistry/pkg/v1/empty"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top