Skip to content

Commit

Permalink
Set version to v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsauter committed Oct 5, 2021
1 parent c839e65 commit 78c2139
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion deploy/central/images-chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
imageTag: 0.1.0
taskSuffix: -v0-1-0
odsPipelineGitRepoUri: https://github.com/opendevstack/ods-pipeline
odsPipelineGitRepoRef: master
odsPipelineGitRepoRef: v0.1.0
aquasecScannerUrl: ''
sonarEdition: 'community'
4 changes: 2 additions & 2 deletions docs/admin-installation.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ First, create a repository in Bitbucket, e.g. `ods`. The name can be anything, b
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`.

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

You may fetch updates (e.g. new versions) of `ods-pipeline` like this:
```
pipelineGitRef=master
pipelineGitRef=v0.1.0
git fetch --depth=1 https://github.com/opendevstack/ods-pipeline.git $pipelineGitRef:ods-pipeline-$pipelineGitRef
git checkout ods-pipeline-$pipelineGitRef
git subtree split --squash --prefix=deploy/central -b subtree-split-branch-$pipelineGitRef
Expand Down
4 changes: 2 additions & 2 deletions docs/user-installation.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ First, create a repository in Bitbucket, e.g. `foo-cd`. The name can be anything
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`.

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

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

0 comments on commit 78c2139

Please sign in to comment.