Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 199 for serviceIP (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/documentation/docs/src/snippets/java/incrementalAnnotationProcessing/groovy/user/src/main/java/Service1.java

    @Service
    public class Service1 {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 36 bytes
    - Viewed (0)
  9. pkg/proxy/config/config_test.go

    	}
    	fakeWatch.Add(service2)
    	services := []*v1.Service{service2, service1}
    	handler.ValidateServices(t, services)
    
    	fakeWatch.Delete(service1)
    	services = []*v1.Service{service2}
    	handler.ValidateServices(t, services)
    }
    
    func TestNewServicesMultipleHandlersAddedAndNotified(t *testing.T) {
    	_, ctx := klogtesting.NewTestContext(t)
    	client := fake.NewSimpleClientset()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/java/incrementalAnnotationProcessing/groovy/user/src/main/java/Service2.java

    @Service
    public class Service2 {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 36 bytes
    - Viewed (0)
Back to top