Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 181 for Headless (0.14 sec)

  1. pkg/config/analysis/analyzers/testdata/multicluster/inconsistent-service-1.yaml

      namespace: my-namespace
    spec:
      selector:
        app: my-service
      ports:
      - name: tcp-foo
        protocol: TCP
        port: 8080
        targetPort: 8080
    ---
    # Service is mixed mode(clusterIP and headless), should generate warning.
    apiVersion: v1
    kind: Service
    metadata:
      name: mixed-mode
      namespace: my-namespace
    spec:
      clusterIP: 1.2.3.4
      selector:
        app: my-service
      ports:
      - name: tcp-foo
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/instance.go

    )
    
    // Instance is a component that provides access to a deployed echo service.
    type Instance interface {
    	Caller
    	Target
    	resource.Resource
    
    	// Address of the service (e.g. Kubernetes cluster IP). May be "" if headless.
    	Address() string
    
    	// Addresses of service in dualmode
    	Addresses() []string
    
    	// Restart restarts the workloads associated with this echo instance
    	Restart() error
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 11 03:58:03 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/multicluster/inconsistent-service-2.yaml

    spec:
      type: LoadBalancer
      selector:
        app: my-service
      ports:
      - name: tcp-foo
        protocol: TCP
        port: 8080
        targetPort: 8080
    ---
    # Service is mixed mode(clusterIP and headless), should generate warning.
    apiVersion: v1
    kind: Service
    metadata:
      name: mixed-mode
      namespace: my-namespace
    spec:
      clusterIP: None
      selector:
        app: my-service
      ports:
      - name: tcp-foo
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. Jenkinsfile.s390x

                try {
                    withEnv(["JAVA_HOME=${ tool "$jdkName" }",
                             "PATH+MAVEN=${ tool "$jdkName" }/bin:${tool "$mvnName"}/bin",
                             "MAVEN_OPTS=-Xms2g -Xmx4g -Djava.awt.headless=true"]) {                   
                        sh "mvn clean ${MAVEN_GOAL} -B -U -e -fae -V -Dmaven.test.failure.ignore -PversionlessMavenDist -Dmaven.repo.local=${WORK_DIR}/.repository"
                    }
                } finally {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. 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)
  6. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/ide/AndroidStudioSystemProperties.kt

            val systemProperties = mutableListOf<String>()
    
            systemProperties.add(getStudioHome())
    
            if (runAndroidStudioInHeadlessMode) {
                systemProperties.add("-Dstudio.tests.headless=true")
            }
            if (androidStudioJvmArgs.isNotEmpty()) {
                systemProperties.add("-DstudioJvmArgs=${androidStudioJvmArgs.joinToString(separator = ",")}")
            }
            return systemProperties
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 20 09:51:32 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. 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)
  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/serviceregistry/kube/controller/endpointslice.go

    	esLabels := ep.GetLabels()
    	if !endpointSliceSelector.Matches(klabels.Set(esLabels)) {
    		return
    	}
    	// Update internal endpoint cache no matter what kind of service, even headless service.
    	// As for gateways, the cluster discovery type is `EDS` for headless service.
    	namespacedName := getServiceNamespacedName(ep)
    	log.Debugf("Handle EDS endpoint %s %s in namespace %s", namespacedName.Name, event, namespacedName.Namespace)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K 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