Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for SVC (0.05 sec)

  1. pkg/proxy/ipvs/proxier_test.go

    		svc.Spec.Ports = addTestPort(svc.Spec.Ports, "port1", "TCP", 1234, 0, 0)
    	})
    	service3 := makeTestService("ns1", "svc1", func(svc *v1.Service) {
    		svc.Spec.Type = v1.ServiceTypeClusterIP
    		svc.Spec.ClusterIP = "172.16.55.4"
    		svc.Spec.Ports = addTestPort(svc.Spec.Ports, "port1", "TCP", 1234, 0, 0)
    		svc.Spec.Ports = addTestPort(svc.Spec.Ports, "port2", "TCP", 1235, 0, 0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder_test.go

    			destRule: &networking.DestinationRule{
    				Host: "foo.default.svc.cluster.local",
    				TrafficPolicy: &networking.TrafficPolicy{
    					Tls: &networking.ClientTLSSettings{
    						Mode:            networking.ClientTLSSettings_SIMPLE,
    						CaCertificates:  constants.RootCertFilename,
    						Sni:             "foo.default.svc.cluster.local",
    						SubjectAltNames: []string{"foo.default.svc.cluster.local"},
    					},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier_test.go

    			svc.Spec.Type = v1.ServiceTypeNodePort
    			svc.Spec.ClusterIP = "172.30.55.10"
    			svc.Spec.Ports = addTestPort(svc.Spec.Ports, "blahblah", "UDP", 345, 678, 0)
    			svc.Spec.Ports = addTestPort(svc.Spec.Ports, "moreblahblah", "TCP", 344, 677, 0)
    			svc.Spec.Ports = addTestPort(svc.Spec.Ports, "muchmoreblah", "SCTP", 343, 676, 0)
    		}),
    		makeTestService("somewhere", "load-balancer", func(svc *v1.Service) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  4. tests/integration/pilot/common/routing.go

    			cfg.ClusterLocalFQDN(),
    			fmt.Sprintf("%s:%d", cfg.ClusterLocalFQDN(), port),
    			fmt.Sprintf("%s:12345", cfg.ClusterLocalFQDN()),
    			fmt.Sprintf("%s.%s.svc", cfg.Service, cfg.Namespace.Name()),
    			fmt.Sprintf("%s.%s.svc:%d", cfg.Service, cfg.Namespace.Name(), port),
    			fmt.Sprintf("%s.%s.svc:12345", cfg.Service, cfg.Namespace.Name()),
    			cfg.Service,
    			fmt.Sprintf("%s:%d", cfg.Service, port),
    			fmt.Sprintf("%s:12345", cfg.Service),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_test.go

    			Number:   7443,
    			Name:     "grpc-core",
    			Protocol: "GRPC",
    		},
    	}
    	svc := findOrCreateService(instances, ingress, "sidecar", "sidecarns")
    	if svc == nil || svc.Hostname.Matches("sidecar.sidecarns") {
    		t.Fatal("Expected to return a valid instance, but got nil/default instance")
    	}
    	if !reflect.DeepEqual(svc, service) {
    		t.Fatal("Expected returned copy of instance to be equal, but they are different")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers.go

    	}
    	return r
    }
    
    func getServiceExternalIP(svc *api.Service, wide bool) string {
    	switch svc.Spec.Type {
    	case api.ServiceTypeClusterIP:
    		if len(svc.Spec.ExternalIPs) > 0 {
    			return strings.Join(svc.Spec.ExternalIPs, ",")
    		}
    		return "<none>"
    	case api.ServiceTypeNodePort:
    		if len(svc.Spec.ExternalIPs) > 0 {
    			return strings.Join(svc.Spec.ExternalIPs, ",")
    		}
    		return "<none>"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  7. pkg/config/validation/validation_test.go

    			TrafficPolicy: &networking.TrafficPolicy{
    				Tls: &networking.ClientTLSSettings{
    					Mode:            networking.ClientTLSSettings_SIMPLE,
    					CaCertificates:  "test",
    					SubjectAltNames: []string{"reviews.default.svc"},
    				},
    			},
    		}, valid: true},
    
    		{name: "InsecureSkipVerify is not specified with tls mode simple, and the ca cert is specified by CredentialName", in: &networking.DestinationRule{
    			Host: "reviews",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    					if len(parts) == 2 {
    						ns := parts[0]
    						svc := parts[1]
    						if ns == "." {
    							ns = cfg.Namespace
    						}
    						if _, ok := nssSvcs[ns]; !ok {
    							nssSvcs[ns] = map[string]bool{}
    						}
    
    						// test/a
    						// test/a
    						// test/*
    						if svc != "*" {
    							if _, ok := nssSvcs[ns][svc]; ok || nssSvcs[ns]["*"] {
    								// already exists
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  9. manifests/addons/dashboards/istio-service-dashboard.json

            "skipUrlSync": false,
            "type": "datasource"
          },
          {
            "current": {
              "selected": false,
              "text": "details.default.svc.cluster.local",
              "value": "details.default.svc.cluster.local"
            },
            "datasource": {
              "type": "prometheus",
              "uid": "${datasource}"
            },
            "definition": "",
            "hide": 0,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 111.8K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/gateway_test.go

    					{
    						Port: 443,
    					},
    				},
    				Route: []*networking.HTTPRouteDestination{
    					{
    						Destination: &networking.Destination{
    							Host: "example.default.svc.cluster.local",
    							Port: &networking.PortSelector{
    								Number: 8080,
    							},
    						},
    					},
    				},
    			},
    		},
    	}
    	virtualService := config.Config{
    		Meta: config.Meta{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
Back to top