Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for czf (0.02 sec)

  1. hack/update-vendor-licenses.sh

    (cd "${KUBE_ROOT}" && \
      find vendor third_party -iname 'licen[sc]e*' -o -iname 'notice*' -o -iname 'copying*' | \
      grep -E 'third_party|forked' | \
      xargs tar -czf - | tar -C "${TMP_LICENSES_DIR}" -xzf -)
    
    # Leave things like OWNERS alone.
    rm -f "${LICENSES_DIR}/LICENSE"
    rm -rf "${LICENSES_DIR}/vendor"
    rm -rf "${LICENSES_DIR}/third_party"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:53 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. hack/lib/etcd.sh

        kill "${ETCD_SCRAPE_PID}" &>/dev/null || :
        wait "${ETCD_SCRAPE_PID}" &>/dev/null || :
        kube::etcd::scrape || :
        (
          # shellcheck disable=SC2015
          cd "${ETCD_SCRAPE_DIR}"/.. && \
          tar czf etcd-scrapes.tgz etcd-scrapes && \
          rm -rf etcd-scrapes || :
        )
      fi
      if [[ -n "${ETCD_PID-}" ]]; then
        kill "${ETCD_PID}" &>/dev/null || :
        wait "${ETCD_PID}" &>/dev/null || :
      fi
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. build/lib/release.sh

               -path "${KUBE_ROOT}"/.git\*    -o \
               -path "${KUBE_ROOT}"/.config\* -o \
               -path "${KUBE_ROOT}"/.gsutil\*    \
            \) -prune \
          \) -print0 \
        | "${TAR}" czf "${src_tarball}" --transform "s|${KUBE_ROOT#/*}|kubernetes|" --null -T -
      fi
    }
    
    # Package up all of the cross compiled clients. Over time this should grow into
    # a full SDK
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top