Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ISTIO_VERSION (0.11 sec)

  1. release/downloadIstioCtl.sh

    if [ "${ISTIO_VERSION}" = "" ] ; then
      ISTIO_VERSION="$(curl -sL https://github.com/istio/istio/releases | \
                      grep -o 'releases/[0-9]*.[0-9]*.[0-9]*/' | sort -V | \
                      tail -1 | awk -F'/' '{ print $2}')"
      ISTIO_VERSION="${ISTIO_VERSION##*/}"
    fi
    
    if [ "${ISTIO_VERSION}" = "" ] ; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 14:11:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. pilot/docker/Dockerfile.ztunnel

    # hadolint ignore=DL3006
    FROM ${BASE_DISTRIBUTION:-debug}
    
    WORKDIR /
    
    ARG istio_version
    
    # Install ztunnel.
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/ztunnel /usr/local/bin/ztunnel
    
    # Environment variable indicating the exact build, for debugging
    ENV ISTIO_META_ISTIO_VERSION $istio_version
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 944 bytes
    - Viewed (0)
Back to top