Skip to content

Commit

Permalink
istio: Update to release 1.10.3
Browse files Browse the repository at this point in the history
Update Cilium Istio integration to Istio release 1.10.3.

Signed-off-by: Jarno Rajahalme <jarno@isovalent.com>
  • Loading branch information
jrajahalme committed Aug 6, 2021
1 parent f77996c commit 43bb15f
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 9 deletions.
20 changes: 16 additions & 4 deletions Documentation/gettingstarted/istio.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,20 +38,32 @@ Step 2: Install cilium-istioctl

Make sure that Cilium is running in your cluster before proceeding.

Download the `cilium enhanced istioctl version 1.9.6 <https://github.com/cilium/istio/releases/tag/1.9.6>`_:
Download the `cilium enhanced istioctl version 1.10.3 <https://github.com/cilium/istio/releases/tag/1.10.3>`_:

.. tabs::
.. group-tab:: Linux
.. group-tab:: Linux (amd64)

.. code-block:: shell-session
curl -L https://github.com/cilium/istio/releases/download/1.9.6/cilium-istioctl-1.9.6-linux-amd64.tar.gz | tar xz
curl -L https://github.com/cilium/istio/releases/download/1.10.3/cilium-istioctl-1.10.3-linux-amd64.tar.gz | tar xz
.. group-tab:: Linux (arm64)

.. code-block:: shell-session
curl -L https://github.com/cilium/istio/releases/download/1.10.3/cilium-istioctl-1.10.3-linux-arm64.tar.gz | tar xz
.. group-tab:: OSX

.. code-block:: shell-session
curl -L https://github.com/cilium/istio/releases/download/1.9.6/cilium-istioctl-1.9.6-osx.tar.gz | tar xz
curl -L https://github.com/cilium/istio/releases/download/1.10.3/cilium-istioctl-1.10.3-osx.tar.gz | tar xz
.. group-tab:: OSX (Apple Silicon)

.. code-block:: shell-session
curl -L https://github.com/cilium/istio/releases/download/1.10.3/cilium-istioctl-1.10.3-osx-arm64.tar.gz | tar xz
.. note::

Expand Down
11 changes: 6 additions & 5 deletions test/k8sT/istio.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var _ = SkipDescribeIf(helpers.RunsOn54Kernel, "K8sIstioTest", func() {
// installed.
istioSystemNamespace = "istio-system"

istioVersion = "1.9.6"
istioVersion = "1.10.3"

// Modifiers for pre-release testing, normally empty
prerelease = "" // "-beta.1"
Expand All @@ -36,10 +36,10 @@ var _ = SkipDescribeIf(helpers.RunsOn54Kernel, "K8sIstioTest", func() {
// - remind how to test with prerelease images in future
// - cause CI infra to prepull these images so that they do not
// need to be pulled on demand during the test
// " --set values.pilot.image=quay.io/cilium/istio_pilot:1.9.6" + prerelease +
// " --set values.global.proxy.image=quay.io/cilium/istio_proxy:1.9.6" + prerelease +
// " --set values.global.proxy_init.image=quay.io/cilium/istio_proxy:1.9.6" + prerelease +
// " --set values.global.proxy.logLevel=trace"
// " --set values.pilot.image=quay.io/cilium/istio_pilot:1.10.3" + prerelease +
// " --set values.global.proxy.image=quay.io/cilium/istio_proxy:1.10.3" + prerelease +
// " --set values.global.proxy_init.image=quay.io/cilium/istio_proxy:1.10.3" + prerelease +
// " --set values.global.proxy.logLevel=debug" +
// " --set values.global.logging.level=debug"
// " --set values.global.mtls.auto=false"
ciliumOptions = map[string]string{
Expand All @@ -52,6 +52,7 @@ var _ = SkipDescribeIf(helpers.RunsOn54Kernel, "K8sIstioTest", func() {
// Map for tested cilium-istioctl release targets if not GOOS-GOARCH
ciliumIstioctlOSes = map[string]string{
"darwin-amd64": "osx",
"darwin-arm64": "osx-arm64",
}

// istioServiceNames is the set of Istio services needed for the tests
Expand Down

0 comments on commit 43bb15f

Please sign in to comment.