Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 282 for serviceIP (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/addresses_test.go

    			ServerAddress: "ExternalAddress",
    		},
    	}
    	internalAddressCIDRMap := []metav1.ServerAddressByClientCIDR{
    		publicAddressCIDRMap[0],
    		{
    			ClientCIDR:    "10.0.0.0/24",
    			ServerAddress: "serviceIP",
    		},
    	}
    	internalIP := "10.0.0.1"
    	publicIP := "1.1.1.1"
    	testCases := []struct {
    		Request     http.Request
    		ExpectedMap []metav1.ServerAddressByClientCIDR
    	}{
    		{
    			Request:     http.Request{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 20 08:42:09 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/ingress/status_test.go

    )
    
    var (
    	serviceIP = "1.2.3.4"
    	hostname  = "foo.bar.com"
    	nodeIP    = "10.0.0.2"
    )
    
    var ingressService = &corev1.Service{
    	ObjectMeta: metav1.ObjectMeta{
    		Name:      "istio-ingress",
    		Namespace: IngressNamespace,
    	},
    	Status: corev1.ServiceStatus{
    		LoadBalancer: corev1.LoadBalancerStatus{
    			Ingress: []corev1.LoadBalancerIngress{{
    				IP: serviceIP,
    			}},
    		},
    	},
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. pkg/controlplane/controller/kubernetesservice/controller.go

    	}
    	return err
    }
    
    // getMasterServiceUpdateIfNeeded sets service attributes for the given apiserver service.
    func getMasterServiceUpdateIfNeeded(svc *corev1.Service, servicePorts []corev1.ServicePort, serviceType corev1.ServiceType) (s *corev1.Service, updated bool) {
    	// Determine if the service is in the format we expect
    	// (servicePorts are present and service type matches)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 16:33:01 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  4. pkg/controlplane/instance.go

    	// Values to build the IP addresses used by discovery
    	// The range of IPs to be assigned to services with type=ClusterIP or greater
    	ServiceIPRange net.IPNet
    	// The IP address for the GenericAPIServer service (must be inside ServiceIPRange)
    	APIServerServiceIP net.IP
    
    	// dual stack services, the range represents an alternative IP range for service IP
    	// must be of different family than primary (ServiceIPRange)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/service-no-port-name-system-namespace.yaml

    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: my-service2 # Skipped because it has an istio: label
      namespace: istio-system
      labels:
        istio: xxx
    spec:
      selector:
        app: my-service2
      ports:
        - name: foo
          protocol: TCP
          port: 8080
          targetPort: 8080
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: my-service3 # Skipped because it's in a kube system namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  6. pkg/registry/core/service/storage/alloc.go

    		// the validation allows it
    		if len(service.Spec.IPFamilies) < 2 {
    			if *(service.Spec.IPFamilyPolicy) != api.IPFamilyPolicySingleStack {
    				// add the alt ipfamily
    				if service.Spec.IPFamilies[0] == api.IPv4Protocol {
    					service.Spec.IPFamilies = append(service.Spec.IPFamilies, api.IPv6Protocol)
    				} else {
    					service.Spec.IPFamilies = append(service.Spec.IPFamilies, api.IPv4Protocol)
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 37.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            final TestService service
    
            ServiceWithDependency(TestService service) {
                this.service = service
            }
        }
    
        private static class ServiceWithMultipleDependencies {
            final List<TestService> services
    
            ServiceWithMultipleDependencies(List<TestService> services) {
                this.services = services
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  8. pilot/pkg/model/sidecar_test.go

    			if sidecarConfig == nil {
    				services := sidecarScope.EgressListeners[0].services
    				if !reflect.DeepEqual(services, sidecarScope.services) {
    					t.Errorf("services in default egress listener not equals sidecar scope services: %v",
    						cmp.Diff(services, sidecarScope.services, cmpopts.IgnoreFields(AddressMap{}, "mutex")))
    				}
    			}
    
    			for _, s1 := range sidecarScope.services {
    				serviceFound = false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_server_journal_test.go

    		{name: "dot service", services: []string{service3}},
    		{name: "underscore service", services: []string{service4}},
    		{name: "at service", services: []string{service5}},
    		{name: "colon service", services: []string{service6}},
    		{name: "invalid service new line", services: []string{invalid1}, wantErr: true},
    		{name: "invalid service with dot", services: []string{invalid2}, wantErr: true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 10 22:27:44 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. tests/testdata/bootstrap_tmpl.json

               }]
             },
            "http2_protocol_options": {}
          },
          {
          "name": "service1",
          "type": "STRICT_DNS",
          "connect_timeout": {
            "seconds": 5,
            "nanos": 0
          },
          "lb_policy": "ROUND_ROBIN",
          "load_assignment": {
            "cluster_name": "service1",
            "endpoints": [{
              "lb_endpoints": [{
                "endpoint": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 02:10:15 UTC 2021
    - 9.5K bytes
    - Viewed (0)
Back to top