Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for Headless (0.15 sec)

  1. pkg/dns/server/name_table_test.go

    						Ips:       []string{"19.6.7.8"},
    						Registry:  "Kubernetes",
    						Shortname: "pod3.headless-svc",
    						Namespace: "testns",
    					},
    					"pod4.headless-svc.testns.svc.cluster.local": {
    						Ips:       []string{"9.16.7.8"},
    						Registry:  "Kubernetes",
    						Shortname: "pod4.headless-svc",
    						Namespace: "testns",
    					},
    					"headless-svc.testns.svc.cluster.local": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 04:26:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/echotest/filters_test.go

    	vm2 = &fakeInstance{Cluster: cls2, Namespace: echo1NS, Service: "vm", DeployAsVM: true}
    	// headless
    	headless1 = &fakeInstance{Cluster: cls1, Namespace: echo1NS, Service: "headless", Headless: true}
    	headless2 = &fakeInstance{Cluster: cls2, Namespace: echo1NS, Service: "headless", Headless: true}
    	// naked pod (uninjected)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/config.go

    	Version string
    
    	// Locality (k8s only) indicates the locality of the deployed app.
    	Locality string
    
    	// Headless (k8s only) indicates that no ClusterIP should be specified.
    	Headless bool
    
    	// StatefulSet indicates that the pod should be backed by a StatefulSet. This implies Headless=true
    	// as well.
    	StatefulSet bool
    
    	// StaticAddress for some echo implementations is an address locally reachable within
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/common/deployment/echos.go

    	}
    
    	headless := echo.Config{
    		Service:         HeadlessSvc,
    		ServiceAccount:  true,
    		Headless:        true,
    		Ports:           ports.Headless(),
    		Subsets:         []echo.SubsetConfig{{}},
    		IncludeExtAuthz: c.IncludeExtAuthz,
    	}
    
    	stateful := echo.Config{
    		Service:         StatefulSetSvc,
    		ServiceAccount:  true,
    		Headless:        true,
    		StatefulSet:     true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. pkg/proxy/servicechangetracker_test.go

    			desc:     "nothing",
    			ipFamily: v1.IPv4Protocol,
    
    			service:  nil,
    			expected: map[ServicePortName]*BaseServicePortInfo{},
    		},
    		{
    			desc:     "headless service",
    			ipFamily: v1.IPv4Protocol,
    
    			service: makeTestService("ns2", "headless", func(svc *v1.Service) {
    				svc.Spec.Type = v1.ServiceTypeClusterIP
    				svc.Spec.ClusterIP = v1.ClusterIPNone
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  6. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/api/standalone/StandaloneAnalysisAPISessionBuilder.kt

    ) {
        init {
            // We depend on swing (indirectly through PSI or something), so we want to declare headless mode,
            // to avoid accidentally starting the UI thread. But, don't set it if it was set externally.
            if (System.getProperty("java.awt.headless") == null) {
                System.setProperty("java.awt.headless", "true")
            }
            setupIdeaStandaloneExecution()
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/calloptions.go

    	// Headless/StatefulSet deployments.
    	NewConnectionPerRequest bool
    
    	// ForceDNSLookup if true, the forwarder will force a DNS lookup for each individual request. This is
    	// useful for any situation where DNS is used for load balancing (e.g. headless). This is ignored if
    	// NewConnectionPerRequest is false or if the deployment is Headless or StatefulSet.
    	ForceDNSLookup bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 13K bytes
    - Viewed (0)
  8. tests/integration/security/reachability_test.go

    					expectMTLS: notNaked,
    					// Since we are doing pass-through, all requests will stay in the same cluster,
    					// as we are bypassing Istio load balancing.
    					// TODO(https://github.com/istio/istio/issues/39700): Why does headless behave differently?
    					expectCrossCluster: and(notFromNaked, or(toHeadless, toStatefulSet)),
    					expectCrossNetwork: never,
    					expectSuccess:      always,
    					minIstioVersion:    integIstioVersion,
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_tls.go

    		cb.applyHBONETransportSocketMatches(c.cluster, tls, istioAutodetectedMtls)
    	} else if c.cluster.GetType() != cluster.Cluster_ORIGINAL_DST {
    		// For headless service, discovery type will be `Cluster_ORIGINAL_DST`
    		// Apply auto mtls to clusters excluding these kind of headless services.
    		if istioAutodetectedMtls {
    			// convert to transport socket matcher if the mode was auto detected
    			transportSocket := c.cluster.TransportSocket
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

            buildFile("""
                def oldValue = System.setProperty("java.awt.headless", "true")
                println("previous value = \$oldValue")
    
                // Attempt to capture the modified property value.
                println("configuration time value=\${System.getProperty("java.awt.headless")}")
    
                tasks.register("printProperty") {
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
Back to top