Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 194 for Headless (0.25 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. tests/integration/security/pass_through_filter_chain_test.go

    						Apply()
    
    					echotest.New(t, apps.Ns1.All.Instances()).
    						WithDefaultFilters(1, 1).
    						FromMatch(match.NotProxylessGRPC).
    						ToMatch(match.And(
    							// TODO(nmittler): Why not headless/multiversion?
    							match.NotHeadless,
    							match.NotMultiVersion,
    							match.NotNaked,
    							match.NotProxylessGRPC)).
    						ConditionallyTo(echotest.NoSelfCalls).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/kube/deployment.go

    			cfg.ServiceLabels = make(map[string]string)
    		}
    		cfg.ServiceLabels[constants.AmbientUseWaypointLabel] = cfg.ServiceWaypointProxy
    	}
    	return map[string]any{
    		"Service":        cfg.Service,
    		"Headless":       cfg.Headless,
    		"ServiceAccount": cfg.ServiceAccount,
    		"ServicePorts":   cfg.Ports.GetServicePorts(),
    		"ServiceLabels":  cfg.ServiceLabels,
    		"IPFamilies":     cfg.IPFamilies,
    		"IPFamilyPolicy": cfg.IPFamilyPolicy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  9. pkg/registry/core/service/storage/storage_test.go

    			svctest.SetIPFamilies(api.IPv6Protocol, api.IPv4Protocol)),
    	}, {
    		name:  "headless",
    		input: svctest.MakeService("foo", svctest.SetHeadless),
    		expect: svctest.MakeService("foo", svctest.SetHeadless,
    			svctest.SetIPFamilyPolicy(api.IPFamilyPolicySingleStack),
    			svctest.SetIPFamilies(api.IPv4Protocol)),
    	}, {
    		name: "headless selectorless",
    		input: svctest.MakeService("foo", svctest.SetHeadless,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/controller.go

    				log.Errorf("proxy is in cluster %v, but controller is for cluster %v", proxy.Metadata.ClusterID, c.Cluster())
    				return nil
    			}
    
    			// 1. find proxy service by label selector, if not any, there may exist headless service without selector
    			// failover to 2
    			allServices := c.services.List(pod.Namespace, klabels.Everything())
    			if services := getPodServices(allServices, pod); len(services) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
Back to top