jikunchong commented on issue #750:
URL:
https://github.com/apache/apisix-ingress-controller/issues/750#issuecomment-975198103
没成功,请问除了给空间打 istio-injection=enabled 标签外,还需要做什么?
```shell
sudo kubectl label namespace apisix-system istio-injection=enabled
sudo kubectl label namespace try-apps istio-injection=enabled
sudo kubectl get namespace -L istio-injection
NAME STATUS AGE ISTIO-INJECTION
apisix-system Active 17d enabled
try-apps Active 16d enabled
```
我参考 productpage,手动在 apisix 的 Deployment 加注解,重建 Pod,也没看到 istio-proxy sidecar。
```yaml
metadata:
name: productpage-v1
namespace: apisix-system
# ...
annotations:
# ...
servicemesh.kubesphere.io/enabled: 'true'
spec:
template:
metadata:
annotations:
sidecar.istio.io/inject: 'true'
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]