Skip to content

Commit

Permalink
Prepare for 0.2 release (#158)
Browse files Browse the repository at this point in the history
  • Loading branch information
mszostok authored Mar 1, 2021
1 parent 0111294 commit 9347161
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ atlassian-ide-plugin.xml
*.so
*.dylib
/bin
/populator
/ocftool

# Test binary, built with `go test -c`
*.test
Expand Down Expand Up @@ -90,3 +92,4 @@ nosetests.xml
/hack/ci/terraform/terraform.tfstate.backup
/hack/ci/terraform/.terraform.tfstate.lock.info
/hack/ci/terraform/.terraform.lock.hcl

2 changes: 1 addition & 1 deletion cmd/ocftool/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

const (
appName = "ocftool"
version = "0.0.1"
version = "0.2.0"
)

func NewRoot() *cobra.Command {
Expand Down
8 changes: 4 additions & 4 deletions docs/tutorial/jira-installation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -450,11 +450,11 @@ The following section extends the tutorial with additional topics, to let you di

A user consumes content stored in Open Capability Hub (OCH). The content is defined using Open Capability Format (OCF) manifests. The OCF specification defines the shape of manifests that Voltron understands, such as Interface or Implementation.

To see all the manifest that OCH stores, navigate to the [OCH content structure](https://github.com/Project-Voltron/go-voltron/tree/master/och-content).
To see all the manifest that OCH stores, navigate to the [OCH content structure](../../../och-content).

To see the Jira installation manifests, click on the following links:
- [Jira installation Interface](https://github.com/Project-Voltron/go-voltron/tree/master/och-content/interface/productivity/jira/install.yaml) - a generic description of Jira installation (action name, input, and output - a concept similar to interfaces in programming languages),
- [Jira installation Implementation](https://github.com/Project-Voltron/go-voltron/tree/master/och-content/implementation/atlassian/jira/install.yaml) - represents the dynamic workflow for Jira Installation.
- [Jira installation Interface](../../../och-content/interface/productivity/jira/install.yaml) - a generic description of Jira installation (action name, input, and output - a concept similar to interfaces in programming languages),
- [Jira installation Implementation](../../../och-content/implementation/atlassian/jira/install.yaml) - represents the dynamic workflow for Jira Installation.

#### Content development

Expand All @@ -479,5 +479,5 @@ Here are some useful links:

- [Tutorial which shows the first steps on how to develop OCF content for Voltron.](../content-creation/README.md)
- The [OCF Draft v0.0.1](https://docs.google.com/document/d/1ud7xL3bXxEXtVPE8daA_DHYacKHMkn_jx6s7eaVT-NA/edit?usp=drive_web&ouid=115672498843496061020) document.
- [Documentation](https://github.com/Project-Voltron/go-voltron/tree/master/docs), which contains various investigations, enhancement proposals, tutorials, Voltron architecture and development guideline.
- [Documentation](../../../docs), which contains various investigations, enhancement proposals, tutorials, Voltron architecture and development guideline.
- Google Drive folder with the [initial draft concepts](https://drive.google.com/drive/u/1/folders/1SBpIR0QUn9Rp68w6N3G-hqXdi1HfZQsn).
4 changes: 2 additions & 2 deletions docs/tutorial/voltron-installation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ This tutorial shows how to set up a private Google Kubernetes Engine (GKE) clust

### Create GKE private cluster

1. Clone the `master` branch from the `go-voltron` repository.
1. Clone the `release-0.2` branch from the `go-voltron` repository.

```bash
git clone --depth 1 --branch master https://github.com/Project-Voltron/go-voltron.git
git clone --depth 1 --branch release-0.2 https://github.com/Project-Voltron/go-voltron.git
cd ./go-voltron
```

Expand Down

0 comments on commit 9347161

Please sign in to comment.