Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for gce (0.05 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/fixture/CrossVersionToolingApiSpecificationRetryTest.groovy

            iteration++
    
            when:
            throwWhen(new GradleConnectionException("Test Exception", new NullPointerException()), iteration == 1)
    
            then:
            GradleConnectionException gce = thrown()
            gce.cause instanceof NullPointerException
        }
    
        @TargetGradleVersion("<3.0")
        def "retries if daemon seems to have disappeared and a daemon that did not do anything is idling (<3.0)"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

      CLOUD_CONFIG_VOLUME=""
      CLOUD_CONFIG_MOUNT=""
      if [[ -f /etc/gce.conf ]]; then
        CLOUD_CONFIG_OPT="--cloud-config=/etc/gce.conf"
        CLOUD_CONFIG_VOLUME="{\"name\": \"cloudconfigmount\",\"hostPath\": {\"path\": \"/etc/gce.conf\", \"type\": \"FileOrCreate\"}},"
        CLOUD_CONFIG_MOUNT="{\"name\": \"cloudconfigmount\",\"mountPath\": \"/etc/gce.conf\", \"readOnly\": true},"
      fi
      DOCKER_REGISTRY="registry.k8s.io"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

            [Net.SecurityProtocolType]::Tls12
        Invoke-WebRequest `
            https://github.com/kubernetes/kubernetes/raw/master/cluster/gce/windows/k8s-node-setup.psm1 `
            -OutFile C:\k8s-node-setup.psm1
        Invoke-WebRequest `
            https://github.com/kubernetes/kubernetes/raw/master/cluster/gce/windows/configure.ps1 `
            -OutFile C:\configure.ps1
        Import-Module -Force C:\k8s-node-setup.psm1  # -Force to override existing
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. cluster/gce/upgrade.sh

    # limitations under the License.
    
    # !!!EXPERIMENTAL !!! Upgrade script for GCE. Expect this to get
    # rewritten in Go in relatively short order, but it allows us to start
    # testing the concepts.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    if [[ "${KUBERNETES_PROVIDER:-gce}" != "gce" ]]; then
      echo "!!! ${1} only works on GCE" >&2
      exit 1
    fi
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. pkg/security/security.go

    	RootCertReqResourceName = "ROOTCA"
    
    	// WorkloadKeyCertResourceName is the resource name of the discovery request for workload
    	// identity.
    	WorkloadKeyCertResourceName = "default"
    
    	// GCE is Credential fetcher type of Google plugin
    	GCE = "GoogleComputeEngine"
    
    	// JWT is a Credential fetcher type that reads from a JWT token file
    	JWT = "JWT"
    
    	// Mock is Credential fetcher type of mock plugin
    	Mock = "Mock" // testing only
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    source "${KUBE_ROOT}/cluster/gce/${KUBE_CONFIG_FILE-"config-default.sh"}"
    source "${KUBE_ROOT}/cluster/common.sh"
    source "${KUBE_ROOT}/hack/lib/util.sh"
    
    if [[ "${NODE_OS_DISTRIBUTION}" == "gci" || "${NODE_OS_DISTRIBUTION}" == "ubuntu" || "${NODE_OS_DISTRIBUTION}" == "custom" ]]; then
      source "${KUBE_ROOT}/cluster/gce/${NODE_OS_DISTRIBUTION}/node-helper.sh"
    else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. pkg/features/kube_features.go

    	//
    	// Disables the Azure File in-tree driver.
    	InTreePluginAzureFileUnregister featuregate.Feature = "InTreePluginAzureFileUnregister"
    
    	// owner: @Jiawei0227
    	// alpha: v1.21
    	//
    	// Disables the GCE PD in-tree driver.
    	InTreePluginGCEUnregister featuregate.Feature = "InTreePluginGCEUnregister"
    
    	// owner: @adisky
    	// alpha: v1.21
    	//
    	// Disables the OpenStack Cinder in-tree driver.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods.go

    	)
    
    	// Get all service resources from the master (via a cache),
    	// and populate them into service environment variables.
    	if kl.serviceLister == nil {
    		// Kubelets without masters (e.g. plain GCE ContainerVM) don't set env vars.
    		return m, nil
    	}
    	services, err := kl.serviceLister.List(labels.Everything())
    	if err != nil {
    		return m, fmt.Errorf("failed to list services when setting up env vars")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.29.md

    - `ValidatingAdmissionPolicy` now preserves types of composition variables, and raises type-related errors early. ([#121001](https://github.com/kubernetes/kubernetes/pull/121001), [@jiahuif](https://github.com/jiahuif))
    - `cluster/gce`: added webhook to replace `PersistentVolumeLabel` admission controller. ([#121628](https://github.com/kubernetes/kubernetes/pull/121628), [@andrewsykim](https://github.com/andrewsykim))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.27.md

    - Forbid to set matchLabelKeys when labelSelector is not set in topologySpreadConstraints ([#116535](https://github.com/kubernetes/kubernetes/pull/116535), [@denkensk](https://github.com/denkensk))
    - GCE does not support LoadBalancer Services with ports with different protocols (TCP and UDP) ([#115966](https://github.com/kubernetes/kubernetes/pull/115966), [@aojea](https://github.com/aojea)) [SIG Apps and Cloud Provider]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top