Skip to content

Commit

Permalink
Move up to Tekton 0.7 for pipeline0
Browse files Browse the repository at this point in the history
  • Loading branch information
a-roberts authored and tekton-robot committed Oct 1, 2019
1 parent 95a9236 commit e967add
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Tekton Dashboard is a general purpose, web-based UI for Tekton Pipelines. It all

## Pre-requisites

[Tekton Pipelines](https://github.com/tektoncd/pipeline) must be installed in order to use the Tekton Dashboard. Instructions to install Tekton Pipelines can be found [here](https://github.com/tektoncd/pipeline/blob/master/docs/install.md). For 0.6.0 of Tekton Pipelines, use master. To continue using Tekton Pipelines 0.5.2, you should use the published 0.1.1 release [here](https://github.com/tektoncd/dashboard/releases/tag/v0.1.1).
[Tekton Pipelines](https://github.com/tektoncd/pipeline) must be installed in order to use the Tekton Dashboard. Instructions to install Tekton Pipelines can be found [here](https://github.com/tektoncd/pipeline/blob/master/docs/install.md). For 0.7.0 of Tekton Pipelines, use master. To continue using Tekton Pipelines 0.5.2, you should use the published 0.1.1 release [here](https://github.com/tektoncd/dashboard/releases/tag/v0.1.1).

## Install Dashboard

Expand Down
10 changes: 5 additions & 5 deletions config/openshift/openshift-tekton-dashboard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -236,11 +236,11 @@ spec:
name: pipeline0-task
params:
- name: pathToResourceFiles
value: ${params.pathToResourceFiles}
value: $(params.pathToResourceFiles)
- name: apply-directory
value: ${params.apply-directory}
value: $(params.apply-directory)
- name: target-namespace
value: ${params.target-namespace}
value: $(params.target-namespace)
resources:
inputs:
- name: git-source
Expand Down Expand Up @@ -278,6 +278,6 @@ spec:
args:
- apply
- -f
- ${inputs.params.pathToResourceFiles}/${inputs.params.apply-directory}
- $(inputs.params.pathToResourceFiles)/$(inputs.params.apply-directory)
- -n
- ${inputs.params.target-namespace}
- $(inputs.params.target-namespace)
4 changes: 2 additions & 2 deletions config/pipeline0-task.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ spec:
args:
- apply
- -f
- ${inputs.params.pathToResourceFiles}/${inputs.params.apply-directory}
- $(inputs.params.pathToResourceFiles)/$(inputs.params.apply-directory)
- -n
- ${inputs.params.target-namespace}
- $(inputs.params.target-namespace)
6 changes: 3 additions & 3 deletions config/pipeline0.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ spec:
name: pipeline0-task
params:
- name: pathToResourceFiles
value: ${params.pathToResourceFiles}
value: $(params.pathToResourceFiles)
- name: apply-directory
value: ${params.apply-directory}
value: $(params.apply-directory)
- name: target-namespace
value: ${params.target-namespace}
value: $(params.target-namespace)
resources:
inputs:
- name: git-source
Expand Down
10 changes: 5 additions & 5 deletions config/release/gcr-tekton-dashboard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -177,11 +177,11 @@ spec:
name: pipeline0-task
params:
- name: pathToResourceFiles
value: ${params.pathToResourceFiles}
value: $(params.pathToResourceFiles)
- name: apply-directory
value: ${params.apply-directory}
value: $(params.apply-directory)
- name: target-namespace
value: ${params.target-namespace}
value: $(params.target-namespace)
resources:
inputs:
- name: git-source
Expand Down Expand Up @@ -219,6 +219,6 @@ spec:
args:
- apply
- -f
- ${inputs.params.pathToResourceFiles}/${inputs.params.apply-directory}
- $(inputs.params.pathToResourceFiles)/$(inputs.params.apply-directory)
- -n
- ${inputs.params.target-namespace}
- $(inputs.params.target-namespace)

0 comments on commit e967add

Please sign in to comment.