Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for BASE_VERSION (0.37 sec)

  1. operator/docker/Dockerfile.operator

    # Version is the base image version from the TLD Makefile
    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    # The following section is used as base image if BASE_DISTRIBUTION=debug
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION} as debug
    
    # The following section is used as base image if BASE_DISTRIBUTION=distroless
    FROM ${ISTIO_BASE_REGISTRY}/distroless:${BASE_VERSION} as distroless
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 19 15:53:08 UTC 2022
    - 900 bytes
    - Viewed (0)
  2. pilot/docker/Dockerfile.ztunnel

    # Version is the base image version from the TLD Makefile
    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    # The following section is used as base image if BASE_DISTRIBUTION=debug
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION} as debug
    
    # The following section is used as base image if BASE_DISTRIBUTION=distroless
    FROM ${ISTIO_BASE_REGISTRY}/iptables:${BASE_VERSION} as distroless
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 944 bytes
    - Viewed (0)
  3. pilot/docker/Dockerfile.proxyv2

    # Version is the base image version from the TLD Makefile
    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    # The following section is used as base image if BASE_DISTRIBUTION=debug
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION} as debug
    
    # The following section is used as base image if BASE_DISTRIBUTION=distroless
    FROM ${ISTIO_BASE_REGISTRY}/iptables:${BASE_VERSION} as distroless
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. istioctl/docker/Dockerfile.istioctl

    # Version is the base image version from the TLD Makefile
    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION}
    USER 1000:1000
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/istioctl /usr/local/bin/istioctl
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 19 15:53:08 UTC 2022
    - 305 bytes
    - Viewed (0)
  5. pilot/docker/Dockerfile.pilot

    # Version is the base image version from the TLD Makefile
    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    # The following section is used as base image if BASE_DISTRIBUTION=debug
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION} as debug
    
    # The following section is used as base image if BASE_DISTRIBUTION=distroless
    FROM ${ISTIO_BASE_REGISTRY}/distroless:${BASE_VERSION} as distroless
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 19 15:53:08 UTC 2022
    - 1K bytes
    - Viewed (0)
  6. pkg/test/echo/docker/Dockerfile.app_sidecar_centos_8

    ARG BASE_VERSION=latest
    ARG VM_IMAGE_NAME=rockylinux
    ARG VM_IMAGE_VERSION=9
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    FROM ${ISTIO_BASE_REGISTRY}/app_sidecar_base_${VM_IMAGE_NAME}_${VM_IMAGE_VERSION}:${BASE_VERSION}
    
    # Install the certs.
    COPY certs/                           /var/lib/istio/
    COPY certs/default/                   /var/run/secrets/istio/
    
    # Install the sidecar components
    COPY istio-sidecar.rpm  /tmp/istio-sidecar.rpm
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 22:55:51 UTC 2024
    - 839 bytes
    - Viewed (0)
  7. cni/deployments/kubernetes/Dockerfile.install-cni

    # Version is the base image version from the TLD Makefile
    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    # The following section is used as base image if BASE_DISTRIBUTION=debug
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION} as debug
    
    # The following section is used as base image if BASE_DISTRIBUTION=distroless
    FROM ${ISTIO_BASE_REGISTRY}/iptables:${BASE_VERSION} as distroless
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 1002 bytes
    - Viewed (0)
  8. samples/extauthz/docker/Dockerfile

    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION}
    
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/extauthz /usr/local/bin/extauthz
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 19 15:53:08 UTC 2022
    - 234 bytes
    - Viewed (0)
  9. pkg/test/echo/docker/Dockerfile.app

    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION}
    
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/client /usr/local/bin/client
    COPY ${TARGETARCH:-amd64}/server /usr/local/bin/server
    COPY certs/cert.crt /cert.crt
    COPY certs/cert.key /cert.key
    
    # Add a user that will run the application. This allows running as this user and capture iptables
    RUN useradd -m --uid 1338 application
    USER 1338
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 490 bytes
    - Viewed (0)
  10. pkg/test/echo/docker/Dockerfile.app_sidecar

    ARG VM_IMAGE_NAME=ubuntu
    ARG VM_IMAGE_VERSION=jammy
    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    FROM ${ISTIO_BASE_REGISTRY}/app_sidecar_base_${VM_IMAGE_NAME}_${VM_IMAGE_VERSION}:${BASE_VERSION}
    
    # Install the certs.
    COPY certs/                           /var/lib/istio/
    COPY certs/default/                   /var/run/secrets/istio/
    
    # Install the sidecar components
    ARG TARGETARCH
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 19 15:53:08 UTC 2022
    - 860 bytes
    - Viewed (0)
Back to top