Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for svc3 (0.72 sec)

  1. pilot/pkg/serviceregistry/serviceregistry_test.go

    func makeService(t *testing.T, c kubernetes.Interface, svc *v1.Service) {
    	t.Helper()
    	// avoid mutating input
    	svc = svc.DeepCopy()
    	// simulate actual k8s behavior
    	for i, port := range svc.Spec.Ports {
    		if port.TargetPort.IntVal == 0 && port.TargetPort.StrVal == "" {
    			svc.Spec.Ports[i].TargetPort.IntVal = port.Port
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  2. pkg/controller/endpointslice/endpointslice_controller_test.go

    	sliceInfo := &topologycache.SliceInfo{
    		ServiceKey:  "ns/svc",
    		AddressType: discovery.AddressTypeIPv4,
    		ToCreate: []*discovery.EndpointSlice{
    			{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "svc-abc",
    					Namespace: "ns",
    					Labels: map[string]string{
    						discovery.LabelServiceName: "svc",
    						discovery.LabelManagedBy:   controllerName,
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/route.go

    		for _, service := range wrapper.Services {
    			delete(serviceRegistry, service.Hostname)
    		}
    	}
    
    	for _, svc := range serviceRegistry {
    		for _, port := range svc.Ports {
    			if port.Protocol.IsHTTPOrSniffed() {
    				hash, destinationRule := hashForService(push, node, svc, port)
    				if hash != nil {
    					dependentDestinationRules = append(dependentDestinationRules, destinationRule)
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/route_test.go

    							Host: "example2.default.svc.cluster.local",
    							Port: &networking.PortSelector{
    								Number: 8484,
    							},
    						},
    					},
    				},
    			},
    			{
    				Name: "route 3",
    				Route: []*networking.HTTPRouteDestination{
    					{
    						Destination: &networking.Destination{
    							Host: "example1.default.svc.cluster.local",
    							Port: &networking.PortSelector{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  5. 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)
  6. operator/cmd/mesh/testdata/manifest-generate/output/sidecar_template.golden.yaml

                - containerPort: 15090
                  protocol: TCP
                  name: http-envoy-prom
                args:
                - proxy
                - sidecar
                - --domain
                - $(POD_NAMESPACE).svc.{{ .Values.global.proxy.clusterDomain }}
                - --proxyLogLevel={{ annotation .ObjectMeta `sidecar.istio.io/logLevel` .Values.global.proxy.logLevel }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 86.9K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inputs/hello.yaml.4.template.gen.yaml

            ports:
            - containerPort: 15090
              protocol: TCP
              name: http-envoy-prom
            args:
            - proxy
            - sidecar
            - --domain
            - $(POD_NAMESPACE).svc.{{ .Values.global.proxy.clusterDomain }}
            - --proxyLogLevel={{ annotation .ObjectMeta `sidecar.istio.io/logLevel` .Values.global.proxy.logLevel }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inputs/merge-probers.yaml.43.template.gen.yaml

            ports:
            - containerPort: 15090
              protocol: TCP
              name: http-envoy-prom
            args:
            - proxy
            - sidecar
            - --domain
            - $(POD_NAMESPACE).svc.{{ .Values.global.proxy.clusterDomain }}
            - --proxyLogLevel={{ annotation .ObjectMeta `sidecar.istio.io/logLevel` .Values.global.proxy.logLevel }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inputs/default.template.gen.yaml

            ports:
            - containerPort: 15090
              protocol: TCP
              name: http-envoy-prom
            args:
            - proxy
            - sidecar
            - --domain
            - $(POD_NAMESPACE).svc.{{ .Values.global.proxy.clusterDomain }}
            - --proxyLogLevel={{ annotation .ObjectMeta `sidecar.istio.io/logLevel` .Values.global.proxy.logLevel }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_test.go

    				}
    			}
    		})
    	}
    }
    
    func TestOutboundListenerForHeadlessServices(t *testing.T) {
    	svc := buildServiceWithPort("test.com", 9999, protocol.TCP, tnow)
    	svc.Resolution = model.Passthrough
    	svc.Attributes.ServiceRegistry = provider.Kubernetes
    	services := []*model.Service{svc}
    
    	autoSvc := buildServiceWithPort("test.com", 9999, protocol.Unsupported, tnow)
    	autoSvc.Resolution = model.Passthrough
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top