Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for SVC (0.04 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. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

        operations:
        - CREATE
        - UPDATE
        resources:
        - '*'
      sideEffects: None
    
    ---
    apiVersion: v1
    data:
      mesh: |-
        defaultConfig:
          discoveryAddress: istiod.istio-system.svc:15012
          tracing:
            zipkin:
              address: zipkin.istio-system:9411
        defaultProviders:
          metrics:
          - prometheus
        enablePrometheusMerge: true
        rootNamespace: istio-control
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    some tasks. meshConfig: accessLogFile: /dev/stdout extensionProviders: - name: otel envoyOtelAls: service: opentelemetry-collector.istio-system.svc.cluster.local port: 4317 - name: skywalking skywalking: service: tracing.istio-system.svc.cluster.local port: 11800 - name: otel-tracing opentelemetry: port: 4317 service: opentelemetry-collector.otel-collector.svc.cluster.local global: proxy: resources: requests: cpu: 10m memory: 40Mi pilot: autoscaleEnabled: false traceSampling: 100 resources: requests:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  10. 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)
Back to top