-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from oliverbaehler/master
[housekeeping] Bugfixes & Documentation
- Loading branch information
Showing
23 changed files
with
229 additions
and
276 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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Helm Documentation | ||
on: push | ||
jobs: | ||
documentation: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: alpine | ||
steps: | ||
- name: Install Dependencies | ||
run: | | ||
apk add jq git curl | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Fetch history | ||
run: git fetch --prune --unshallow | ||
|
||
- name: Install Helm Docs | ||
run: | | ||
curl -s -L -o /usr/local/bin/helm-docs.tar.gz "https://github.com/norwoodj/helm-docs/releases/download/$(curl --silent "https://api.github.com/repos/norwoodj/helm-docs/releases/latest" | jq -r .tag_name)/helm-docs_$(curl --silent "https://api.github.com/repos/norwoodj/helm-docs/releases/latest" | jq -r .tag_name | cut -d "v" -f2-)_Linux_x86_64.tar.gz" | ||
cd /usr/local/bin/ && tar xfv helm-docs.tar.gz | ||
chmod +x ./helm-docs | ||
- name: Update Documentation | ||
run: | | ||
git status | ||
CHARTS_ROOT="./charts" | ||
if [ -d "${CHARTS_ROOT}" ]; then | ||
## Generate Documentation | ||
helm-docs | ||
## Push Changes | ||
git config user.name "$GITHUB_ACTOR" | ||
git config user.email "[email protected]" | ||
git add -A | ||
git commit -sam "Update Documentation" || true | ||
git push || true | ||
else | ||
echo -e "\n\e[33m-- Root Direcoty not found: $CHART_ROOT\e[0m" && exit 0; | ||
fi |
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 |
---|---|---|
|
@@ -4,47 +4,8 @@ on: | |
branches: | ||
- master | ||
jobs: | ||
documentation: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: alpine | ||
steps: | ||
- name: Install Dependencies | ||
run: | | ||
apk add jq git curl | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Fetch history | ||
run: git fetch --prune --unshallow | ||
|
||
- name: Install Helm Docs | ||
run: | | ||
curl -s -L -o /usr/local/bin/helm-docs.tar.gz "https://github.com/norwoodj/helm-docs/releases/download/$(curl --silent "https://api.github.com/repos/norwoodj/helm-docs/releases/latest" | jq -r .tag_name)/helm-docs_$(curl --silent "https://api.github.com/repos/norwoodj/helm-docs/releases/latest" | jq -r .tag_name | cut -d "v" -f2-)_Linux_x86_64.tar.gz" | ||
cd /usr/local/bin/ && tar xfv helm-docs.tar.gz | ||
chmod +x ./helm-docs | ||
- name: Update Documentation | ||
run: | | ||
git status | ||
CHARTS_ROOT="./charts" | ||
if [ -d "${CHARTS_ROOT}" ]; then | ||
## Generate Documentation | ||
helm-docs | ||
## Push Changes | ||
git config user.name "$GITHUB_ACTOR" | ||
git config user.email "[email protected]" | ||
git add -A | ||
git commit -sam "Update Documentation" || true | ||
git push || true | ||
else | ||
echo -e "\n\e[33m-- Root Direcoty not found: $CHART_ROOT\e[0m" && exit 0; | ||
fi | ||
release: | ||
runs-on: ubuntu-latest | ||
needs: | ||
- documentation | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
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 |
---|---|---|
|
@@ -24,4 +24,3 @@ | |
|
||
# Custom | ||
README.md.gotmpl | ||
plugin/ |
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
charts/manifests/plugin/values-generator/templates/values-generator.yaml
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.