Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 162 for TLSMode (0.13 sec)

  1. pilot/pkg/xds/testdata/benchmarks/serviceentry-workloadentry.yaml

          protocol: HTTPS
        - number: 9090
          name: auto
          protocol: ""
      resolution: STATIC
      location: MESH_INTERNAL
      endpoints:
        - address: 1.1.1.1
          labels:
            security.istio.io/tlsMode: istio
    ---
    # Set up .Services number of services. Each will have 4 ports (one for each protocol)
    {{- range $i := until .Services }}
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 29 17:35:13 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/envoyfilter/cluster_patch_test.go

    			DnsLookupFamily: cluster.Cluster_V4_ONLY,
    			LbPolicy:        cluster.Cluster_ROUND_ROBIN,
    			TransportSocketMatches: []*cluster.Cluster_TransportSocketMatch{
    				{
    					Name: "tlsMode-istio",
    					TransportSocket: &core.TransportSocket{
    						Name: "envoy.transport_sockets.tls",
    						ConfigType: &core.TransportSocket_TypedConfig{
    							TypedConfig: protoconv.MessageToAny(&tls.UpstreamTlsContext{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. pilot/pkg/model/service.go

    	}
    	if first.Endpoint.Address != second.Endpoint.Address {
    		return false
    	}
    	if first.Endpoint.Network != second.Endpoint.Network {
    		return false
    	}
    	if first.Endpoint.TLSMode != second.Endpoint.TLSMode {
    		return false
    	}
    	if !first.Endpoint.Labels.Equals(second.Endpoint.Labels) {
    		return false
    	}
    	if first.Endpoint.ServiceAccount != second.Endpoint.ServiceAccount {
    		return false
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_tls.go

    		},
    	}
    }
    
    // defaultTransportSocketMatch applies to endpoints that have no security.istio.io/tlsMode label
    // or those whose label value does not match "istio"
    func defaultTransportSocketMatch() *cluster.Cluster_TransportSocketMatch {
    	return &cluster.Cluster_TransportSocketMatch{
    		Name:            "tlsMode-disabled",
    		Match:           &structpb.Struct{},
    		TransportSocket: xdsfilters.RawBufferTransportSocket,
    	}
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. pilot/pkg/xds/testdata/nds-se.yaml

      ports:
        - number: 80
          name: http
          protocol: HTTP
      resolution: STATIC
      location: MESH_INTERNAL
      endpoints:
        - address: 1.2.3.4
          labels:
            security.istio.io/tlsMode: istio
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: service-none-wildcard
      namespace: ns2
    spec:
      hosts:
        - "*.random-4.host.example"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 08 09:17:55 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  6. pilot/pkg/simulation/traffic.go

    type Protocol string
    
    const (
    	HTTP  Protocol = "http"
    	HTTP2 Protocol = "http2"
    	TCP   Protocol = "tcp"
    )
    
    type TLSMode string
    
    const (
    	Plaintext TLSMode = "plaintext"
    	TLS       TLSMode = "tls"
    	MTLS      TLSMode = "mtls"
    )
    
    func (c Call) IsHTTP() bool {
    	return httpProtocols.Contains(string(c.Protocol)) && (c.TLS == Plaintext || c.TLS == "")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    					Endpoint: &model.IstioEndpoint{
    						Address:        instance.address,
    						Labels:         instance.labels,
    						ServiceAccount: genTestSpiffe(selector.Name, instance.serviceAccount),
    						TLSMode:        instance.tlsmode,
    					},
    				}
    
    				callInstanceHandlers([]*model.WorkloadInstance{wi}, sd, model.EventAdd, t)
    
    				totalInstances := []*model.ServiceInstance{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/util/util.go

    // when TLS mode is SIMPLE or MUTUAL. If metadata is not initialized, builds a new metadata.
    func AddALPNOverrideToMetadata(metadata *core.Metadata, tlsMode networking.ClientTLSSettings_TLSmode) *core.Metadata {
    	if tlsMode != networking.ClientTLSSettings_SIMPLE && tlsMode != networking.ClientTLSSettings_MUTUAL {
    		return metadata
    	}
    
    	if metadata == nil {
    		metadata = &core.Metadata{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/hello-multi.yaml.injected

          creationTimestamp: null
          labels:
            app: hello
            security.istio.io/tlsMode: istio
            service.istio.io/canonical-name: hello
            service.istio.io/canonical-revision: v1
            tier: backend
            track: stable
            version: v1
        spec:
          containers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/list.yaml.injected

            creationTimestamp: null
            labels:
              app: hello
              security.istio.io/tlsMode: istio
              service.istio.io/canonical-name: hello
              service.istio.io/canonical-revision: v1
              tier: backend
              track: stable
              version: v1
          spec:
            containers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 14.2K bytes
    - Viewed (0)
Back to top