-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
88e0838
commit 8ad9823
Showing
7 changed files
with
51 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ apiVersion: v2 | |
name: openvpn-as | ||
description: A Helm chart for Kubernetes | ||
type: application | ||
version: 0.1.4 | ||
version: 0.1.5 | ||
appVersion: version-2.8.6-916f8e7d-ubuntu18 | ||
maintainers: | ||
- email: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Githooks | ||
|
||
This project takes advantange of [git-hooks](https://github.com/git-hooks/git-hooks) to ensure code quality. | ||
|
||
Whenever a commit is done, some quick and basic validations will be performed. | ||
See the `githooks` folder for more info. | ||
|
||
## Requirements | ||
|
||
- [helm-docs](https://github.com/norwoodj/helm-docs) | ||
|
||
## Installation | ||
|
||
```bash | ||
brew install norwoodj/tap/helm-docs | ||
brew install git-hooks-go | ||
``` | ||
|
||
## Enable | ||
|
||
```bash | ||
git hook install | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
echo "==> Generating docs..." | ||
helm-docs 2> /dev/null | ||
|
||
[[ $(git diff charts/*/README.md) ]] && (echo "==> ERROR: documentation updated" && exit 1) | ||
|
||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/bash | ||
|
||
echo "==> Running helm template..." | ||
ct lint --config ct.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
echo "==> Running helm template..." | ||
for chart in charts/* | ||
do | ||
helm template $chart > /dev/null | ||
done |