9.4 KiB
title | description | weight | keywords | ||
---|---|---|---|---|---|
Upgrading Istio | Demonstrates how to upgrade the Istio control plane and data plane independently. | 70 |
|
This page describes how to upgrade an existing Istio deployment (including both control plane and sidecar proxy) to a new release of Istio. The upgrade process may install new binaries and may change configuration and API schemas. The upgrade process may result in service downtime. To minimize downtime, please ensure your Istio control plane components and your applications are highly available with multiple replicas.
In the following steps, we assume that the Istio components are installed and upgraded in the istio-system
namespace.
Upgrade steps
-
Download the new Istio release and change directory to the new release directory.
-
Upgrade Istio's Custom Resource Definitions via
kubectl apply
, and wait a few seconds for the CRDs to be committed in the kube-apiserver:
{{< text bash >}} $ kubectl apply -f install/kubernetes/helm/istio/templates/crds.yaml -n istio-system {{< /text >}}
Control plane upgrade
The Istio control plane components include: Citadel, Ingress gateway, Egress gateway, Pilot, Policy, Telemetry and Sidecar injector.
Helm upgrade
If you installed Istio with Helm the preferred upgrade option is to let Helm take care of the upgrade:
{{< text bash >}} $ helm upgrade istio install/kubernetes/helm/istio --namespace istio-system {{< /text >}}
Kubernetes rolling update
You can also use Kubernetes’ rolling update mechanism to upgrade the control plane components. This is suitable for cases when Istio hasn't been installed using Helm.
First, generate the desired Istio control plane yaml file, e.g.
{{< text bash >}}
$ helm template install/kubernetes/helm/istio --name istio
--namespace istio-system > install/kubernetes/istio.yaml
{{< /text >}}
or
{{< text bash >}}
$ helm template install/kubernetes/helm/istio --name istio
--namespace istio-system --set global.mtls.enabled=true > install/kubernetes/istio-auth.yaml
{{< /text >}}
If using Kubernetes versions prior to 1.9, you should add --set sidecarInjectorWebhook.enabled=false
.
Second, simply apply the new version of the desired Istio control plane yaml file directly, e.g.
{{< text bash >}} $ kubectl apply -f install/kubernetes/istio.yaml {{< /text >}}
or
{{< text bash >}} $ kubectl apply -f install/kubernetes/istio-auth.yaml {{< /text >}}
The rolling update process will upgrade all deployments and configmaps to the new version. After this process finishes, your Istio control plane should be updated to the new version. Your existing application should continue to work without any change, using the Envoy v1 proxy and the v1alpha1 route rules. If there is any critical issue with the new control plane, you can rollback the changes by applying the yaml files from the old version.
Sidecar upgrade
After the control plane upgrade, the applications already running Istio will still be using an older sidecar. To upgrade the sidecar, you will need to re-inject it.
If you're using automatic sidecar injection, you can upgrade the sidecar by doing a rolling update for all the pods, so that the new version of the sidecar will be automatically re-injected. There are some tricks to reload all pods. E.g. There is a bash script which triggers the rolling update by patching the grace termination period.
If you're using manual injection, you can upgrade the sidecar by executing:
{{< text bash >}} $ kubectl replace -f <(istioctl kube-inject -f $ORIGINAL_DEPLOYMENT_YAML) {{< /text >}}
If the sidecar was previously injected with some customized inject configuration files, you will need to change the version tag in the configuration files to the new version and re-inject the sidecar as follows:
{{< text bash >}}
$ kubectl replace -f <(istioctl kube-inject
--injectConfigFile inject-config.yaml
--filename $ORIGINAL_DEPLOYMENT_YAML)
{{< /text >}}
Migrating to the new networking APIs
Once you've upgraded the control plane and sidecar, you can gradually update your deployment to use the new Envoy sidecar. You can do this by using one of the options below:
-
Add the following to your pod annotation for your deployment:
{{< text yaml >}} kind: Deployment ... spec: template: metadata: annotations: sidecar.istio.io/proxyImage: docker.io/istio/proxyv2:0.8.0 {{< /text >}}
Then replace your deployment with your updated application yaml file:
{{< text bash >}} $ kubectl replace -f $UPDATED_DEPLOYMENT_YAML {{< /text >}}
or
-
Use an
injectConfigFile
that hasdocker.io/istio/proxyv2:0.8.0
as the proxy image. If you don't have aninjectConfigFile
, you can generate one.injectConfigFile
is recommended if you need to add thesidecar.istio.io/proxyImage
annotations in multiple deployment definitions.{{< text bash >}} $ kubectl replace -f <(istioctl kube-inject --injectConfigFile inject-config.yaml -f $ORIGINAL_DEPLOYMENT_YAML) {{< /text >}}
Next, use istioctl experimental convert-networking-config
to convert your existing ingress or route rules:
-
If your yaml file contains more than the ingress definition such as deployment or service definition, move the ingress definition out to a separate yaml file for the
istioctl experimental convert-networking-config
tool to process. -
Execute the following to generate the new network configuration file, where replacing FILE*.yaml with your ingress file or deprecated route rule files. Tip: Make sure to feed all the files using
-f
for one or more deployments.{{< text bash >}} $ istioctl experimental convert-networking-configuration-f FILE1.yaml -f FILE2.yaml -f FILE3.yaml > UPDATED_NETWORK_CONFIG.yaml {{< /text >}}
-
Edit
UPDATED_NETWORK_CONFIG.yaml
to update all namespace references to your desired namespace. There is a known issue with theconvert-networking-config
tool where theistio-system
namespace is used incorrectly. Further, ensure thehosts
value is correct. -
Deploy the updated network configuration file:
{{< text bash >}} $ kubectl replace -f UPDATED_NETWORK_CONFIG.yaml {{< /text >}}
When all your applications have been migrated and tested, you can repeat the Istio upgrade process, removing the
--set global.proxy.image=proxy
option. This will set the default proxy to docker.io/istio/proxyv2
for all
sidecars injected in the future.
Migrating per-service mutual TLS enablement via annotations to authentication policy
If you use service annotations to override global mutual TLS enablement for a service, you need to replace it with authentication policy and destination rules.
For example, if you install Istio with mutual TLS enabled, and disable it for service foo
using a service annotation like below:
{{< text yaml >}} kind: Service metadata: name: foo namespace: bar annotations: auth.istio.io/8000: NONE {{< /text >}}
You need to replace this with this authentication policy and destination rule (deleting the old annotation is optional)
{{< text yaml >}} apiVersion: "authentication.istio.io/v1alpha1" kind: "Policy" metadata: name: "disable-mTLS-foo" namespace: bar spec: targets:
- name: foo
ports:
- number: 8000 peers:
apiVersion: "networking.istio.io/v1alpha3" kind: "DestinationRule" metadata: name: "disable-mTLS-foo" namespace: "bar" spec: host: "foo" trafficPolicy: tls: mode: ISTIO_MUTUAL portLevelSettings: - port: number: 8000 tls: mode: DISABLE {{< /text >}}
If you already have destination rules for foo
, you must edit that rule instead of creating a new one.
When create a new destination rule, make sure to include other settings, i.e load balancer
, connection pool
and outlier detection
if necessary.
Finally, If foo
doesn't have sidecar, you can skip authentication policy, but still need to add destination rule.
If 8000 is the only port that service foo
provides (or you want to disable mutual TLS for all ports), the policies can be simplified as:
{{< text yaml >}} apiVersion: "authentication.istio.io/v1alpha1" kind: "Policy" metadata: name: "disable-mTLS-foo" namespace: bar spec: targets: - name: foo peers:
apiVersion: "networking.istio.io/v1alpha3" kind: "DestinationRule" metadata: name: "disable-mTLS-foo" namespace: "bar" spec: host: "foo" trafficPolicy: tls: mode: DISABLE {{< /text >}}
Migrating the mtls_excluded_services
configuration to destination rules
If you installed Istio with mutual TLS enabled, and used the mesh configuration option mtls_excluded_services
to
disable mutual TLS when connecting to these services (e.g Kubernetes API server), you need to replace this by adding a destination rule. For example:
{{< text yaml >}} apiVersion: networking.istio.io/v1alpha3 kind: DestinationRule metadata: name: "kubernetes-master" namespace: "default" spec: host: "kubernetes.default.svc.cluster.local" trafficPolicy: tls: mode: DISABLE {{< /text >}}