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

Move up to Tekton 0.7 for pipeline0 #573

Merged
merged 1 commit into from
Oct 1, 2019
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
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)