777 on new scripts (+2 squashed commit)
Squashed commit: [9ae7dd0f] add helm-docs to workflow [2206f5ba] fix small typo in workflows (+1 squashed commits) Squashed commits: [29c2ceb4] Documentation-Cleanup (#181) * work on readme generation * document windows setup * add simple pre-commit install script * more docs for git setup * Update pre-commit * pre-commit automatic fixes * Increase all patch versions * Auto Readme and Config doc * Auto app-readme.md generation * increase common and common-test versions accordingly (due to cleanup) * move contribution guidelines to /development in wiki * fix some end-of-line issues (again) * fix line 14 of workflows
This commit is contained in:
committed by
kjeld Schouten-Lebbing
parent
94a6d6f9e1
commit
1d51be0e3d
6
.github/workflows/chart-testing.yml
vendored
6
.github/workflows/chart-testing.yml
vendored
@@ -43,7 +43,7 @@ jobs:
|
||||
run: ct lint --config .github/ct.yaml --charts 'library/common'
|
||||
- name: Create kind cluster
|
||||
uses: helm/kind-action@v1.1.0
|
||||
|
||||
|
||||
common-unittest:
|
||||
runs-on: ubuntu-latest
|
||||
needs: common-lint
|
||||
@@ -72,7 +72,7 @@ jobs:
|
||||
bundle install
|
||||
- name: Run tests
|
||||
run: |
|
||||
bundle exec m -r .test/charts
|
||||
bundle exec m -r .tools/tests/charts
|
||||
|
||||
|
||||
chart-tests:
|
||||
@@ -100,4 +100,4 @@ jobs:
|
||||
sudo pip3 install -U catalog_validation/.
|
||||
|
||||
- name: Validate changed charts
|
||||
run: /bin/bash -c "PWD=${pwd}; sudo /usr/local/bin/charts_validate deploy --path $PWD"
|
||||
run: /bin/bash -c "PWD=${pwd}; sudo /usr/local/bin/charts_validate deploy --path $PWD"
|
||||
|
||||
55
.github/workflows/charts-release.yaml
vendored
55
.github/workflows/charts-release.yaml
vendored
@@ -3,56 +3,26 @@ name: "Charts: Release"
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- charts
|
||||
tags-ignore:
|
||||
- '**'
|
||||
paths:
|
||||
- 'charts/**'
|
||||
- '!charts/**/*.md'
|
||||
- '!charts/**/README.md'
|
||||
- '!charts/**/README.md.gotmpl'
|
||||
- '!charts/**/app-readme.md'
|
||||
- '!charts/**/app-readme.md.gotmpl'
|
||||
- '!charts/**/docs/*'
|
||||
- 'library/**'
|
||||
- '!library/**/*.md'
|
||||
- '!library/**/README.md'
|
||||
- '!library/**/README.md.gotmpl'
|
||||
- '!library/**/app-readme.md'
|
||||
- '!library/**/app-readme.md.gotmpl'
|
||||
- '!library/**/docs/*'
|
||||
|
||||
jobs:
|
||||
copy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout-Master
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
ref: 'master'
|
||||
path: 'master'
|
||||
- name: Checkout-Charts
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
ref: 'charts'
|
||||
path: 'charts'
|
||||
|
||||
- name: Generate Helm Structure
|
||||
run: |
|
||||
cd master
|
||||
rm -Rf ../charts/charts/*
|
||||
for chart in charts/*; do
|
||||
if [ -d "${chart}" ]; then
|
||||
maxversion=$(ls -l ${chart} | grep ^d | awk '{print $9}' | tail -n 1)
|
||||
chartname=$(basename ${chart})
|
||||
echo "Processing ${chart} version ${maxversion}"
|
||||
mv ${chart}/${maxversion} ../charts/charts/${chartname}
|
||||
rm ../charts/charts/${chartname}/Chart.lock || echo "chart.lock missing for ${chartname}, continuing..."
|
||||
fi
|
||||
done
|
||||
mv library/* ../charts/charts/
|
||||
ls ../charts/charts/
|
||||
cd ..
|
||||
|
||||
- name: Commit and push updated charts
|
||||
run: |
|
||||
cd charts
|
||||
git config user.name "$GITHUB_ACTOR"
|
||||
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
|
||||
git add --all
|
||||
git commit -sm "Publish Chart updates" || exit 0
|
||||
git push
|
||||
|
||||
pre-release:
|
||||
needs: copy
|
||||
runs-on: ubuntu-latest
|
||||
@@ -79,7 +49,6 @@ jobs:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
ref: 'charts'
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Configure Git
|
||||
@@ -97,7 +66,7 @@ jobs:
|
||||
charts_repo_url: https://charts.truecharts.org/
|
||||
env:
|
||||
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
||||
|
||||
|
||||
# Update the generated timestamp in the index.yaml
|
||||
# needed until https://github.com/helm/chart-releaser/issues/90
|
||||
# or helm/chart-releaser-action supports this
|
||||
|
||||
2
.github/workflows/charts-renovate.yaml
vendored
2
.github/workflows/charts-renovate.yaml
vendored
@@ -16,7 +16,7 @@ jobs:
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
token: ${{ secrets.RENOVPUSH }}
|
||||
|
||||
|
||||
- name: Configure Git
|
||||
run: |
|
||||
git config user.name "$GITHUB_ACTOR"
|
||||
|
||||
64
.github/workflows/charts-restructure.yaml
vendored
Normal file
64
.github/workflows/charts-restructure.yaml
vendored
Normal file
@@ -0,0 +1,64 @@
|
||||
name: "Charts: Release"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
tags-ignore:
|
||||
- '**'
|
||||
paths:
|
||||
- 'charts/**'
|
||||
- '!charts/**/*.md'
|
||||
- '!charts/**/README.md'
|
||||
- '!charts/**/README.md.gotmpl'
|
||||
- '!charts/**/app-readme.md'
|
||||
- '!charts/**/app-readme.md.gotmpl'
|
||||
- '!charts/**/docs/*'
|
||||
- 'library/**'
|
||||
- '!library/**/*.md'
|
||||
- '!library/**/README.md'
|
||||
- '!library/**/README.md.gotmpl'
|
||||
- '!library/**/app-readme.md'
|
||||
- '!library/**/app-readme.md.gotmpl'
|
||||
- '!library/**/docs/*'
|
||||
|
||||
jobs:
|
||||
copy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout-Master
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
ref: 'master'
|
||||
path: 'master'
|
||||
- name: Checkout-Charts
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
ref: 'charts'
|
||||
path: 'charts'
|
||||
|
||||
- name: Generate Helm Structure
|
||||
run: |
|
||||
cd master
|
||||
rm -Rf ../charts/charts/*
|
||||
for chart in charts/*; do
|
||||
if [ -d "${chart}" ]; then
|
||||
maxversion=$(ls -l ${chart} | grep ^d | awk '{print $9}' | tail -n 1)
|
||||
chartname=$(basename ${chart})
|
||||
echo "Processing ${chart} version ${maxversion}"
|
||||
mv ${chart}/${maxversion} ../charts/charts/${chartname}
|
||||
rm ../charts/charts/${chartname}/Chart.lock || echo "chart.lock missing for ${chartname}, continuing..."
|
||||
fi
|
||||
done
|
||||
mv library/* ../charts/charts/
|
||||
ls ../charts/charts/
|
||||
cd ..
|
||||
|
||||
- name: Commit and push updated charts
|
||||
run: |
|
||||
cd charts
|
||||
git config user.name "$GITHUB_ACTOR"
|
||||
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
|
||||
git add --all
|
||||
git commit -sm "Publish Chart updates" || exit 0
|
||||
git push
|
||||
41
.github/workflows/wiki-create-docs.yaml
vendored
41
.github/workflows/wiki-create-docs.yaml
vendored
@@ -28,24 +28,37 @@ jobs:
|
||||
repository: 'truecharts/wiki'
|
||||
path: 'wiki'
|
||||
token: ${{ secrets.RENOVPUSH }}
|
||||
|
||||
|
||||
- name: install helm-docs
|
||||
run: |
|
||||
brew install norwoodj/tap/helm-docs
|
||||
|
||||
- name: (re)generate docs
|
||||
run: |
|
||||
cd master
|
||||
.tools/gen-helm-docs.sh
|
||||
cd ..
|
||||
|
||||
- name: Clean-Wiki
|
||||
run: |
|
||||
rm -Rf wiki/content
|
||||
mkdir -p wiki/content
|
||||
mkdir -p wiki/content/development
|
||||
cp -f wiki/CNAME wiki/content/CNAME
|
||||
|
||||
|
||||
- name: Create general wiki
|
||||
run: |
|
||||
cd master
|
||||
# for doc in docs/*; do
|
||||
# if [ -d "${doc}" ]; then
|
||||
# docname=$(basename ${doc})
|
||||
# cp -Rf docs/${docname} ../wiki/content/
|
||||
# fi
|
||||
# done
|
||||
for doc in .github/docs/*; do
|
||||
if [ -d "${doc}" ]; then
|
||||
docname=$(basename ${doc})
|
||||
cp -Rf ${doc} ../wiki/content/
|
||||
fi
|
||||
done
|
||||
cp .github/README.md ../wiki/content/index.md || echo "readme copy failed, continuing..."
|
||||
cp .github/CODE_OF_CONDUCT ../wiki/content/code_of_conduct.md || echo "CODE_OF_CONDUCT copy failed, continuing..."
|
||||
cp .github/CONTRIBUTING ../wiki/content/contributing.md || echo "CONTRIBUTING copy failed, continuing..."
|
||||
cp .github/CONTRIBUTING ../wiki/content/development/contributing.md || echo "CONTRIBUTING copy failed, continuing..."
|
||||
ls ../wiki/content/
|
||||
cd ..
|
||||
|
||||
@@ -65,7 +78,7 @@ jobs:
|
||||
ls ../wiki/content/apps/
|
||||
cd ..
|
||||
|
||||
- name: Commit and push updated charts
|
||||
- name: Commit and push updated wiki
|
||||
run: |
|
||||
cd wiki
|
||||
git config user.name "$GITHUB_ACTOR"
|
||||
@@ -73,3 +86,13 @@ jobs:
|
||||
git add --all
|
||||
git commit -sm "Publish general wiki updates" || exit 0
|
||||
git push
|
||||
cd ..
|
||||
|
||||
- name: Commit and push updated charts
|
||||
run: |
|
||||
cd master
|
||||
git config user.name "$GITHUB_ACTOR"
|
||||
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
|
||||
git add --all
|
||||
git commit -sm "Publish docs updates" || exit 0
|
||||
git push
|
||||
|
||||
Reference in New Issue
Block a user