Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for gci (0.02 sec)

  1. cluster/gce/gci/node-helper.sh

      metadata+="user-data=${KUBE_ROOT}/cluster/gce/gci/node.yaml,"
      metadata+="configure-sh=${KUBE_ROOT}/cluster/gce/gci/configure.sh,"
      metadata+="cluster-location=${KUBE_TEMP}/cluster-location.txt,"
      metadata+="cluster-name=${KUBE_TEMP}/cluster-name.txt,"
      metadata+="gci-update-strategy=${KUBE_TEMP}/gci-update.txt,"
      metadata+="shutdown-script=${KUBE_ROOT}/cluster/gce/gci/shutdown.sh,"
      metadata+="${NODE_EXTRA_METADATA}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 19:00:22 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. cluster/gce/gci/master-helper.sh

      metadata="${metadata},user-data=${KUBE_ROOT}/cluster/gce/gci/master.yaml"
      metadata="${metadata},configure-sh=${KUBE_ROOT}/cluster/gce/gci/configure.sh"
      metadata="${metadata},cluster-location=${KUBE_TEMP}/cluster-location.txt"
      metadata="${metadata},cluster-name=${KUBE_TEMP}/cluster-name.txt"
      metadata="${metadata},gci-update-strategy=${KUBE_TEMP}/gci-update.txt"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 19:00:22 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  3. cluster/gce/gci/mounter/stage-upload.sh

    MOUNTER_VERSION=$1
    DOCKER_IMAGE=docker://$2
    MOUNTER_ACI_IMAGE=gci-mounter-${MOUNTER_VERSION}.aci
    MOUNTER_GCS_DIR=gs://kubernetes-release/gci-mounter/
    
    TMPDIR=/tmp
    # Setup a working directory
    DOWNLOAD_DIR=$(mktemp --tmpdir=${TMPDIR} -d gci-mounter-build.XXXXXXXXXX)
    
    # Setup a staging directory
    STAGING_DIR=$(mktemp --tmpdir=${TMPDIR} -d gci-mounter-staging.XXXXXXXXXX)
    ACI_DIR=${STAGING_DIR}/gci-mounter
    CWD=${PWD}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 23 18:27:20 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  4. cluster/gce/gci/helper.sh

    # limitations under the License.
    
    # A library of helper functions and constant for GCI distro
    
    # Creates the GCI specific metadata files if they do not exit.
    # Assumed var
    #   KUBE_TEMP
    function ensure-gci-metadata-files {
      if [[ ! -f "${KUBE_TEMP}/gci-update.txt" ]]; then
        echo -n "update_disabled" > "${KUBE_TEMP}/gci-update.txt"
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 19:00:22 UTC 2022
    - 919 bytes
    - Viewed (0)
  5. 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)
  6. cluster/gce/custom

    gci...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 23:36:53 UTC 2018
    - 3 bytes
    - Viewed (0)
  7. cluster/gce/ubuntu

    gci...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 25 23:19:00 UTC 2017
    - 3 bytes
    - Viewed (0)
  8. cluster/gce/cos

    gci...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 22:31:51 UTC 2017
    - 3 bytes
    - Viewed (0)
  9. cluster/gce/gci/mounter/Makefile

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    TAG=v2
    REGISTRY=staging-k8s.gcr.io
    IMAGE=gci-mounter
    
    all: container
    
    container:
    	docker build --pull -t ${REGISTRY}/${IMAGE}:${TAG} .
    
    push:
    	docker push ${REGISTRY}/${IMAGE}:${TAG}
    
    upload:
    	./stage-upload.sh ${TAG} ${REGISTRY}/${IMAGE}:${TAG}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 23 02:28:04 UTC 2019
    - 862 bytes
    - Viewed (0)
  10. 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)
Back to top