Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for ISTIO_VERSION (0.15 sec)

  1. release/downloadIstioCandidate.sh

        exit 1
        ;;
    esac
    
    if [ "${ISTIO_VERSION}" = "" ] ; then
      printf "Unable to get latest Istio version. Set ISTIO_VERSION env var and re-run. For example: export ISTIO_VERSION=1.0.4"
      exit 1;
    fi
    
    NAME="istio-$ISTIO_VERSION"
    URL="https://github.com/istio/istio/releases/download/${ISTIO_VERSION}/istio-${ISTIO_VERSION}-${OSEXT}.tar.gz"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 14:13:46 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. pkg/istio-agent/testdata/grpc-bootstrap.json

          ]
        }
      ],
      "node": {
        "id": "sidecar~127.0.0.1~pod1.fake-namespace~fake-namespace.svc.cluster.local",
        "metadata": {
          "GENERATOR": "grpc",
          "INSTANCE_IPS": "127.0.0.1",
          "ISTIO_VERSION": "version",
          "PILOT_SAN": [
            "istiod.istio-system.svc"
          ]
        },
        "locality": {},
        "UserAgentVersionType": null
      },
      "certificate_providers": {
        "default": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 957 bytes
    - Viewed (0)
  5. istioctl/pkg/writer/envoy/configdump/testdata/bootstrapdump.json

    {
        "bootstrap": {
            "node": {
                "metadata": {
                        "ISTIO_PROXY_SHA": "istio-proxy:436f365a8007cd8a13a9f1321e7cce94bcc8883e",
                        "ISTIO_VERSION": "1.10.0"
                    },
                "userAgentBuildVersion": {
                    "version": {
                        "majorNumber": 1,
                        "minorNumber": 18,
                        "patch": 3
                    },
                    "metadata": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 05 11:02:00 UTC 2022
    - 739 bytes
    - Viewed (0)
  6. istioctl/pkg/writer/envoy/configdump/testdata/configdump.json

          "bootstrap": {
            "node": {
              "metadata": {
                "ISTIO_PROXY_SHA": "istio-proxy:436f365a8007cd8a13a9f1321e7cce94bcc8883e",
                "ISTIO_VERSION": "1.10.0"
              },
              "userAgentBuildVersion": {
                "version": {
                  "majorNumber": 1,
                  "minorNumber": 18,
                  "patch": 3
                },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 15 05:44:44 UTC 2021
    - 742 bytes
    - Viewed (0)
  7. tools/docker-builder/common.go

    		// Base distribution picks which variant to build
    		"BASE_DISTRIBUTION": baseDist,
    		// Additional metadata injected into some images
    		"proxy_version":    args.ProxyVersion,
    		"ztunnel_version":  args.ZtunnelVersion,
    		"istio_version":    args.IstioVersion,
    		"VM_IMAGE_NAME":    vmImageName(target),
    		"VM_IMAGE_VERSION": vmImageVersion(target),
    	}
    	// Only needed for crane - buildx does it automagically
    	if architecture != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. pkg/bootstrap/testdata/tracing_zipkin_golden.json

        "id": "sidecar~1.2.3.4~foo~bar",
        "cluster": "istio-proxy",
        "locality": {
        },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. pkg/bootstrap/testdata/tracing_none_golden.json

        "id": "sidecar~1.2.3.4~foo~bar",
        "cluster": "istio-proxy",
        "locality": {
        },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. pkg/bootstrap/testdata/default_golden.json

        "id": "sidecar~1.2.3.4~foo~bar",
        "cluster": "istio-proxy",
        "locality": {
        },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top