Skip to content

Commit

Permalink
release v3.0.0-beta6
Browse files Browse the repository at this point in the history
  • Loading branch information
sami-alajrami committed Jan 3, 2020
1 parent b1c3ae8 commit 1719a42
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v3.0.0-beta2
v3.0.0-beta6
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![GitHub version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=gh&type=6&v=v3.0.0-beta5&x2=0)](https://github.com/Praqma/helmsman/releases) [![CircleCI](https://circleci.com/gh/Praqma/helmsman/tree/master.svg?style=svg)](https://circleci.com/gh/Praqma/helmsman/tree/master)
[![GitHub version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=gh&type=6&v=v3.0.0-beta6&x2=0)](https://github.com/Praqma/helmsman/releases) [![CircleCI](https://circleci.com/gh/Praqma/helmsman/tree/master.svg?style=svg)](https://circleci.com/gh/Praqma/helmsman/tree/master)

![helmsman-logo](docs/images/helmsman.png)

Expand Down Expand Up @@ -61,9 +61,9 @@ If you use private helm repos, you will need either `helm-gcs` or `helm-s3` plug
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/v3.0.0-beta5/helmsman_3.0.0-beta5_linux_amd64.tar.gz | tar zx
curl -L https://github.com/Praqma/helmsman/releases/download/v3.0.0-beta6/helmsman_3.0.0-beta6_linux_amd64.tar.gz | tar zx
# on MacOS
curl -L https://github.com/Praqma/helmsman/releases/download/v3.0.0-beta5/helmsman_3.0.0-beta5_darwin_amd64.tar.gz | tar zx
curl -L https://github.com/Praqma/helmsman/releases/download/v3.0.0-beta6/helmsman_3.0.0-beta6_darwin_amd64.tar.gz | tar zx
mv helmsman /usr/local/bin/helmsman
```
Expand Down
10 changes: 1 addition & 9 deletions docs/desired_state_specification.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
version: v3.0.0-beta5
version: v3.0.0-beta6
---

# Helmsman desired state specification
Expand Down Expand Up @@ -121,11 +121,9 @@ kubeContext = "minikube"
# password = "$K8S_PASSWORD"
# clusterURI = "https://192.168.99.100:8443"
## clusterURI= "$K8S_URI"
# serviceAccount = "my-service-account"
# storageBackend = "secret"
# slackWebhook = $MY_SLACK_WEBHOOK
# reverseDelete = false
# tilerless = true
# eyamlEnabled = true
# eyamlPrivateKeyPath = "../keys/custom-key.pem"
# eyamlPublicKeyPath = "../keys/custom-key.pub"
Expand All @@ -138,11 +136,9 @@ settings:
#password: "$K8S_PASSWORD"
#clusterURI: "https://192.168.99.100:8443"
##clusterURI: "$K8S_URI"
#serviceAccount: "my-service-account"
#storageBackend: "secret"
#slackWebhook: "$MY_SLACK_WEBHOOK"
#reverseDelete: false
#tilerless: true
# eyamlEnabled: true
# eyamlPrivateKeyPath: ../keys/custom-key.pem
# eyamlPublicKeyPath: ../keys/custom-key.pub
Expand Down Expand Up @@ -295,15 +291,13 @@ appsTemplates:
default: &template
valuesFile: ""
purge: false
test: true
protected: false
wait: true
enabled: true
custom: &template_custom
valuesFile: ""
purge: true
test: true
protected: false
wait: false
Expand Down Expand Up @@ -380,7 +374,6 @@ Example:
chart = "stable/jenkins"
version = "0.9.0"
valuesFile = ""
purge = false
test = true
protected = false
wait = true
Expand All @@ -407,7 +400,6 @@ apps:
chart: "stable/jenkins"
version: "0.9.0"
valuesFile: ""
purge: false
test: true
protected: false
wait: true
Expand Down
2 changes: 1 addition & 1 deletion examples/example.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# version: v3.0.0-beta5
# version: v3.0.0-beta6

# context defines the context of this Desired State File.
# It is used to allow Helmsman identify which releases are managed by which DSF.
Expand Down
2 changes: 1 addition & 1 deletion examples/example.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# version: v3.0.0-beta5
# version: v3.0.0-beta6
# metadata -- add as many key/value pairs as you want
metadata:
org: "example.com/$ORG_PATH/"
Expand Down
2 changes: 1 addition & 1 deletion internal/app/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

const (
helmBin = "helm"
appVersion = "v3.0.0-beta5"
appVersion = "v3.0.0-beta6"
tempFilesDir = ".helmsman-tmp"
defaultContextName = "default"
)
Expand Down

0 comments on commit 1719a42

Please sign in to comment.