Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for transport_socket_matches (0.4 sec)

  1. istioctl/pkg/describe/testdata/describe/http_config.json

                      "protocol": "istio-peer-exchange"
                    }
                  }
                ],
                "transport_socket_matches": [
                  {
                    "name": "tlsMode-istio",
                    "match": {
                      "tlsMode": "istio"
                    },
                    "transport_socket": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/envoyfilter/cluster_patch.go

    				ts = tsm.GetTransportSocket()
    				break
    			}
    		}
    		if ts == nil {
    			// If we merged we would get both a transport_socket and transport_socket_matches which is not valid
    			// Drop the filter, but indicate that we handled the merge so that the outer function does not try
    			// to merge it again
    			return true, nil
    		}
    	} else if c.GetTransportSocket() != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. pilot/test/xdstest/validate.go

    	}
    	validateClusterTLS(t, c)
    }
    
    func validateClusterTLS(t testing.TB, c *cluster.Cluster) {
    	if c.TransportSocket != nil && c.TransportSocketMatches != nil {
    		t.Errorf("both transport_socket and transport_socket_matches set for %v", c)
    	}
    }
    
    func ValidateRoutes(t testing.TB, ls []*route.Route) {
    	for _, l := range ls {
    		ValidateRoute(t, l)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/configdump.json

                                            "metadata": {
                                                "filter_metadata": {
                                                    "envoy.transport_socket_match": {
                                                        "tlsMode": "istio"
                                                    },
                                                    "istio": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 66K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/emptyfilter_output.json

                            },
                            "healthStatus": "HEALTHY",
                            "metadata": {
                                "filterMetadata": {
                                    "envoy.transport_socket_match": {
                                        "tlsMode": "istio"
                                    },
                                    "istio": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 40.4K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/emptyfilter_output.yaml

                address: 10.244.0.190
                portValue: 9080
            healthCheckConfig: {}
          healthStatus: HEALTHY
          loadBalancingWeight: 1
          metadata:
            filterMetadata:
              envoy.transport_socket_match:
                tlsMode: istio
              istio:
                workload: details-v1;default;details;v1;Kubernetes
        loadBalancingWeight: 1
        locality: {}
      policy:
        overprovisioningFactor: 140
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_traffic_policy_test.go

    				t.Errorf("Expected TransportSocket %v", test.expectTransportSocket)
    			}
    			if test.expectTransportSocketMatch && cluster.TransportSocketMatches == nil ||
    				!test.expectTransportSocketMatch && cluster.TransportSocketMatches != nil {
    				t.Errorf("Expected TransportSocketMatch %v", test.expectTransportSocketMatch)
    			}
    			upstreamProxyProtocol := &proxyprotocol.ProxyProtocolUpstreamTransport{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_tls.go

    				},
    				defaultTransportSocketMatch(),
    			}
    		} else {
    			if c.TransportSocket == nil {
    				c.TransportSocketMatches = hboneOrPlaintextSocket
    			} else {
    				ts := c.TransportSocket
    				c.TransportSocket = nil
    
    				c.TransportSocketMatches = []*cluster.Cluster_TransportSocketMatch{
    					hboneTransportSocket,
    					{
    						Name:            "tlsMode-" + model.IstioMutualTLSModeLabel,
    						TransportSocket: ts,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/envoyfilter/cluster_patch_test.go

    		},
    	}
    
    	sidecarOutboundIn := []*cluster.Cluster{
    		{
    			Name:            "outbound|443||cluster1",
    			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",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_waypoint.go

    	// Upstream of the "encap" listener.
    	clusters = append(clusters, cb.buildWaypointConnectOriginate(proxy, push))
    
    	for _, c := range clusters {
    		if c.TransportSocket != nil && c.TransportSocketMatches != nil {
    			log.Errorf("invalid cluster, multiple matches: %v", c.Name)
    		}
    	}
    	return clusters
    }
    
    // `inbound-vip||hostname|port`. EDS routing to the internal listener for each pod in the VIP.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top