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

Indicate minimum cluster version is now 1.15 🚓 #2052

Merged
merged 1 commit into from
Feb 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ configuring Kubernetes resources.
Docker for Desktop using an edge version has been proven to work for both
developing and running Pipelines. The recommended configuration is:

- Kubernetes version 1.11 or later
- Kubernetes version 1.15 or later
- 4 vCPU nodes (`n1-standard-4`)
- Node autoscaling, up to 3 nodes
- API scopes for cloud-platform
Expand All @@ -113,7 +113,7 @@ kubectl config use-context docker-for-desktop` To setup a cluster with GKE:
variable (e.g. `PROJECT_ID`).

1. Create a GKE cluster (with `--cluster-version=latest` but you can use any
version 1.11 or later):
version 1.15 or later):

```bash
export PROJECT_ID=my-gcp-project
Expand All @@ -131,7 +131,7 @@ kubectl config use-context docker-for-desktop` To setup a cluster with GKE:
--machine-type=n1-standard-4 \
--image-type=cos \
--num-nodes=1 \
--cluster-version=latest
--cluster-version=1.15
```

Note that
Expand Down
4 changes: 2 additions & 2 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Use this page to add the component to an existing Kubernetes cluster.

## Pre-requisites

1. A Kubernetes cluster version 1.11 or later (_if you don't have an existing
1. A Kubernetes cluster version 1.15 or later (_if you don't have an existing
cluster_):

```bash
Expand All @@ -34,7 +34,7 @@ Use this page to add the component to an existing Kubernetes cluster.

The versions of Tekton Pipelines available are:

* [Officially released versions](https:/tektoncd/pipeline/releases), e.g. `v0.6.0`
* [Officially released versions](https:/tektoncd/pipeline/releases), e.g. `v0.10.0`
* [Nightly releases](../tekton/README.md#nightly-releases) are
published every night to `gcr.io/tekton-nightly`
* `HEAD` - To install the most recent, unreleased code in the repo see
Expand Down