Skip to content

Commit 90db883

Browse files
committed
(docs): note on minikube profile setting
1 parent 9108aa5 commit 90db883

1 file changed

Lines changed: 9 additions & 6 deletions

File tree

documentation/modules/ROOT/pages/setup.adoc

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -105,16 +105,19 @@ Before installing Knative and its components, we need to add few startup config
105105

106106
[source,bash,subs="+macros,+attributes"]
107107
----
108-
minikube start -p knative --memory=8192 --cpus=4 \#<1>
109-
--kubernetes-version=v1.12.0 \#<2>
110-
--vm-driver=hyperkit \#<3>
108+
minikube profile knative \#<1>
109+
110+
minikube start -p knative --memory=8192 --cpus=4 \#<2>
111+
--kubernetes-version=v1.12.0 \#<3>
112+
--vm-driver=hyperkit \#<4>
111113
--disk-size=50g \
112114
--extra-config=apiserver.enable-admission-plugins="LimitRanger,NamespaceExists,NamespaceLifecycle,ResourceQuota,ServiceAccount,DefaultStorageClass,MutatingAdmissionWebhook"
113115
----
114116

115-
<1> Starting a profile named **knative**
116-
<2> Minimum kubernetes version needs to be >= 1.12.0, refer to issue https://github.com/knative/serving/issues/3067 for more details.
117-
<3> If you are on linux then use `--vm-driver=kvm2`
117+
<1> Setting minikube profile to **knative** so that all future minikube commands are executed with this profile context
118+
<2> Starting a profile named **knative**
119+
<3> Minimum kubernetes version needs to be >= 1.12.0, refer to issue https://github.com/knative/serving/issues/3067 for more details.
120+
<4> If you are on linux then use `--vm-driver=kvm2`
118121

119122
[#install-knative-istio]
120123
==== Install Istio

0 commit comments

Comments
 (0)