Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 51 for gci (0.02 sec)

  1. CHANGELOG/CHANGELOG-1.6.md

    * Modify GCI mounter to enable NFSv3 ([#37582](https://github.com/kubernetes/kubernetes/pull/37582), [@jingxu97](https://github.com/jingxu97))
    * Use gsed on the Mac ([#37562](https://github.com/kubernetes/kubernetes/pull/37562), [@roberthbailey](https://github.com/roberthbailey))
    * Bump GCI
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_graceful_termination_test.go

    	klog.InitFlags(nil)
    	os.Exit(m.Run())
    }
    
    // doer sends a request to the server
    type doer func(client *http.Client, gci func(httptrace.GotConnInfo), path string, timeout time.Duration) result
    
    func (d doer) Do(client *http.Client, gci func(httptrace.GotConnInfo), path string, timeout time.Duration) result {
    	return d(client, gci, path, timeout)
    }
    
    type result struct {
    	err      error
    	response *http.Response
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 38.3K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

    fi
    
    # Sets node image based on the specified os distro. Currently this function only
    # supports gci and debian.
    #
    # Requires:
    #   NODE_OS_DISTRIBUTION
    # Sets:
    #   DEFAULT_GCI_PROJECT
    #   NODE_IMAGE
    #   NODE_IMAGE_PROJECT
    function set-linux-node-image() {
      if [[ "${NODE_OS_DISTRIBUTION}" == "gci" ]]; then
        DEFAULT_GCI_PROJECT=google-containers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.2.md

    ### Other notable changes
    
    * Ensure status is not changed during an update of PV, PVC, HPA objects ([#24924](https://github.com/kubernetes/kubernetes/pull/24924), [@mqliang](https://github.com/mqliang))
    * GCI: Add two GCI specific metadata pairs ([#25105](https://github.com/kubernetes/kubernetes/pull/25105), [@andyzheng0831](https://github.com/andyzheng0831))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  5. cluster/gce/upgrade.sh

      echo "  -o:  Use os distro specified in KUBE_NODE_OS_DISTRIBUTION for new nodes. Options include 'debian' or 'gci'"
      echo "  -l:  Use local(dev) binaries. This is only supported for master upgrades."
      echo ""
      echo '  Version number or publication is either a proper version number'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. hack/tools/go.mod

    	github.com/cespare/xxhash/v2 v2.1.2 // indirect
    	github.com/charithe/durationcheck v0.0.10 // indirect
    	github.com/chavacava/garif v0.1.0 // indirect
    	github.com/curioswitch/go-reassign v0.2.0 // indirect
    	github.com/daixiang0/gci v0.12.1 // indirect
    	github.com/davecgh/go-spew v1.1.1 // indirect
    	github.com/denis-tingaikin/go-header v0.4.3 // indirect
    	github.com/dnephin/pflag v1.0.7 // indirect
    	github.com/esimonov/ifshort v1.0.4 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/version_test.go

    		"v1.3.0",
    		"v1.4.0-alpha.0",
    		"v1.4.5",
    		"v1.4.0-beta.0",
    		"v2.0.0",
    		"v1.6.0-alpha.0.536+d60d9f3269288f",
    		"v1.5.0-alpha.0.1078+1044b6822497da-pull",
    		"v1.5.0-alpha.1.822+49b9e32fad9f32-pull-gke-gci",
    		"v1.6.1+coreos.0",
    		"1.7.1",
    	}
    	for _, s := range validVersions {
    		t.Run(s, func(t *testing.T) {
    			ver, err := kubernetesReleaseVersion(s, errorFetcher)
    			t.Log("Valid: ", s, ver, err)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 03:30:51 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-kubeapiserver.sh

          params+=" --authentication-token-webhook-cache-ttl=${GCP_AUTHN_CACHE_TTL}"
        fi
      fi
    
      local authorization_mode="RBAC"
      local -r src_dir="${KUBE_HOME}/kube-manifests/kubernetes/gci-trusty"
    
      # Enable ABAC mode unless the user explicitly opts out with ENABLE_LEGACY_ABAC=false
      if [[ "${ENABLE_LEGACY_ABAC:-}" != "false" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. hack/lib/golang.sh

        cmd/kubelet
        cmd/kubeadm
        cmd/kube-scheduler
        staging/src/k8s.io/component-base/logs/kube-log-runner
        staging/src/k8s.io/kube-aggregator
        staging/src/k8s.io/apiextensions-apiserver
        cluster/gce/gci/mounter
      )
      echo "${targets[@]}"
    }
    
    IFS=" " read -ra KUBE_SERVER_TARGETS <<< "$(kube::golang::server_targets)"
    readonly KUBE_SERVER_TARGETS
    readonly KUBE_SERVER_BINARIES=("${KUBE_SERVER_TARGETS[@]##*/}")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  10. hack/tools/go.sum

    github.com/curioswitch/go-reassign v0.2.0 h1:G9UZyOcpk/d7Gd6mqYgd8XYWFMw/znxwGDUstnC9DIo=
    github.com/curioswitch/go-reassign v0.2.0/go.mod h1:x6OpXuWvgfQaMGks2BZybTngWjT84hqJfKoO8Tt/Roc=
    github.com/daixiang0/gci v0.12.1 h1:ugsG+KRYny1VK4oqrX4Vtj70bo4akYKa0tgT1DXMYiY=
    github.com/daixiang0/gci v0.12.1/go.mod h1:xtHP9N7AHdNvtRNfcx9gwTDfw7FRJx4bZUsiEfiNNAI=
    github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 93.1K bytes
    - Viewed (0)
Back to top