You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+31Lines changed: 31 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,34 @@
1
+
v2.6
2
+
----
3
+
### Features 🚀
4
+
* 🚀 **[NEW]** Added **[Helm](https://github.com/helm/helm)** is a tool for managing Charts. Charts are packages of pre-configured Kubernetes resources.
5
+
6
+
Use Helm to:
7
+
8
+
* Lint and Validate your Helm Charts
9
+
* Generate manifests from your Helm Chart Templates
10
+
* Find and use popular software packaged as Helm Charts to run in Kubernetes
11
+
* Share your own applications as Helm Charts
12
+
* Create reproducible builds of your Kubernetes applications
13
+
* Intelligently manage your Kubernetes manifest files
14
+
* Manage releases of Helm packages
15
+
16
+
* 🚀 **[NEW]** Added **[Datree](https://github.com/datreeio/datree)** is a CLI tool that helps prevent Kubernetes misconfigurations from reaching production. Datree is a CLI tool to ensure K8s manifests and Helm charts follow best practices as well as your organization’s policies.
17
+
18
+
The Datree CLI integration provides a policy enforcement solution for Kubernetes to run automatic checks on every code change for rule violations and misconfigurations. When rule violations are found, Datree produces an alert which guides the developer to fix the issue inside the CI process — or even earlier as a pre-commit hook — while explaining the reason behind the rule.
| Kubectl | 1.21.1 | CLI | Kubernetes CLI. Can be used with `--dry-run=client` to validate manifests |
29
+
| Helm | 3.6.0 | CLI | Helm helps you manage Kubernetes applications — define, install, and upgrade Kubernetes applications as helm charts. Run as a validation tool, can be run as `helm lint`, or `helm template`. |
Helm commands to use in CI to lint or validate helm charts.
93
+
94
+
#### helm lint
95
+
examine a chart for possible issues.
96
+
97
+
**NOTE:**
98
+
> `helm lint` by itself is insufficient to adequately validate a helm chart. It is recommended to use `helm lint` and `helm template` in combination with one of the other manifest validation tools. (See below example)
99
+
100
+
This command takes a path to a chart and runs a series of tests to verify that the chart is well-formed.
101
+
102
+
If the linter encounters things that will cause the chart to fail installation, it will emit `[ERROR]` messages. If it encounters issues that break with convention or recommendation, it will emit `[WARNING]` messages.
0 commit comments