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

Pick up the latest knative/pkg and K8s 0.17.x #2846

Merged
merged 3 commits into from
Jul 6, 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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 3 additions & 3 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ configuring Kubernetes resources.

The recommended configuration is:

- Kubernetes version 1.15 or later
- Kubernetes version 1.16 or later
- 4 vCPU nodes (`n1-standard-4`)
- Node autoscaling, up to 3 nodes
- API scopes for cloud-platform
Expand Down Expand Up @@ -129,7 +129,7 @@ To use the Kubernetes that comes with Docker Desktop:
variable (e.g. `PROJECT_ID`).

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

```bash
export PROJECT_ID=my-gcp-project
Expand All @@ -147,7 +147,7 @@ To use the Kubernetes that comes with Docker Desktop:
--machine-type=n1-standard-4 \
--image-type=cos \
--num-nodes=1 \
--cluster-version=1.15
--cluster-version=1.16
```

Note that
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Tekton Pipelines are **Typed**:
- Take a look at our [roadmap](roadmap.md)

*Note that starting from the 0.11 release of Tekton, you need to have
a cluster with **Kubernetes version 1.15 or later***.
a cluster with **Kubernetes version 1.16 or later***.

### Read the docs

Expand Down
4 changes: 2 additions & 2 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ This guide explains how to install Tekton Pipelines. It covers the following top
* **[`HEAD`]** - this is the bleeding edge. It contains unreleased code that may result
in unpredictable behavior. To get started, see the [development guide](https://github.com/tektoncd/pipeline/blob/master/DEVELOPMENT.md) instead of this page.

2. If you don't have an existing Kubernetes cluster, set one up, version 1.15 or later:
2. If you don't have an existing Kubernetes cluster, set one up, version 1.16 or later:

```bash
#Example command for creating a cluster on GKE
gcloud container clusters create $CLUSTER_NAME \
--zone=$CLUSTER_ZONE --cluster-version=1.15.11-gke.5
--zone=$CLUSTER_ZONE --cluster-version=1.16.9-gke.6
```

3. Grant `cluster-admin` permissions to the current user:
Expand Down
2 changes: 1 addition & 1 deletion docs/podtemplates.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ weight: 12
# Pod templates

A pod template specifies a subset of
[`PodSpec`](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.15/#pod-v1-core)
[`PodSpec`](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.16/#pod-v1-core)
configuration that will be used as the basis for the `Task` pod.

This allows for customizing some `Pod` specific field per `Task` execution, `TaskRun` or for all `Task` executions part of a `PipelineRun`.
Expand Down
24 changes: 11 additions & 13 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -20,37 +20,35 @@ require (
github.com/mitchellh/go-homedir v1.1.0
github.com/pkg/errors v0.9.1
github.com/tektoncd/plumbing v0.0.0-20200430135134-e53521e1d887
go.opencensus.io v0.22.3
go.opencensus.io v0.22.4
go.uber.org/zap v1.15.0
golang.org/x/crypto v0.0.0-20200323165209-0ec3e9974c59 // indirect
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
gomodules.xyz/jsonpatch/v2 v2.1.0
google.golang.org/protobuf v1.22.0 // indirect
gopkg.in/yaml.v2 v2.3.0 // indirect
k8s.io/api v0.17.6
k8s.io/apiextensions-apiserver v0.17.6 // indirect
k8s.io/apimachinery v0.17.6
k8s.io/client-go v11.0.1-0.20190805182717-6502b5e7b1b5+incompatible
k8s.io/code-generator v0.18.0
k8s.io/kube-openapi v0.0.0-20200410145947-bcb3869e6f29
k8s.io/utils v0.0.0-20200124190032-861946025e34 // indirect
knative.dev/pkg v0.0.0-20200528142800-1c6815d7e4c9
sigs.k8s.io/yaml v1.2.0 // indirect
knative.dev/pkg v0.0.0-20200630170034-2c1a029eb97f
)

// Knative deps (release-0.15)
// Knative deps (release-0.16)
replace (
contrib.go.opencensus.io/exporter/stackdriver => contrib.go.opencensus.io/exporter/stackdriver v0.12.9-0.20191108183826-59d068f8d8ff
github.com/Azure/azure-sdk-for-go => github.com/Azure/azure-sdk-for-go v38.2.0+incompatible
github.com/Azure/go-autorest => github.com/Azure/go-autorest v13.4.0+incompatible
knative.dev/caching => knative.dev/caching v0.0.0-20200521155757-e78d17bc250e
knative.dev/pkg => knative.dev/pkg v0.0.0-20200528142800-1c6815d7e4c9
)

// Pin k8s deps to 1.16.5
// Pin k8s deps to 1.17.6
replace (
k8s.io/api => k8s.io/api v0.16.5
k8s.io/apimachinery => k8s.io/apimachinery v0.16.5
k8s.io/client-go => k8s.io/client-go v0.16.5
k8s.io/code-generator => k8s.io/code-generator v0.16.5
k8s.io/api => k8s.io/api v0.17.6
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.17.6
k8s.io/apimachinery => k8s.io/apimachinery v0.17.6
k8s.io/apiserver => k8s.io/apiserver v0.17.6
k8s.io/client-go => k8s.io/client-go v0.17.6
k8s.io/code-generator => k8s.io/code-generator v0.17.6
k8s.io/kube-openapi => k8s.io/kube-openapi v0.0.0-20200410145947-bcb3869e6f29
)
Loading