Using Forge with Istio
Forge can automatically produce Istio ready manifests if you have istioctl installed.
You can install Istio by following the instructions here.
Once Istio is installed, you can use the Istio property in
service.yaml
to enable its use:
name: hello-forge # name of the service
istio:
enabled: true # when true, apply istioctl kube-inject to all manifests
includeIPRanges: # optional list of IP ranges in CIDR form to be passed to istioctl kube-inject
- 10.0.0.0/8
- 172.32.0.0/16
...
That's all. Your service is now Istio enabled.
Still have questions? Ask in our Gitter chatroom or file an issue on GitHub.