Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

disable istio provisioner by default #6272

Closed
wants to merge 14 commits into from
14 changes: 10 additions & 4 deletions deploy/addons/istio/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
## istio Addon
[istio](https://istio.io/docs/setup/getting-started/) - Cloud platforms provide a wealth of benefits for the organizations that use them.

### Enabling istio
Propose to startup minikube with at least 8192 MB of memory and 4 CPUs to enable istio.
To enable this addon, simply run:
### Enable istio on minikube
Make sure to start minikube with at least 8192 MB of memory and 4 CPUs.

```shell script
minikube start --memory=8000mb --cpus=4
```

To enable this addon, simply run:
```shell script
minikube addons enable istio-proviioner
medyagh marked this conversation as resolved.
Show resolved Hide resolved
minikube addons enable istio
```

Expand All @@ -19,8 +24,9 @@ kubectl get po -n istio-system

If everything went well you shouldn't get any errors about istio being installed in your cluster. If you haven't deployed any releases `kubectl get po -n istio-system` won't return anything.

### Deprecation of istio
### Disable istio
To disable this addon, simply run:
```shell script
minikube addons disbale istio-proviioner
medyagh marked this conversation as resolved.
Show resolved Hide resolved
minikube addons disable istio
```
2 changes: 1 addition & 1 deletion pkg/minikube/assets/addons.go
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ var Addons = map[string]*Addon{
"istio-operator.yaml",
"0640",
true),
}, true, "istio-provisioner"),
}, false, "istio-provisioner"),
"istio": NewAddon([]*BinAsset{
MustBinAsset(
"deploy/addons/istio/istio-default-profile.yaml.tmpl",
Expand Down