Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 97 for mtls (0.04 sec)

  1. pkg/test/framework/components/echo/calloptions.go

    	if o.To != nil {
    		return o.To.Config().ClusterLocalFQDN()
    	}
    
    	return ""
    }
    
    func (o CallOptions) DeepCopy() CallOptions {
    	clone := o
    	if o.TLS.Alpn != nil {
    		clone.TLS.Alpn = make([]string, len(o.TLS.Alpn))
    		copy(clone.TLS.Alpn, o.TLS.Alpn)
    	}
    	return clone
    }
    
    // FillDefaults fills out any defaults that haven't been explicitly specified.
    func (o *CallOptions) FillDefaults() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 13K bytes
    - Viewed (0)
  2. pilot/pkg/xds/workload_test.go

    	expectAddedAndRemoved(ads.ExpectResponse(), []string{"istio-system/istio_converted_static_strict"}, nil)
    
    	createPeerAuthentication(s, "policy2", "ns", &v1beta1.PeerAuthentication{
    		Mtls: &v1beta1.PeerAuthentication_MutualTLS{
    			Mode: v1beta1.PeerAuthentication_MutualTLS_PERMISSIVE,
    		},
    		PortLevelMtls: map[uint32]*v1beta1.PeerAuthentication_MutualTLS{
    			9080: {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.yaml

    abled":true,"suffix":"global"}},"istio-ingressgateway":{"applicationPorts":"","autoscaleEnabled":true,"debug":"info","domain":"","enabled":true,"meshExpansionPorts":[{"name":"tcp-pilot-grpc-tls","port":15011,"targetPort":15011},{"name":"tcp-citadel-grpc-tls","port":8060,"targetPort":8060},{"name":"tcp-dns-tls","port":853,"targetPort":853}],"namespace":"istio-system","ports":[{"name":"status-port","port":15020,"targetPort":15020},{"name":"http2","port":80,"targetPort":80},{"name":"https","port":4...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

    abled":true,"suffix":"global"}},"istio-ingressgateway":{"applicationPorts":"","autoscaleEnabled":true,"debug":"info","domain":"","enabled":true,"meshExpansionPorts":[{"name":"tcp-pilot-grpc-tls","port":15011,"targetPort":15011},{"name":"tcp-citadel-grpc-tls","port":8060,"targetPort":8060},{"name":"tcp-dns-tls","port":853,"targetPort":853}],"namespace":"istio-system","ports":[{"name":"status-port","port":15020,"targetPort":15020},{"name":"http2","port":80,"targetPort":80},{"name":"https","port":4...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-configmap.yaml

    abled":true,"suffix":"global"}},"istio-ingressgateway":{"applicationPorts":"","autoscaleEnabled":true,"debug":"info","domain":"","enabled":true,"meshExpansionPorts":[{"name":"tcp-pilot-grpc-tls","port":15011,"targetPort":15011},{"name":"tcp-citadel-grpc-tls","port":8060,"targetPort":8060},{"name":"tcp-dns-tls","port":853,"targetPort":853}],"namespace":"istio-system","ports":[{"name":"status-port","port":15020,"targetPort":15020},{"name":"http2","port":80,"targetPort":80},{"name":"https","port":4...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-enabled-nsbydefault.yaml

    abled":true,"suffix":"global"}},"istio-ingressgateway":{"applicationPorts":"","autoscaleEnabled":true,"debug":"info","domain":"","enabled":true,"meshExpansionPorts":[{"name":"tcp-pilot-grpc-tls","port":15011,"targetPort":15011},{"name":"tcp-citadel-grpc-tls","port":8060,"targetPort":8060},{"name":"tcp-dns-tls","port":853,"targetPort":853}],"namespace":"istio-system","ports":[{"name":"status-port","port":15020,"targetPort":15020},{"name":"http2","port":80,"targetPort":80},{"name":"https","port":4...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/values.yaml

        multiCluster:
          # Set to true to connect two kubernetes clusters via their respective
          # ingressgateway services when pods in each cluster cannot directly
          # talk to one another. All clusters should be using Istio mTLS and must
          # have a shared root CA for this model to work.
          enabled: false
          # Should be set to the name of the cluster this installation will run in. This is required for sidecar injection
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/values.yaml

        multiCluster:
          # Set to true to connect two kubernetes clusters via their respective
          # ingressgateway services when pods in each cluster cannot directly
          # talk to one another. All clusters should be using Istio mTLS and must
          # have a shared root CA for this model to work.
          enabled: false
          # Should be set to the name of the cluster this installation will run in. This is required for sidecar injection
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster.go

    type ClusterMode string
    
    const (
    	// SniDnatClusterMode indicates cluster is being built for SNI dnat mode
    	SniDnatClusterMode ClusterMode = "sni-dnat"
    	// DefaultClusterMode indicates usual cluster with mTLS et al
    	DefaultClusterMode ClusterMode = "outbound"
    )
    
    type buildClusterOpts struct {
    	mesh            *meshconfig.MeshConfig
    	mutable         *clusterWrapper
    	policy          *networking.TrafficPolicy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  10. pkg/kube/inject/inject_test.go

    			inFilePath: "hello-template-in-values.iop.yaml",
    		},
    		{
    			// Verifies that global.mountMtlsCerts is applied properly
    			in:       "hello.yaml",
    			want:     "hello-mount-mtls-certs.yaml.injected",
    			setFlags: []string{`values.global.mountMtlsCerts=true`},
    		},
    		{
    			// Verifies that k8s.v1.cni.cncf.io/networks is set to istio-cni when not chained
    			in:   "hello.yaml",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top