Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 148 for Headless (0.33 sec)

  1. pilot/pkg/serviceregistry/kube/controller/serviceimportcache_test.go

    	// Create and run the controller.
    	c, ic := newTestServiceImportCache(t)
    
    	ic.createKubeService(t, c)
    	ic.createServiceImport(t, mcsapi.Headless, nil)
    
    	// Verify that we did not generate the synthetic service for the headless service.
    	ic.checkServiceInstances(t)
    }
    
    func TestDeleteImportedService(t *testing.T) {
    	// Create and run the controller.
    	c1, ic := newTestServiceImportCache(t)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  2. pkg/registry/core/service/storage/storage.go

    		return
    	}
    
    	singleStack := api.IPFamilyPolicySingleStack
    	requireDualStack := api.IPFamilyPolicyRequireDualStack
    
    	if service.Spec.ClusterIP == api.ClusterIPNone {
    		// Headless.
    		if len(service.Spec.Selector) == 0 {
    			// Headless + selectorless is a special-case.
    			//
    			// At this stage we don't know what kind of endpoints (specifically
    			// their IPFamilies) the user has assigned to this selectorless
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceregistry_test.go

    		}
    		// headless service update must trigger nds push, so we trigger a full push.
    		if ev := fx.WaitOrFail(t, "xds full"); !ev.Reason.Has(model.HeadlessEndpointUpdate) {
    			t.Fatalf("xds push reason does not contain %v: %v", model.HeadlessEndpointUpdate, ev)
    		}
    
    		// pure HTTP headless services should not need a full push since they do not
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. pkg/controller/endpoint/endpoints_controller_test.go

    			},
    			expectedEndpointFamily: ipv4,
    		},
    		{
    			name:       "v4 headless service, in a single stack cluster",
    			ipFamilies: ipv4only,
    			service: v1.Service{
    				Spec: v1.ServiceSpec{
    					ClusterIP: v1.ClusterIPNone,
    				},
    			},
    			expectedEndpointFamily: ipv4,
    		},
    		{
    			name:       "v4 headless service, in a dual stack cluster",
    			ipFamilies: ipv4ipv6,
    			service: v1.Service{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. pkg/apis/core/helper/helpers_test.go

    		output bool
    		name   string
    	}{
    		{
    			name: "nil cluster ip",
    			input: core.ServiceSpec{
    				ClusterIPs: nil,
    			},
    
    			output: false,
    		},
    		{
    			name: "headless service",
    			input: core.ServiceSpec{
    				ClusterIP:  "None",
    				ClusterIPs: []string{"None"},
    			},
    			output: false,
    		},
    		// true cases
    		{
    			name: "one ipv4",
    			input: core.ServiceSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. pilot/pkg/model/virtualservice_test.go

    		buildHTTPService("test-private-2.com", visibility.Private, "9.9.9.10", "not-default", 60),
    		buildHTTPService("test-headless.com", visibility.Public, wildcardIP, "not-default", 8888),
    		buildHTTPService("test-headless-someother.com", visibility.Public, wildcardIP, "some-other-ns", 8888),
    		buildHTTPService("a.test1.wildcard.com", visibility.Public, wildcardIP, "default", 8888),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  7. tests/integration/pilot/common/routing.go

    					from: vm,
    					to:   t.Apps.A,
    					host: deployment.ASvc,
    				},
    				vmCase{
    					name: "dns: VM to k8s headless service",
    					from: vm,
    					to:   match.Cluster(vm.Config().Cluster.Config()).GetMatches(t.Apps.Headless),
    					host: t.Apps.Headless.Config().ClusterLocalFQDN(),
    				},
    				vmCase{
    					name: "dns: VM to k8s statefulset service",
    					from: vm,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/conversion.go

    		}
    	}
    	if svc.Spec.InternalTrafficPolicy != nil && *svc.Spec.InternalTrafficPolicy == corev1.ServiceInternalTrafficPolicyLocal {
    		nodeLocal = true
    	}
    
    	if svc.Spec.ClusterIP == corev1.ClusterIPNone { // headless services should not be load balanced
    		resolution = model.Passthrough
    	} else if svc.Spec.ClusterIP != "" {
    		addrs[0] = svc.Spec.ClusterIP
    		if len(svc.Spec.ClusterIPs) > 1 {
    			addrs = svc.Spec.ClusterIPs
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/main/resources/fess_config.properties

    app.cipher.key=___change__me___
    app.digest.algorism=sha256
    app.encrypt.property.pattern=.*password|.*key|.*token|.*secret
    
    app.extension.names=
    
    app.audit.log.format=
    
    # JVM options
    jvm.crawler.options=\
    -Djava.awt.headless=true\n\
    -Dfile.encoding=UTF-8\n\
    -Djna.nosys=true\n\
    -Djdk.io.permissionsUseCanonicalPath=true\n\
    -Dhttp.maxConnections=20\n\
    -Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager\n\
    -server\n\
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  10. tests/integration/ambient/main_test.go

    			"istio.io/test-exclude-namespace": "true",
    		},
    	})
    	if err != nil {
    		return err
    	}
    
    	prom, err = prometheus.New(t, prometheus.Config{})
    	if err != nil {
    		return err
    	}
    
    	// Headless services don't work with targetPort, set to same port
    	headlessPorts := make([]echo.Port, len(ports.All()))
    	for i, p := range ports.All() {
    		p.ServicePort = p.WorkloadPort
    		headlessPorts[i] = p
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top