Skip to content

Commit

Permalink
Release 0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsauter committed Nov 13, 2023
1 parent d07cb6a commit 4cc6150
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ listed in the changelog.

## [Unreleased]

## [0.15.0] - 2023-11-13

### Added

- Log sub repo context ([#708](https://github.com/opendevstack/ods-pipeline/issues/708))
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ For OpenShift Pipelines releases and its relationship to Tekton and OpenShift ve

| ods-pipeline | OpenShift Pipelines | ODS Core/Quickstarters |
|---|---|---|
| [0.15](https://github.com/opendevstack/ods-pipeline/releases/tag/v0.15.0) | 1.12 | 4.x |
| [0.14](https://github.com/opendevstack/ods-pipeline/releases/tag/v0.14.0) | 1.12 | 4.x |
| [0.13](https://github.com/opendevstack/ods-pipeline/releases/tag/v0.13.2) | 1.9 | 4.x |
| [0.12](https://github.com/opendevstack/ods-pipeline/releases/tag/v0.12.0) | 1.9 | 4.x |

## Contributing

Expand Down
4 changes: 2 additions & 2 deletions deploy/chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ 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.14.0
version: 0.15.0

# 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.14.0"
appVersion: "0.15.0"
2 changes: 1 addition & 1 deletion deploy/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if [ -f "values.yaml" ]; then
fi
helm_set_values=""
chart_dir="./chart"
chart_version="0.14.0"
chart_version="0.15.0"
# Secrets
auth_separator=":"
bitbucket_auth=""
Expand Down
6 changes: 3 additions & 3 deletions docs/installation.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Download the template and fill in the values according to the comments in that f

[source]
----
curl -fsSL https://raw.githubusercontent.com/opendevstack/ods-pipeline/v0.14.0.1/deploy/values.yaml.tmpl -o values.yaml
curl -fsSL https://raw.githubusercontent.com/opendevstack/ods-pipeline/v0.15.0/deploy/values.yaml.tmpl -o values.yaml
----

=== Step 2: Running the install script
Expand All @@ -40,7 +40,7 @@ Login to the OpenShift cluster in your terminal, then run the following from the

[source]
----
curl -fsSL https://raw.githubusercontent.com/opendevstack/ods-pipeline/v0.14.0.1/deploy/install.sh | bash -s -- -n=<your_cd_namespace>
curl -fsSL https://raw.githubusercontent.com/opendevstack/ods-pipeline/v0.15.0/deploy/install.sh | bash -s -- -n=<your_cd_namespace>
----

The script will interactively ask for credentials (such as Bitbucket access token) and will create corresponding K8s secrets. If you prefer to pass these secrets via flags, use `--help` to see all options.
Expand Down Expand Up @@ -68,7 +68,7 @@ To update ODS Pipeline, simply run the install script again (using the new versi

[source]
----
curl -fsSL https://raw.githubusercontent.com/opendevstack/ods-pipeline/v0.14.0.1/deploy/install.sh | bash -s -- -n=<your_cd_namespace>
curl -fsSL https://raw.githubusercontent.com/opendevstack/ods-pipeline/v0.15.0/deploy/install.sh | bash -s -- -n=<your_cd_namespace>
----

IMPORTANT: Previous Helm chart values will be reused. If the release notes mention any new or changed Helm chart values, you have to pass those to the install script using `--set key1=val1,key2=val2`.
Expand Down

0 comments on commit 4cc6150

Please sign in to comment.