Skip to content

Commit

Permalink
bumping version to v1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sami-alajrami committed Oct 27, 2018
1 parent 4cd0800 commit 8c0b7ce
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
version: v1.6.3
version: v1.7.0
---

![helmsman-logo](docs/images/helmsman.png)
Expand Down Expand Up @@ -46,19 +46,21 @@ To run a dry-run:

## From binary

Please make sure the following are installed prior to using `helmsman`:
Please make sure the following are installed prior to using `helmsman` as a binary (the docker image contains all of them):

- [kubectl](https://github.com/kubernetes/kubectl)
- [helm](https://github.com/helm/helm)
- [helm](https://github.com/helm/helm) (for `helmsman` >= 1.6.0, use helm >= 2.10.0. this is due to a dependency bug #87 )
- [helm-diff](https://github.com/databus23/helm-diff) (`helmsman` >= 1.6.0)

If you use private helm repos, you will need either `helm-gcs` or `helm-s3` plugin. See the [docs](https://github.com/Praqma/helmsman/blob/master/docs/how_to/use_private_helm_charts.md) for details.


Check the [releases page](https://github.com/Praqma/Helmsman/releases) for the different versions.
```
# on Linux
curl -L https://github.com/Praqma/helmsman/releases/download/v1.6.3/helmsman_1.6.3_linux_amd64.tar.gz | tar zx
curl -L https://github.com/Praqma/helmsman/releases/download/v1.7.0/helmsman_1.7.0_linux_amd64.tar.gz | tar zx
# on MacOS
curl -L https://github.com/Praqma/helmsman/releases/download/v1.6.3/helmsman_1.6.3_darwin_amd64.tar.gz | tar zx
curl -L https://github.com/Praqma/helmsman/releases/download/v1.7.0/helmsman_1.7.0_darwin_amd64.tar.gz | tar zx
mv helmsman /usr/local/bin/helmsman
```
Expand Down
2 changes: 1 addition & 1 deletion docs/desired_state_specification.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
version: v1.6.2
version: v1.7.0
---

# Helmsman desired state specification
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ var checkCleanup bool
var skipValidation bool
var applyLabels bool
var keepUntrackedReleases bool
var appVersion = "v1.6.3"
var appVersion = "v1.7.0"
var helmVersion string
var kubectlVersion string
var dryRun bool
Expand Down
8 changes: 6 additions & 2 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# v1.6.3
# v1.7.0

> If you are already using an older version of Helmsman than v1.4.0-rc, please read the changes below carefully and follow the upgrade guide [here](docs/migrating_to_v1.4.0-rc.md)
- Minor bug fixes and improvements. #104 #106 #85
- Resources (Tillers, namespaces, service accounts) will not be created without the `--apply` flag. Fixes #65 and #100.
- adding `--no-ns` option to prevent helmsman from creating namespaces. This allows users to create namespaces using their own custom charts. Fixes #71 and #100.
- Adding namespace labels. PR #111
- Fixing a bug that deletes untracked releases when running with `--dry-run`. PR #110
- Improving values and secrets file pahts resolution relative to dsf(s). PR #109

0 comments on commit 8c0b7ce

Please sign in to comment.