Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for SVC (0.26 sec)

  1. pilot/pkg/networking/core/listener_waypoint.go

    	chains := []*listener.FilterChain{}
    	for _, svc := range svcs {
    		portMapper := match.NewDestinationPort()
    		for _, port := range svc.Ports {
    			if port.Protocol == protocol.UDP {
    				continue
    			}
    			portString := strconv.Itoa(port.Port)
    			cc := inboundChainConfig{
    				clusterName:   model.BuildSubsetKey(model.TrafficDirectionInboundVIP, "tcp", svc.Hostname, port.Port),
    				policyService: svc,
    				port: model.ServiceInstancePort{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/destinationrule-simple-port-credentialname.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: db-tls
    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        portLevelSettings:
          - port:
              number: 443
            tls:
              mode: SIMPLE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 288 bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/destinationrule-simple-port-credentialname-selector.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: db-tls
    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        portLevelSettings:
          - port:
              number: 443
            tls:
              mode: SIMPLE
              credentialName: db-credential
      workloadSelector:
          matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 342 bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/destinationrule-simple-destination-credentialname.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: db-tls
    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        tls:
          mode: SIMPLE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 217 bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/destinationrule-simple-destination-credentialname-selector.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: db-tls
    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        tls:
          mode: SIMPLE
          credentialName: db-credential
      workloadSelector:
          matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 271 bytes
    - Viewed (0)
  6. pilot/pkg/model/endpointshards.go

    		shardsBySvc: make(map[string]map[string]*EndpointShards),
    		cache:       cache,
    	}
    }
    
    // must be called with lock
    func (e *EndpointIndex) clearCacheForService(svc, ns string) {
    	e.cache.Clear(sets.Set[ConfigKey]{{
    		Kind:      kind.ServiceEntry,
    		Name:      svc,
    		Namespace: ns,
    	}: {}})
    }
    
    // Shardz returns a full deep copy of the global map of shards. This should be used only for testing
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. pilot/pkg/model/telemetry_logging.go

    	if parts := strings.Split(service, "/"); len(parts) == 2 {
    		namespace, name := parts[0], parts[1]
    		if svc := push.ServiceIndex.HostnameAndNamespace[host.Name(name)][namespace]; svc != nil {
    			hostname = string(svc.Hostname)
    			cluster = BuildSubsetKey(TrafficDirectionOutbound, "", svc.Hostname, port)
    			return
    		}
    	} else {
    		namespaceToServices := push.ServiceIndex.HostnameAndNamespace[host.Name(service)]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. pilot/pkg/model/telemetry_logging_test.go

    			assert.Equal(t, first, second)
    		})
    	}
    }
    
    func TestBuildOpenTelemetryAccessLogConfig(t *testing.T) {
    	fakeCluster := "outbound|55680||otel-collector.monitoring.svc.cluster.local"
    	fakeAuthority := "otel-collector.monitoring.svc.cluster.local"
    	for _, tc := range []struct {
    		name        string
    		logName     string
    		clusterName string
    		hostname    string
    		body        string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/conversion.go

    		// Service import
    		hostname := fmt.Sprintf("%s.%s.svc.clusterset.local", to.Name, namespace)
    		if !features.EnableMCSHost {
    			// They asked for ServiceImport, but actually don't have full support enabled...
    			// No problem, we can just treat it as Service, which is already cross-cluster in this mode anyways
    			hostname = fmt.Sprintf("%s.%s.svc.%s", to.Name, namespace, ctx.Domain)
    		}
    		if to.Port == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. pilot/pkg/model/gateway.go

    	// is limited to HTTP3 only
    	MergedQUICTransportServers map[ServerPort]*MergedServers
    
    	// HTTP3AdvertisingRoutes represents the set of HTTP routes which advertise HTTP/3.
    	// This mapping is used to generate alt-svc header that is needed for HTTP/3 server discovery.
    	HTTP3AdvertisingRoutes sets.String
    
    	// GatewayNameForServer maps from server to the owning gateway name.
    	// Used for select the set of virtual services that apply to a port.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top