From 2463936eef74a353f2ba81d17e994aaac1d75b32 Mon Sep 17 00:00:00 2001 From: Michael Sauter Date: Fri, 31 Mar 2023 09:39:50 +0200 Subject: [PATCH] Create 0.11.1 release --- CHANGELOG.md | 2 ++ README.md | 2 +- deploy/ods-pipeline/Chart.yaml | 8 ++++---- deploy/ods-pipeline/charts/setup/Chart.yaml | 4 ++-- deploy/ods-pipeline/charts/tasks/Chart.yaml | 4 ++-- docs/add-to-repository.adoc | 20 ++++++++++---------- docs/convert-quickstarter-component.adoc | 12 ++++++------ docs/example-project.adoc | 14 +++++++------- docs/installation.adoc | 6 +++--- docs/introduction.adoc | 6 +++--- docs/ods-configuration.adoc | 8 ++++---- tasks/ods-build-go.yaml | 6 +++--- tasks/ods-build-gradle.yaml | 6 +++--- tasks/ods-build-npm.yaml | 6 +++--- tasks/ods-build-python.yaml | 6 +++--- tasks/ods-deploy-helm.yaml | 4 ++-- tasks/ods-finish.yaml | 4 ++-- tasks/ods-package-image.yaml | 6 +++--- tasks/ods-start.yaml | 4 ++-- 19 files changed, 65 insertions(+), 63 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 70e354f5..17ad769e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ listed in the changelog. ## [Unreleased] +## [0.11.1] - 2023-03-31 + ### Fixed - Configure Git to use bearer token auth mechanism ([#683](https://github.com/opendevstack/ods-pipeline/issues/683)) diff --git a/README.md b/README.md index 9571ea3d..03219504 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ For OpenShift Pipelines releases and its relationship to Tekton and OpenShift ve | ods-pipeline | OpenShift Pipelines | ODS Core/Quickstarters | |---|---|---| -| [0.11](https://github.com/opendevstack/ods-pipeline/releases/tag/v0.11.0) | 1.9 | 4.x | +| [0.11](https://github.com/opendevstack/ods-pipeline/releases/tag/v0.11.1) | 1.9 | 4.x | | [0.10](https://github.com/opendevstack/ods-pipeline/releases/tag/v0.10.1) | 1.9 | 4.x | | [0.9](https://github.com/opendevstack/ods-pipeline/releases/tag/v0.9.0) | 1.6 | 4.x | diff --git a/deploy/ods-pipeline/Chart.yaml b/deploy/ods-pipeline/Chart.yaml index 8dc4a575..2bae3faa 100644 --- a/deploy/ods-pipeline/Chart.yaml +++ b/deploy/ods-pipeline/Chart.yaml @@ -15,18 +15,18 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.11.0 +version: 0.11.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.11.0" +appVersion: "0.11.1" dependencies: - name: setup - version: 0.11.0 + version: 0.11.1 condition: setup.enabled - name: tasks - version: 0.11.0 + version: 0.11.1 condition: tasks.enabled diff --git a/deploy/ods-pipeline/charts/setup/Chart.yaml b/deploy/ods-pipeline/charts/setup/Chart.yaml index b6182aab..723bfb73 100644 --- a/deploy/ods-pipeline/charts/setup/Chart.yaml +++ b/deploy/ods-pipeline/charts/setup/Chart.yaml @@ -15,9 +15,9 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.11.0 +version: 0.11.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. -appVersion: "0.11.0" +appVersion: "0.11.1" diff --git a/deploy/ods-pipeline/charts/tasks/Chart.yaml b/deploy/ods-pipeline/charts/tasks/Chart.yaml index 905d38d6..6f2b83b1 100644 --- a/deploy/ods-pipeline/charts/tasks/Chart.yaml +++ b/deploy/ods-pipeline/charts/tasks/Chart.yaml @@ -15,9 +15,9 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.11.0 +version: 0.11.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. -appVersion: "0.11.0" +appVersion: "0.11.1" diff --git a/docs/add-to-repository.adoc b/docs/add-to-repository.adoc index e2317ce8..0b3403b1 100644 --- a/docs/add-to-repository.adoc +++ b/docs/add-to-repository.adoc @@ -23,17 +23,17 @@ pipeline: - name: build taskRef: kind: Task - name: ods-build-go-v0-11-0 + name: ods-build-go-v0-11-1 workspaces: - name: source workspace: shared-workspace ---- -`ods-build-go-v0-11-0` runs tests and produces a Go binary. If you use another technology, e.g. a Java project using Gradle, exchange the task with `ods-build-gradle-v0-11-0`. See the link:tasks/[tasks reference] for available tasks. +`ods-build-go-v0-11-1` runs tests and produces a Go binary. If you use another technology, e.g. a Java project using Gradle, exchange the task with `ods-build-gradle-v0-11-1`. See the link:tasks/[tasks reference] for available tasks. === (Optionally) Create `Dockerfile` -If you want to create a container image with the produced Go binary, you can add the `ods-package-image-v0-11-0` task to the `tasks` list, like this: +If you want to create a container image with the produced Go binary, you can add the `ods-package-image-v0-11-1` task to the `tasks` list, like this: .ods.yaml [source,yaml] @@ -43,14 +43,14 @@ pipeline: - name: build taskRef: kind: Task - name: ods-build-go-v0-11-0 + name: ods-build-go-v0-11-1 workspaces: - name: source workspace: shared-workspace - name: package taskRef: kind: Task - name: ods-package-image-v0-11-0 + name: ods-package-image-v0-11-1 runAfter: - build workspaces: @@ -72,13 +72,13 @@ EXPOSE 8080 CMD ["./app"] ---- -NOTE: `ods-build-go-v0-11-0` produces a binary called `app` and places it at `docker/app` so that it can be referenced in the `Dockerfile` and copied into the image by the `ods-package-image-v0-11-0` task. +NOTE: `ods-build-go-v0-11-1` produces a binary called `app` and places it at `docker/app` so that it can be referenced in the `Dockerfile` and copied into the image by the `ods-package-image-v0-11-1` task. NOTE: Pay attention to the `runAfter` configuration in the task list: it ensures that the tasks run sequentially and can use the outputs from the previous task(s). === (Optionally) Create Helm Chart -If you want to deploy the created image, you can add the `ods-deploy-helm-v0-11-0` task to the `tasks` list and configure which branches should be deployed to which Kubernetes namespaces, like this: +If you want to deploy the created image, you can add the `ods-deploy-helm-v0-11-1` task to the `tasks` list and configure which branches should be deployed to which Kubernetes namespaces, like this: .ods.yaml [source,yaml] @@ -97,14 +97,14 @@ pipeline: - name: build taskRef: kind: Task - name: ods-build-go-v0-11-0 + name: ods-build-go-v0-11-1 workspaces: - name: source workspace: shared-workspace - name: package taskRef: kind: Task - name: ods-package-image-v0-11-0 + name: ods-package-image-v0-11-1 runAfter: - build workspaces: @@ -113,7 +113,7 @@ pipeline: - name: deploy taskRef: kind: Task - name: ods-deploy-helm-v0-11-0 + name: ods-deploy-helm-v0-11-1 runAfter: - package workspaces: diff --git a/docs/convert-quickstarter-component.adoc b/docs/convert-quickstarter-component.adoc index 9ae3a763..1284c3eb 100644 --- a/docs/convert-quickstarter-component.adoc +++ b/docs/convert-quickstarter-component.adoc @@ -101,14 +101,14 @@ pipeline: - name: backend-build-go taskRef: kind: Task - name: ods-build-go-v0-11-0 + name: ods-build-go-v0-11-1 workspaces: - name: source workspace: shared-workspace - name: backend-package-image taskRef: kind: Task - name: ods-package-image-v0-11-0 + name: ods-package-image-v0-11-1 runAfter: - backend-build-go workspaces: @@ -117,7 +117,7 @@ pipeline: - name: backend-deploy taskRef: kind: Task - name: ods-deploy-helm-v0-11-0 + name: ods-deploy-helm-v0-11-1 runAfter: - backend-package-image workspaces: @@ -125,13 +125,13 @@ pipeline: workspace: shared-workspace ---- -What has been done in Jenkins in `stageCheckFormat`, `stageLint`, `stageUnitTest`, `stageBuild` and `odsComponentStageScanWithSonar` is now done by the `ods-build-go-v0-11-0` task. If you have modified how the application is tested and built, or added further steps, you will need to create your own Tekton tasks reflecting those changes. See the link:authoring-tasks.adoc[authoring tasks] guide. +What has been done in Jenkins in `stageCheckFormat`, `stageLint`, `stageUnitTest`, `stageBuild` and `odsComponentStageScanWithSonar` is now done by the `ods-build-go-v0-11-1` task. If you have modified how the application is tested and built, or added further steps, you will need to create your own Tekton tasks reflecting those changes. See the link:authoring-tasks.adoc[authoring tasks] guide. -Building the container image is now done in `ods-package-image-v0-11-0` instead of in `odsComponentStageBuildOpenShiftImage`. The task continues to use the existing `docker/Dockerfile` file, which does not need to change much if at all. Consult the task reference in question for more information. In the case of Go, the link:tasks/ods-build-go.adoc[`ods-build-go` task reference] states that the resulting Go binary is named `app` and placed into the `docker` directory. Make sure that your `docker/Dockerfile` copies `app`, not e.g. `app_linux_amd64` (as is the default for an ODS 4.x based Go quickstarter). +Building the container image is now done in `ods-package-image-v0-11-1` instead of in `odsComponentStageBuildOpenShiftImage`. The task continues to use the existing `docker/Dockerfile` file, which does not need to change much if at all. Consult the task reference in question for more information. In the case of Go, the link:tasks/ods-build-go.adoc[`ods-build-go` task reference] states that the resulting Go binary is named `app` and placed into the `docker` directory. Make sure that your `docker/Dockerfile` copies `app`, not e.g. `app_linux_amd64` (as is the default for an ODS 4.x based Go quickstarter). == Create Helm Chart -Finally, the application is deployed in `ods-deploy-helm-v0-11-0` as opposed to `odsComponentStageRolloutOpenShiftDeployment`. +Finally, the application is deployed in `ods-deploy-helm-v0-11-1` as opposed to `odsComponentStageRolloutOpenShiftDeployment`. Let's look at this deployment piece in detail. The new Tekton task makes use of Helm to define and deploy the Kubernetes resources to use. Your existing repository might not define Kubernetes resources at all (this is the default), or they might be expressed as OpenShift templates (in a folder named `openshift`) and applied with link:https://github.com/opendevstack/tailor[Tailor]. ODS pipeline only supports Helm at the moment, and requires the Kubernetes resources (the Helm "chart") to be under version control. It is recommended to start with the link:https://github.com/opendevstack/ods-pipeline/tree/sample-helm-chart[sample chart provided in this repository]. If the existing component controlled resources via Tailor, please see the link:https://github.com/opendevstack/tailor/wiki/Migrating-from-Tailor-to-Helm#ods-quickstarter-migration[ODS Quickstarter Migration Guide] of Tailor as well. == Configure Webhook diff --git a/docs/example-project.adoc b/docs/example-project.adoc index 2def5b06..491ee54c 100644 --- a/docs/example-project.adoc +++ b/docs/example-project.adoc @@ -33,14 +33,14 @@ pipeline: - name: build taskRef: kind: Task - name: ods-build-go-v0-11-0 + name: ods-build-go-v0-11-1 workspaces: - name: source workspace: shared-workspace - name: package taskRef: kind: Task - name: ods-package-image-v0-11-0 + name: ods-package-image-v0-11-1 runAfter: - build workspaces: @@ -49,7 +49,7 @@ pipeline: - name: deploy taskRef: kind: Task - name: ods-deploy-helm-v0-11-0 + name: ods-deploy-helm-v0-11-1 runAfter: - package workspaces: @@ -74,14 +74,14 @@ pipeline: - name: build taskRef: kind: Task - name: ods-build-npm-v0-11-0 + name: ods-build-npm-v0-11-1 workspaces: - name: source workspace: shared-workspace - name: package taskRef: kind: Task - name: ods-package-image-v0-11-0 + name: ods-package-image-v0-11-1 runAfter: - build workspaces: @@ -90,7 +90,7 @@ pipeline: - name: deploy taskRef: kind: Task - name: ods-deploy-helm-v0-11-0 + name: ods-deploy-helm-v0-11-1 runAfter: - package workspaces: @@ -134,7 +134,7 @@ pipeline: - name: deploy taskRef: kind: Task - name: ods-deploy-helm-v0-11-0 + name: ods-deploy-helm-v0-11-1 workspaces: - name: source workspace: shared-workspace diff --git a/docs/installation.adoc b/docs/installation.adoc index 3eba987a..683dc6bc 100644 --- a/docs/installation.adoc +++ b/docs/installation.adoc @@ -33,7 +33,7 @@ Now use `git subtree` to get the required source files. The following commands m [source] ---- -pipelineGitRef=v0.11.0 # Pick the version you want to install +pipelineGitRef=v0.11.1 # Pick the version you want to install git fetch --depth=1 https://github.com/opendevstack/ods-pipeline.git $pipelineGitRef:ods-pipeline-$pipelineGitRef && \ git checkout ods-pipeline-$pipelineGitRef && \ @@ -101,7 +101,7 @@ You may fetch updates (e.g. new versions) of `ods-pipeline` like this: [source] ---- -pipelineGitRef=v0.11.0 # Pick the version you want to update to +pipelineGitRef=v0.11.1 # Pick the version you want to update to git branch -D ods-pipeline-$pipelineGitRef subtree-split-branch-$pipelineGitRef || true && \ git fetch --depth=1 https://github.com/opendevstack/ods-pipeline.git $pipelineGitRef:ods-pipeline-$pipelineGitRef && \ @@ -145,4 +145,4 @@ TIP: The credentials stored in the K8s secrets will not be updated. If you need ==== Finishing the update -Once the resources in your namespace are updated, you likely have to update the `ods.yaml` files in your repository to point to the new tasks, e.g. changing `ods-build-go-v0-10-1` to `ods-build-go-v0-11-0`. Whether or not you have to update the `ods.yaml` file depends whether the task suffix (controlled by the value `taskSuffix`) has changed due to the update. +Once the resources in your namespace are updated, you likely have to update the `ods.yaml` files in your repository to point to the new tasks, e.g. changing `ods-build-go-v0-10-1` to `ods-build-go-v0-11-1`. Whether or not you have to update the `ods.yaml` file depends whether the task suffix (controlled by the value `taskSuffix`) has changed due to the update. diff --git a/docs/introduction.adoc b/docs/introduction.adoc index b4277e5b..81fb4050 100644 --- a/docs/introduction.adoc +++ b/docs/introduction.adoc @@ -72,14 +72,14 @@ pipeline: - name: build-go taskRef: kind: Task - name: ods-build-go-v0-11-0 + name: ods-build-go-v0-11-1 workspaces: - name: source workspace: shared-workspace - name: package-image taskRef: kind: Task - name: ods-package-image-v0-11-0 + name: ods-package-image-v0-11-1 runAfter: - build-go workspaces: @@ -88,7 +88,7 @@ pipeline: - name: deploy-helm taskRef: kind: Task - name: ods-deploy-helm-v0-11-0 + name: ods-deploy-helm-v0-11-1 runAfter: - package-image workspaces: diff --git a/docs/ods-configuration.adoc b/docs/ods-configuration.adoc index 2cab35ea..ae108e92 100644 --- a/docs/ods-configuration.adoc +++ b/docs/ods-configuration.adoc @@ -27,14 +27,14 @@ pipeline: - name: build taskRef: kind: Task - name: ods-build-go-v0-11-0 + name: ods-build-go-v0-11-1 workspaces: - name: source workspace: shared-workspace - name: package taskRef: kind: Task - name: ods-package-image-v0-11-0 + name: ods-package-image-v0-11-1 runAfter: - build workspaces: @@ -93,7 +93,7 @@ pipeline: - name: url value: https://github.com/opendevstack/ods-pipeline.git - name: revision - value: v0.11.0 + value: v0.11.1 - name: pathInRepo value: tasks/ods-build-go.yaml workspaces: @@ -151,7 +151,7 @@ pipeline: - name: url value: https://github.com/opendevstack/ods-pipeline.git - name: revision - value: v0.11.0 + value: v0.11.1 - name: pathInRepo value: tasks/ods-build-go.yaml workspaces: diff --git a/tasks/ods-build-go.yaml b/tasks/ods-build-go.yaml index d8f569e5..66654a9a 100644 --- a/tasks/ods-build-go.yaml +++ b/tasks/ods-build-go.yaml @@ -10,7 +10,7 @@ spec: description: | Builds Go (module) applications. - See https://github.com/opendevstack/ods-pipeline/blob/v0.11.0/docs/tasks/ods-build-go.adoc + See https://github.com/opendevstack/ods-pipeline/blob/v0.11.1/docs/tasks/ods-build-go.adoc params: - name: working-dir description: | @@ -70,7 +70,7 @@ spec: steps: - name: build-go-binary # Image is built from build/package/Dockerfile.go-toolset. - image: 'ghcr.io/opendevstack/ods-pipeline/ods-go-toolset:0.11.0' + image: 'ghcr.io/opendevstack/ods-pipeline/ods-go-toolset:0.11.1' env: - name: HOME value: '/tekton/home' @@ -128,7 +128,7 @@ spec: workingDir: $(workspaces.source.path) - name: scan-with-sonar # Image is built from build/package/Dockerfile.sonar. - image: 'ghcr.io/opendevstack/ods-pipeline/ods-sonar:0.11.0' + image: 'ghcr.io/opendevstack/ods-pipeline/ods-sonar:0.11.1' env: - name: HOME value: '/tekton/home' diff --git a/tasks/ods-build-gradle.yaml b/tasks/ods-build-gradle.yaml index 58c57b77..6bc08f74 100644 --- a/tasks/ods-build-gradle.yaml +++ b/tasks/ods-build-gradle.yaml @@ -10,7 +10,7 @@ spec: description: | Builds Gradle applications. - See https://github.com/opendevstack/ods-pipeline/blob/v0.11.0/docs/tasks/ods-build-gradle.adoc + See https://github.com/opendevstack/ods-pipeline/blob/v0.11.1/docs/tasks/ods-build-gradle.adoc params: - name: working-dir description: | @@ -74,7 +74,7 @@ spec: steps: - name: build-gradle-binary # Image is built from build/package/Dockerfile.gradle-toolset. - image: 'ghcr.io/opendevstack/ods-pipeline/ods-gradle-toolset:0.11.0' + image: 'ghcr.io/opendevstack/ods-pipeline/ods-gradle-toolset:0.11.1' env: - name: DEBUG valueFrom: @@ -146,7 +146,7 @@ spec: workingDir: $(workspaces.source.path) - name: scan-with-sonar # Image is built from build/package/Dockerfile.sonar. - image: 'ghcr.io/opendevstack/ods-pipeline/ods-sonar:0.11.0' + image: 'ghcr.io/opendevstack/ods-pipeline/ods-sonar:0.11.1' env: - name: HOME value: '/tekton/home' diff --git a/tasks/ods-build-npm.yaml b/tasks/ods-build-npm.yaml index b34d0856..afaf2b36 100644 --- a/tasks/ods-build-npm.yaml +++ b/tasks/ods-build-npm.yaml @@ -10,7 +10,7 @@ spec: description: | Builds Node.js applications using npm. - See https://github.com/opendevstack/ods-pipeline/blob/v0.11.0/docs/tasks/ods-build-npm.adoc + See https://github.com/opendevstack/ods-pipeline/blob/v0.11.1/docs/tasks/ods-build-npm.adoc params: - name: working-dir description: | @@ -74,7 +74,7 @@ spec: steps: - name: build-npm # Image is built from build/package/Dockerfile.node-npm-toolset. - image: 'ghcr.io/opendevstack/ods-pipeline/ods-node$(params.node-version)-npm-toolset:0.11.0' + image: 'ghcr.io/opendevstack/ods-pipeline/ods-node$(params.node-version)-npm-toolset:0.11.1' env: - name: HOME value: '/tekton/home' @@ -145,7 +145,7 @@ spec: workingDir: $(workspaces.source.path) - name: scan-with-sonar # Image is built from build/package/Dockerfile.sonar. - image: 'ghcr.io/opendevstack/ods-pipeline/ods-sonar:0.11.0' + image: 'ghcr.io/opendevstack/ods-pipeline/ods-sonar:0.11.1' env: - name: HOME value: '/tekton/home' diff --git a/tasks/ods-build-python.yaml b/tasks/ods-build-python.yaml index 42b40165..96250528 100644 --- a/tasks/ods-build-python.yaml +++ b/tasks/ods-build-python.yaml @@ -10,7 +10,7 @@ spec: description: | Builds Python applications. - See https://github.com/opendevstack/ods-pipeline/blob/v0.11.0/docs/tasks/ods-build-python.adoc + See https://github.com/opendevstack/ods-pipeline/blob/v0.11.1/docs/tasks/ods-build-python.adoc params: - name: working-dir description: | @@ -62,7 +62,7 @@ spec: steps: - name: build-python # Image is built from build/package/Dockerfile.python-toolset. - image: 'ghcr.io/opendevstack/ods-pipeline/ods-python-toolset:0.11.0' + image: 'ghcr.io/opendevstack/ods-pipeline/ods-python-toolset:0.11.1' env: - name: HOME value: '/tekton/home' @@ -133,7 +133,7 @@ spec: workingDir: $(workspaces.source.path) - name: scan-with-sonar # Image is built from build/package/Dockerfile.sonar. - image: 'ghcr.io/opendevstack/ods-pipeline/ods-sonar:0.11.0' + image: 'ghcr.io/opendevstack/ods-pipeline/ods-sonar:0.11.1' env: - name: HOME value: '/tekton/home' diff --git a/tasks/ods-deploy-helm.yaml b/tasks/ods-deploy-helm.yaml index 0788305d..0aa9968d 100644 --- a/tasks/ods-deploy-helm.yaml +++ b/tasks/ods-deploy-helm.yaml @@ -10,7 +10,7 @@ spec: description: | Deploy Helm charts. - See https://github.com/opendevstack/ods-pipeline/blob/v0.11.0/docs/tasks/ods-deploy-helm.adoc + See https://github.com/opendevstack/ods-pipeline/blob/v0.11.1/docs/tasks/ods-deploy-helm.adoc params: - name: chart-dir description: Helm chart directory that will be deployed @@ -46,7 +46,7 @@ spec: steps: - name: helm-upgrade-from-repo # Image is built from build/package/Dockerfile.helm. - image: 'ghcr.io/opendevstack/ods-pipeline/ods-helm:0.11.0' + image: 'ghcr.io/opendevstack/ods-pipeline/ods-helm:0.11.1' env: - name: DEBUG valueFrom: diff --git a/tasks/ods-finish.yaml b/tasks/ods-finish.yaml index 59f88e0d..696a2e44 100644 --- a/tasks/ods-finish.yaml +++ b/tasks/ods-finish.yaml @@ -10,7 +10,7 @@ spec: description: | Finishes the pipeline run. - See https://github.com/opendevstack/ods-pipeline/blob/v0.11.0/docs/tasks/ods-finish.adoc + See https://github.com/opendevstack/ods-pipeline/blob/v0.11.1/docs/tasks/ods-finish.adoc params: - name: pipeline-run-name description: Name of pipeline run. @@ -21,7 +21,7 @@ spec: steps: - name: ods-finish # Image is built from build/package/Dockerfile.finish. - image: 'ghcr.io/opendevstack/ods-pipeline/ods-finish:0.11.0' + image: 'ghcr.io/opendevstack/ods-pipeline/ods-finish:0.11.1' env: - name: HOME value: '/tekton/home' diff --git a/tasks/ods-package-image.yaml b/tasks/ods-package-image.yaml index a7e00f02..fe229b3f 100644 --- a/tasks/ods-package-image.yaml +++ b/tasks/ods-package-image.yaml @@ -10,7 +10,7 @@ spec: description: | Packages applications into container images using buildah. - See https://github.com/opendevstack/ods-pipeline/blob/v0.11.0/docs/tasks/ods-package-image.adoc + See https://github.com/opendevstack/ods-pipeline/blob/v0.11.1/docs/tasks/ods-package-image.adoc params: - name: registry description: Image registry to push image to. @@ -62,7 +62,7 @@ spec: steps: - name: package-image # Image is built from build/package/Dockerfile.package-image. - image: 'ghcr.io/opendevstack/ods-pipeline/ods-package-image:0.11.0' + image: 'ghcr.io/opendevstack/ods-pipeline/ods-package-image:0.11.1' env: - name: NEXUS_URL valueFrom: @@ -117,7 +117,7 @@ spec: workingDir: $(workspaces.source.path) - name: aqua-scan # Image is built from build/package/Dockerfile.aqua-scan. - image: 'ghcr.io/opendevstack/ods-pipeline/ods-aqua-scan:0.11.0' + image: 'ghcr.io/opendevstack/ods-pipeline/ods-aqua-scan:0.11.1' env: - name: HOME value: '/tekton/home' diff --git a/tasks/ods-start.yaml b/tasks/ods-start.yaml index 4689bc5f..e8c38112 100644 --- a/tasks/ods-start.yaml +++ b/tasks/ods-start.yaml @@ -10,7 +10,7 @@ spec: description: | Starts the pipeline run. - See https://github.com/opendevstack/ods-pipeline/blob/v0.11.0/docs/tasks/ods-start.adoc + See https://github.com/opendevstack/ods-pipeline/blob/v0.11.1/docs/tasks/ods-start.adoc params: - name: url description: Git URL to clone @@ -84,7 +84,7 @@ spec: steps: - name: ods-start # Image is built from build/package/Dockerfile.start. - image: 'ghcr.io/opendevstack/ods-pipeline/ods-start:0.11.0' + image: 'ghcr.io/opendevstack/ods-pipeline/ods-start:0.11.1' env: - name: HOME value: '/tekton/home'