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
I'm trying to deploy on GKE with istio. The problem occurs specifically because of side-car injection, which isn't unique to istio and is part of Envoy. Because an extra container is injected for traffic proxying, the imageID that the operator gets from the imageID pod ends up being that of the side-car. So the image of the container named 'server' in the final deployment becomes istio/proxyv2@sha..., so the container fails to execute arango commands.
I think I've identified the problem as line 122 in pkg/deployment/images.go:
Thanks a lot for your improvements. We are using an Apache 2 CLA for ArangoDB and its sub-components, which can be found here: https://www.arangodb.com/documents/cla.pdf
I'm trying to deploy on GKE with istio. The problem occurs specifically because of side-car injection, which isn't unique to istio and is part of Envoy. Because an extra container is injected for traffic proxying, the imageID that the operator gets from the imageID pod ends up being that of the side-car. So the image of the container named 'server' in the final deployment becomes istio/proxyv2@sha..., so the container fails to execute arango commands.
I think I've identified the problem as line 122 in pkg/deployment/images.go:
I believe changing this to something like:
should fix this issue.
The text was updated successfully, but these errors were encountered: