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

Commit 78c2139

Browse files
author
Michael Sauter
committed
Set version to v0.1.0
1 parent c839e65 commit 78c2139

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

deploy/central/images-chart/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
imageTag: 0.1.0
66
taskSuffix: -v0-1-0
77
odsPipelineGitRepoUri: https://github.com/opendevstack/ods-pipeline
8-
odsPipelineGitRepoRef: master
8+
odsPipelineGitRepoRef: v0.1.0
99
aquasecScannerUrl: ''
1010
sonarEdition: 'community'

docs/admin-installation.adoc

+2-2
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 (`master`) into your new local repository at the path `ods-pipeline`.
2121

2222
```
23-
pipelineGitRef=master
23+
pipelineGitRef=v0.1.0
2424
git fetch --depth=1 https://github.com/opendevstack/ods-pipeline.git $pipelineGitRef:ods-pipeline-$pipelineGitRef
2525
git checkout ods-pipeline-$pipelineGitRef
2626
git subtree split --squash --prefix=deploy/central -b subtree-split-branch-$pipelineGitRef
@@ -51,7 +51,7 @@ Now your `ods` namespace is fully setup and users can start to utilize Tekton pi
5151

5252
You may fetch updates (e.g. new versions) of `ods-pipeline` like this:
5353
```
54-
pipelineGitRef=master
54+
pipelineGitRef=v0.1.0
5555
git fetch --depth=1 https://github.com/opendevstack/ods-pipeline.git $pipelineGitRef:ods-pipeline-$pipelineGitRef
5656
git checkout ods-pipeline-$pipelineGitRef
5757
git subtree split --squash --prefix=deploy/central -b subtree-split-branch-$pipelineGitRef

docs/user-installation.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ First, create a repository in Bitbucket, e.g. `foo-cd`. The name can be anything
2525
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/cd-namespace`) from the `opendestack/ods-pipeline` repository at the given revision (`master`) into your new local repository at the path `ods-pipeline`.
2626

2727
```
28-
pipelineGitRef=master
28+
pipelineGitRef=v0.1.0
2929
git fetch --depth=1 https://github.com/opendevstack/ods-pipeline.git $pipelineGitRef:ods-pipeline-$pipelineGitRef
3030
git checkout ods-pipeline-$pipelineGitRef
3131
git subtree split --squash --prefix=deploy/cd-namespace -b subtree-split-branch-$pipelineGitRef
@@ -50,7 +50,7 @@ Now your cd namespace is fully setup and you can start to utilize Tekton pipelin
5050

5151
You may fetch updates (e.g. new versions) of `ods-pipeline` like this:
5252
```
53-
pipelineGitRef=master
53+
pipelineGitRef=v0.1.0
5454
git fetch --depth=1 https://github.com/opendevstack/ods-pipeline.git $pipelineGitRef:ods-pipeline-$pipelineGitRef
5555
git checkout ods-pipeline-$pipelineGitRef
5656
git subtree split --squash --prefix=deploy/cd-namespace -b subtree-split-branch-$pipelineGitRef

0 commit comments

Comments
 (0)