You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Istio 1.9.0 was released this week. We should add support for this version in wasme.
Describe the solution you'd like
If the underlying wasm ABI has not changed in the Envoy version being used by istio proxy under the hood, then we just need to update the version check logic (this was the case when adding istio 1.8 support).
If the ABI has changed, we'll need to build a new example filter for istio in each of the 4 supported languages (cpp, assemblyScript, rust and tinyGo), so that wasme init will still work as expected for images targeting istio 1.9.
Describe alternatives you've considered
Users can use the --ignore-version-check flag to bypass the version check when deploying to Istio. Eg: wasme deploy istio webassemblyhub.io/my-username/my-image:v1.0 --id my-filter --ignore-version-check
Note this will only work if the underlying ABI is compatible with the code in the filter.
Additional context
PR to add Istio 1.8 support is here for reference.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Istio 1.9.0 was released this week. We should add support for this version in wasme.
Describe the solution you'd like
If the underlying wasm ABI has not changed in the Envoy version being used by istio proxy under the hood, then we just need to update the version check logic (this was the case when adding istio 1.8 support).
If the ABI has changed, we'll need to build a new example filter for istio in each of the 4 supported languages (cpp, assemblyScript, rust and tinyGo), so that
wasme init
will still work as expected for images targeting istio 1.9.Describe alternatives you've considered
Users can use the
--ignore-version-check
flag to bypass the version check when deploying to Istio. Eg:wasme deploy istio webassemblyhub.io/my-username/my-image:v1.0 --id my-filter --ignore-version-check
Additional context
PR to add Istio 1.8 support is here for reference.
The text was updated successfully, but these errors were encountered: