Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for gci (0.24 sec)

  1. build/dependencies.yaml

          match: sigs.k8s.io/zeitgeist@v.*
    
      # CNI plugins
      - name: "cni"
        version: 1.5.0
        refPaths:
        - path: cluster/gce/config-common.sh
          match: WINDOWS_CNI_VERSION=
        - path: cluster/gce/gci/configure.sh
          match: DEFAULT_CNI_VERSION=
        - path: test/e2e_node/remote/utils.go
          match: cniVersion[\t\n\f\r ]*=
        - path: hack/local-up-cluster.sh
          match: CNI_PLUGINS_VERSION=
    
      # CoreDNS
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. cluster/gce/config-test.sh

    MASTER_OS_DISTRIBUTION=${KUBE_MASTER_OS_DISTRIBUTION:-${KUBE_OS_DISTRIBUTION:-gci}}
    NODE_OS_DISTRIBUTION=${KUBE_NODE_OS_DISTRIBUTION:-${KUBE_OS_DISTRIBUTION:-gci}}
    WINDOWS_NODE_OS_DISTRIBUTION=${WINDOWS_NODE_OS_DISTRIBUTION:-win2019}
    
    if [[ "${MASTER_OS_DISTRIBUTION}" = 'cos' ]]; then
      MASTER_OS_DISTRIBUTION='gci'
    fi
    
    if [[ "${NODE_OS_DISTRIBUTION}" = 'cos' ]]; then
      NODE_OS_DISTRIBUTION='gci'
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure.sh

      fi
      cp "${dst_dir}/kubernetes/gci-trusty/gci-configure-helper.sh" "${KUBE_BIN}/configure-helper.sh"
      cp "${dst_dir}/kubernetes/gci-trusty/configure-kubeapiserver.sh" "${KUBE_BIN}/configure-kubeapiserver.sh"
      if [[ -e "${dst_dir}/kubernetes/gci-trusty/gke-internal-configure-helper.sh" ]]; then
        cp "${dst_dir}/kubernetes/gci-trusty/gke-internal-configure-helper.sh" "${KUBE_BIN}/"
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  4. build/lib/release.sh

      cp "${KUBE_ROOT}/cluster/gce/gci/configure-helper.sh" "${dst_dir}/gci-configure-helper.sh"
      cp "${KUBE_ROOT}/cluster/gce/gci/configure-kubeapiserver.sh" "${dst_dir}/configure-kubeapiserver.sh"
      if [[ -e "${KUBE_ROOT}/cluster/gce/gci/gke-internal-configure-helper.sh" ]]; then
        cp "${KUBE_ROOT}/cluster/gce/gci/gke-internal-configure-helper.sh" "${dst_dir}/"
      fi
      cp "${KUBE_ROOT}/cluster/gce/gci/health-monitor.sh" "${dst_dir}/health-monitor.sh"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  5. hack/make-rules/test-e2e-node.sh

        --no-standard-images --filter="name ~ 'cos-beta.*'" --format="table[no-heading](name)")
        images=${gci_image}
        metadata="user-data<${KUBE_ROOT}/test/e2e_node/jenkins/gci-init.yaml,gci-update-strategy=update_disabled"
      fi
      instance_prefix=${INSTANCE_PREFIX:-"test"}
      cleanup=${CLEANUP:-"true"}
      delete_instances=${DELETE_INSTANCES:-"false"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. common/config/.golangci.yml

        - revive
        - gosimple
        - govet
        - ineffassign
        - lll
        - misspell
        - staticcheck
        - stylecheck
        - typecheck
        - unconvert
        - unparam
        - unused
        - gci
        - gosec
      fast: false
    linters-settings:
      errcheck:
        # report about not checking of errors in type assertions: `a := b.(MyStruct)`;
        # default is false: such cases aren't reported by default.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

      local -r src_dir="${KUBE_HOME}/kube-manifests/kubernetes/gci-trusty"
      local -r dst_dir="/etc/kubernetes/$1/$2"
    
      copy-manifests "${src_dir}/$2" "${dst_dir}"
    }
    
    # A function that downloads extra addons from a URL and puts them in the GCI
    # manifests directory.
    function download-extra-addons {
      local -r out_dir="${KUBE_HOME}/kube-manifests/kubernetes/gci-trusty/gce-extras"
    
      mkdir -p "${out_dir}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. pkg/volume/util/util.go

    		}
    		return true
    	})
    	return fsUser
    }
    
    // HasMountRefs checks if the given mountPath has mountRefs.
    // TODO: this is a workaround for the unmount device issue caused by gci mounter.
    // In GCI cluster, if gci mounter is used for mounting, the container started by mounter
    // script will cause additional mounts created in the container. Since these mounts are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top