Skip to content
This repository was archived by the owner on Mar 21, 2025. It is now read-only.

Commit 814183f

Browse files
author
Michael Sauter
authored
Merge pull request #261 from opendevstack/task/prep-v0-1-1
Prepare v0.1.1 release
2 parents 602c0cb + 1e123ca commit 814183f

File tree

15 files changed

+42
-40
lines changed

15 files changed

+42
-40
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ Note that changes which ONLY affect documentation or the testsuite will not be
88
listed in the changelog.
99

1010
## [Unreleased]
11+
12+
## [0.1.1] - 2021-10-28
1113
### Fixed
1214

1315
- Incorrect ods-gradle-toolset base image in BuildConfig ([#250](https://github.com/opendevstack/ods-pipeline/issues/250))

deploy/cd-namespace/chart/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.1.0
18+
version: 0.1.1
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
23-
appVersion: "0.1.0"
23+
appVersion: "0.1.1"

deploy/cd-namespace/chart/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ interceptor:
6767
pullPolicy: Always
6868
# Image tag to pull.
6969
# If not given, defaults to the chart appVersion.
70-
# tag: "0.1.0"
70+
# tag: "0.1.1"
7171
# Deployment pod resources. Typically these settings should not need to change.
7272
resources:
7373
limits:

deploy/central/images-chart/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.1.0
18+
version: 0.1.1
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
23-
appVersion: "0.1.0"
23+
appVersion: "0.1.1"

deploy/central/images-chart/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Tasks
22
# Image tag to use for images referenced by tasks.
3-
imageTag: 0.1.0
3+
imageTag: 0.1.1
44
# Suffix to append to the task name.
5-
taskSuffix: -v0-1-0
5+
taskSuffix: -v0-1-1
66

77
# Git
88
odsPipelineGitRepoUri: https://github.com/opendevstack/ods-pipeline
9-
odsPipelineGitRepoRef: v0.1.0
9+
odsPipelineGitRepoRef: v0.1.1
1010

1111
# Sonar
1212
# Edition of SonarQube server. One of "community", "developer", "enterprise" or "datacenter".

deploy/central/tasks-chart/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.1.0
18+
version: 0.1.1
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
23-
appVersion: "0.1.0"
23+
appVersion: "0.1.1"

deploy/central/tasks-chart/values.docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
registry: image-registry.openshift-image-registry.svc:5000
66
namespace: ods
7-
imageTag: 0.1.0
7+
imageTag: 0.1.1
88
taskSuffix: ''
99
pushRegistry: image-registry.openshift-image-registry.svc:5000

deploy/central/tasks-chart/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
registry: image-registry.openshift-image-registry.svc:5000
66
namespace: ods
7-
imageTag: 0.1.0
8-
taskSuffix: -v0-1-0
7+
imageTag: 0.1.1
8+
taskSuffix: -v0-1-1
99
pushRegistry: image-registry.openshift-image-registry.svc:5000

docs/admin-installation.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ First, create a repository in Bitbucket, e.g. `ods`. The name can be anything, b
2020
Then, use `git subtree` to get the required sources. The following commands may look a bit complicated, but in a nutshell, they are simply adding one folder (`deploy/central`) from the `opendestack/ods-pipeline` repository at the given revision (e.g. `master`) into your new local repository at the path `ods-pipeline`.
2121

2222
```
23-
pipelineGitRef=v0.1.0 # Pick the version you want to install
23+
pipelineGitRef=v0.1.1 # Pick the version you want to install
2424

2525
git fetch --depth=1 https://github.com/opendevstack/ods-pipeline.git $pipelineGitRef:ods-pipeline-$pipelineGitRef && \
2626
git checkout ods-pipeline-$pipelineGitRef && \
@@ -57,7 +57,7 @@ Now your `ods` namespace is fully setup and users can start to utilize Tekton pi
5757

5858
You may fetch updates (e.g. new versions) of `ods-pipeline` like this:
5959
```
60-
pipelineGitRef=v0.1.0 # Pick the version you want to install
60+
pipelineGitRef=v0.1.1 # Pick the version you want to install
6161

6262
git fetch --depth=1 https://github.com/opendevstack/ods-pipeline.git $pipelineGitRef:ods-pipeline-$pipelineGitRef && \
6363
git checkout ods-pipeline-$pipelineGitRef && \

docs/authoring-tasks.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ spec:
131131
description: Custom Go (module) applications build task.
132132
steps:
133133
- name: build-go-binary
134-
image: '{{.Values.registry}}/ods/ods-go-toolset:v0.1.0'
134+
image: '{{.Values.registry}}/ods/ods-go-toolset:v0.1.1'
135135
env:
136136
- name: HOME
137137
value: '/tekton/home'

0 commit comments

Comments
 (0)