Skip to content

Commit af2bf34

Browse files
Merge pull request #26 from segmentio/yolken-increase-min-helm-version
Require helm >= 3.5
2 parents 6410d2a + db3cd48 commit af2bf34

File tree

4 files changed

+76
-113
lines changed

4 files changed

+76
-113
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ environments. We welcome feedback and collaboration to make `kubeapply` useful t
5757
`kubeapply` depends on the following tools:
5858

5959
- [`kubectl`](https://kubernetes.io/docs/tasks/tools/install-kubectl/): v1.13 or newer
60-
- [`helm`](https://helm.sh/docs/intro/install/): v3.2.0 or newer (only needed if using helm charts)
60+
- [`helm`](https://helm.sh/docs/intro/install/): v3.5.0 or newer (only needed if using helm charts)
6161
- [`kubeval`](https://kubeval.instrumenta.dev/installation/): v1.13 or newer
6262

6363
Make sure that they're installed locally and available in your path.

cmd/kubeapply/subcmd/expand.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const (
2323
noExpandFile = ".noexpand"
2424

2525
// Require a minimum helm version to ensure that expansion works properly
26-
helmVersionConstraint = ">= 3.2"
26+
helmVersionConstraint = ">= 3.5"
2727
)
2828

2929
var expandCmd = &cobra.Command{

data/data.go

Lines changed: 73 additions & 110 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
package version
22

33
// Version stores the current kubeapply version.
4-
const Version = "0.0.23"
4+
const Version = "0.0.24"

0 commit comments

Comments
 (0)