Skip to content

Commit 26e33fe

Browse files
author
Luis Davim
committed
Prepare release v3.7.5
1 parent 91efec4 commit 26e33fe

File tree

4 files changed

+26
-14
lines changed

4 files changed

+26
-14
lines changed

.version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v3.7.4
1+
v3.7.5

README.md

+22-9
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,34 @@ The desired state file (DSF) follows the [desired state specification](https://g
1818
Helmsman sees what you desire, validates that your desire makes sense (e.g. that the charts you desire are available in the repos you defined), compares it with the current state of Helm and figures out what to do to make your desire come true.
1919

2020
To plan without executing:
21-
``` $ helmsman -f example.toml ```
21+
22+
```sh
23+
helmsman -f example.toml
24+
```
2225

2326
To plan and execute the plan:
24-
``` $ helmsman --apply -f example.toml ```
27+
28+
```sh
29+
helmsman --apply -f example.toml
30+
```
2531

2632
To show debugging details:
27-
``` $ helmsman --debug --apply -f example.toml ```
33+
34+
```sh
35+
helmsman --debug --apply -f example.toml
36+
```
2837

2938
To run a dry-run:
30-
``` $ helmsman --debug --dry-run -f example.toml ```
39+
40+
```sh
41+
helmsman --debug --dry-run -f example.toml
42+
```
3143

3244
To limit execution to specific application:
33-
``` $ helmsman --debug --dry-run --target artifactory -f example.toml ```
45+
46+
```sh
47+
helmsman --debug --dry-run --target artifactory -f example.toml
48+
```
3449

3550
# Features
3651

@@ -61,9 +76,9 @@ Check the [releases page](https://github.com/Praqma/Helmsman/releases) for the d
6176

6277
```sh
6378
# on Linux
64-
curl -L https://github.com/Praqma/helmsman/releases/download/v3.7.4/helmsman_3.7.4_linux_amd64.tar.gz | tar zx
79+
curl -L https://github.com/Praqma/helmsman/releases/download/v3.7.5/helmsman_3.7.5_linux_amd64.tar.gz | tar zx
6580
# on MacOS
66-
curl -L https://github.com/Praqma/helmsman/releases/download/v3.7.4/helmsman_3.7.4_darwin_amd64.tar.gz | tar zx
81+
curl -L https://github.com/Praqma/helmsman/releases/download/v3.7.5/helmsman_3.7.5_darwin_amd64.tar.gz | tar zx
6782

6883
mv helmsman /usr/local/bin/helmsman
6984
```
@@ -81,9 +96,7 @@ Helmsman has been packaged in Archlinux under `helmsman-bin` for the latest bina
8196
> Documentation for Helmsman v1.x can be found at: [docs v1.x](https://github.com/Praqma/helmsman/tree/1.x/docs)
8297
8398
- [How-Tos](https://github.com/Praqma/helmsman/blob/master/docs/how_to/).
84-
8599
- [Desired state specification](https://github.com/Praqma/helmsman/blob/master/docs/desired_state_specification.md).
86-
87100
- [CMD reference](https://github.com/Praqma/helmsman/blob/master/docs/cmd_reference.md)
88101

89102
## Usage

internal/app/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
const (
99
helmBin = "helm"
1010
kubectlBin = "kubectl"
11-
appVersion = "v3.7.4"
11+
appVersion = "v3.7.5"
1212
tempFilesDir = ".helmsman-tmp"
1313
defaultContextName = "default"
1414
resourcePool = 10

release-notes.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
# v3.7.4
1+
# v3.7.5
22

33
## Fixes and improvements
44

5-
- feat: support the new OCI implementation from helm 3.7.0 (#627)
6-
- chore: updated the project to use Go 1.17
5+
- fix: unknown command "chart" for "helm" (#628)

0 commit comments

Comments
 (0)