From 3e6166b56563b8cb48f65f9e9718eba47342f901 Mon Sep 17 00:00:00 2001 From: steveperry-53 Date: Wed, 1 Nov 2017 14:54:25 -0700 Subject: [PATCH] Add version to prerequisites. --- _includes/task-tutorial-prereqs.md | 10 +++++++++- .../run-stateless-application-deployment.md | 1 + 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/_includes/task-tutorial-prereqs.md b/_includes/task-tutorial-prereqs.md index 6f1407fe45..f0868fb00a 100644 --- a/_includes/task-tutorial-prereqs.md +++ b/_includes/task-tutorial-prereqs.md @@ -1,8 +1,16 @@ You need to have a Kubernetes cluster, and the kubectl command-line tool must -be configured to communicate with your cluster. If you do not already have a +be configured to communicate with your cluster. + +If you do not already have a cluster, you can create one by using [Minikube](/docs/getting-started-guides/minikube), or you can use one of these Kubernetes playgrounds: * [Katacoda](https://www.katacoda.com/courses/kubernetes/playground) * [Play with Kubernetes](http://labs.play-with-k8s.com/) + +{% if page.min-kubernetes-server-version == page.version %} +Your Kubernetes server must be version {{page.min-kubernetes-server-version}}. +{% else %} +Your Kubernetes server must be version {{page.min-kubernetes-server-version}} or later. +{% endif %} To check the version, enter `kubectl version`. diff --git a/docs/tasks/run-application/run-stateless-application-deployment.md b/docs/tasks/run-application/run-stateless-application-deployment.md index 6ed87ff499..8b4a110160 100644 --- a/docs/tasks/run-application/run-stateless-application-deployment.md +++ b/docs/tasks/run-application/run-stateless-application-deployment.md @@ -1,5 +1,6 @@ --- title: Run a Stateless Application Using a Deployment +min-kubernetes-server-version: v1.8 --- {% capture overview %}