Skip to content

Commit 70f73e7

Browse files
Merge pull request #6315 from medyagh/istio_disable
disable istio provisioner by default
2 parents 8e51307 + 577a04b commit 70f73e7

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

deploy/addons/istio/README.md

+11-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
## istio Addon
22
[istio](https://istio.io/docs/setup/getting-started/) - Cloud platforms provide a wealth of benefits for the organizations that use them.
33

4-
### Enabling istio
5-
Propose to startup minikube with at least 8192 MB of memory and 4 CPUs to enable istio.
6-
To enable this addon, simply run:
4+
### Enable istio on minikube
5+
Make sure to start minikube with at least 8192 MB of memory and 4 CPUs.
6+
7+
```shell script
8+
minikube start --memory=8000mb --cpus=4
9+
```
710

11+
To enable this addon, simply run:
812
```shell script
13+
minikube addons enable istio-provisioner
914
minikube addons enable istio
1015
```
1116

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

2025
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.
2126

22-
### Deprecation of istio
27+
### Disable istio
2328
To disable this addon, simply run:
2429
```shell script
30+
minikube addons disable istio-provisioner
2531
minikube addons disable istio
26-
```
32+
```

pkg/minikube/assets/addons.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ var Addons = map[string]*Addon{
195195
"istio-operator.yaml",
196196
"0640",
197197
true),
198-
}, true, "istio-provisioner"),
198+
}, false, "istio-provisioner"),
199199
"istio": NewAddon([]*BinAsset{
200200
MustBinAsset(
201201
"deploy/addons/istio/istio-default-profile.yaml.tmpl",

0 commit comments

Comments
 (0)