From e967addf5d8ee10b9c097c0daf92dbf06a1a2079 Mon Sep 17 00:00:00 2001 From: a-roberts Date: Thu, 26 Sep 2019 17:17:24 +0100 Subject: [PATCH] Move up to Tekton 0.7 for pipeline0 --- README.md | 2 +- config/openshift/openshift-tekton-dashboard.yaml | 10 +++++----- config/pipeline0-task.yaml | 4 ++-- config/pipeline0.yaml | 6 +++--- config/release/gcr-tekton-dashboard.yaml | 10 +++++----- 5 files changed, 16 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 9f0cec719..bf56a10ef 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/config/openshift/openshift-tekton-dashboard.yaml b/config/openshift/openshift-tekton-dashboard.yaml index ea055f0d3..eebd81b45 100644 --- a/config/openshift/openshift-tekton-dashboard.yaml +++ b/config/openshift/openshift-tekton-dashboard.yaml @@ -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 @@ -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) diff --git a/config/pipeline0-task.yaml b/config/pipeline0-task.yaml index 3b9de3ea6..1bc5ebaad 100644 --- a/config/pipeline0-task.yaml +++ b/config/pipeline0-task.yaml @@ -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} \ No newline at end of file + - $(inputs.params.target-namespace) \ No newline at end of file diff --git a/config/pipeline0.yaml b/config/pipeline0.yaml index 5f1bbaf79..6a952d249 100644 --- a/config/pipeline0.yaml +++ b/config/pipeline0.yaml @@ -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 diff --git a/config/release/gcr-tekton-dashboard.yaml b/config/release/gcr-tekton-dashboard.yaml index fd42539ac..32642d2f2 100644 --- a/config/release/gcr-tekton-dashboard.yaml +++ b/config/release/gcr-tekton-dashboard.yaml @@ -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 @@ -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)