Skip to content

Commit 19b2494

Browse files
committed
docs: Updating minimum Kubernetes version
Also minor update to the eventing docs for watching logs Fixes #30
1 parent a483dd8 commit 19b2494

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

documentation/modules/ROOT/pages/05eventing/eventing-src-sub.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,8 @@ kubectl apply -n knativetutorial -f service.yaml
323323
oc apply -n knativetutorial -f service.yaml
324324
----
325325

326+
You can xref:05eventing/eventing.adoc#eventing-watch-logs[watch logs] to see the cron job source sending an event every 1 minute.
327+
326328
[#eventing-cleanup]
327329
== Cleanup
328330

documentation/modules/ROOT/pages/05eventing/eventing-src-svc.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ kubectl apply -n knativetutorial -f service.yaml
178178
oc apply -n knativetutorial -f service.yaml
179179
----
180180

181-
You can xref:05eventing/eventing.adoc#eventing-watch-logs[watch logs] to see the cron job source sending event every 1 minute.
181+
You can xref:05eventing/eventing.adoc#eventing-watch-logs[watch logs] to see the cron job source sending an event every 1 minute.
182182

183183
[#eventing-see-what-you-have-deployed]
184184
=== See what you have deployed

documentation/modules/ROOT/pages/_partials/prereq-cli.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ eval $(minishift docker-env) && eval $(minishift oc-env)
1919
2020
[source,bash]
2121
----
22-
# kubernetes v1.11+
22+
# kubernetes v1.12+
2323
kubectl version
2424
----
2525

documentation/modules/ROOT/pages/setup.adoc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,13 +106,15 @@ Before installing Knative and its components, we need to add few startup config
106106
[source,bash,subs="+macros,+attributes"]
107107
----
108108
minikube start -p knative --memory=8192 --cpus=4 \#<1>
109-
--vm-driver=hyperkit \#<2>
109+
--kubernetes-version=v1.12.0 \#<2>
110+
--vm-driver=hyperkit \#<3>
110111
--disk-size=50g \
111112
--extra-config=apiserver.enable-admission-plugins="LimitRanger,NamespaceExists,NamespaceLifecycle,ResourceQuota,ServiceAccount,DefaultStorageClass,MutatingAdmissionWebhook"
112113
----
113114

114115
<1> Starting a profile named **knative**
115-
<2> If you are on linux then use `--vm-driver=kvm2`
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`
116118

117119
[#install-knative-istio]
118120
==== Install Istio

0 commit comments

Comments
 (0)