DocsEdge Stack3.0Upgrade Ambassador Edge Stack 2.3.Z to Ambassador Edge Stack 3.0.0 (YAML)
Upgrade Ambassador Edge Stack 2.3.Z to Ambassador Edge Stack 3.0.0 (YAML)
Since Ambassador Edge Stack's configuration is entirely stored in Kubernetes resources, upgrading between versions is straightforward.
Ambassador Edge Stack 3 is functionally compatible with Ambassador Edge Stack 2.x, but with any major upgrade there are some changes to consider. Such as, Envoy removing support for V2 Transport Protocol features. Below we will outline some of these changes and things to consider when upgrading.
Resources to check before migrating to 3.0.0.
Ambassador Edge Stack 3.0 has been upgraded from Envoy 1.17.X to Envoy 1.22 which removed support for the Envoy V2 Transport Protocol. This means all AuthService
, RatelimitService
, LogServices
, and External Filters
must be updated to use the V3 Protocol. Additionally support for some of the runtime bootstrap flags has been removed.
You can refer to the Major changes in Ambassador Edge Stack 3.x guide for an overview of the changes.
Check Transport Protocol usage on all resources before migrating.
The
AuthService
,RatelimitService
,LogServices
, and ExternalFilters
that use thegrpc
protocol will now need to explicilty setprotocol_version: "v3"
. If not set or set tov2
then an error will be posted and a static response will be returned.protocol_version
should be updated tov3
for all of the above resources while still running Ambassador Edge Stack 2.3.2. As of version2.3.z
+, support forprotocol_version
v2
andv3
is supported in order to allow migration fromprotocol_version
v2
tov3
before upgrading to Ambassador Edge Stack 3.0.0 where support forv2
is removed.Upgrading any application code for your own implementations of these services is very straightforward.
The following imports simply need to be updated to switch from Envoy's Transport Protocol
v2
tov3
, and then the configuration for these resources can be updated to add theprotocl_version: "v3"
when the updated service is deployed.v2
Imports:v3
Imports:Check removed runtime changes
Install new CRDs.
After reviewing the changes in 3.x and confirming that you are ready to upgrade, the process is the same as upgrading minor versions in previous version of Ambassador Edge Stack and does not require the complex migration steps that the migration from 1.x tto 2.x required.
Before installing Ambassador Edge Stack 3.0.0 itself, you need to update the CRDs in your cluster. This is mandatory during any upgrade of Ambassador Edge Stack.
Install Ambassador Edge Stack 3.0.0.
After installing the new CRDs, upgrade Ambassador Edge Stack 3.0.0: