initial pixelfed chart commit

This commit is contained in:
jessebot
2024-12-29 18:28:59 +01:00
commit 82408749a8
21 changed files with 1380 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
github: [jessebot]
+11
View File
@@ -0,0 +1,11 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"onboarding": false,
"username": "renovate-release",
"gitAuthor": "Renovate Bot <bot@renovateapp.com>",
"platform": "github",
"repositories": [
"small-hack/pixelfed-chart"
],
"allowedPostUpgradeCommands": ["^scripts"]
}
+106
View File
@@ -0,0 +1,106 @@
name: Lint and Test Chart
on:
pull_request:
paths:
- 'charts/pixelfed/**'
permissions:
contents: read
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: "0"
- name: Install Helm
uses: azure/setup-helm@v4
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.6.1
- name: Run chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }})
if [[ -n "$changed" ]]; then
echo "changed=true" >> "$GITHUB_OUTPUT"
fi
- name: Run chart-testing (lint)
id: lint
if: steps.list-changed.outputs.changed == 'true'
run: ct lint --target-branch ${{ github.event.repository.default_branch }}
test_plain:
name: Test chart plain
runs-on: ubuntu-latest
needs: lint
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: "0"
- name: Install Helm
uses: azure/setup-helm@v4
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.6.1
- name: Run chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }})
if [[ -n "$changed" ]]; then
echo "changed=true" >> "$GITHUB_OUTPUT"
fi
- name: Create kind cluster
uses: helm/kind-action@v1.10.0
if: steps.list-changed.outputs.changed == 'true'
- name: Run chart-testing (install)
id: install
if: steps.list-changed.outputs.changed == 'true'
run: |
ct install --target-branch ${{ github.event.repository.default_branch }}
test_user_creation:
name: Test chart with user creation
runs-on: ubuntu-latest
needs: lint
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: "0"
- name: Install Helm
uses: azure/setup-helm@v4
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.6.1
- name: Run chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }})
if [[ -n "$changed" ]]; then
echo "changed=true" >> "$GITHUB_OUTPUT"
fi
- name: Create kind cluster
uses: helm/kind-action@v1.10.0
if: steps.list-changed.outputs.changed == 'true'
- name: Run chart-testing (install with user creation)
id: install
if: steps.list-changed.outputs.changed == 'true'
run: |
ct install --target-branch ${{ github.event.repository.default_branch }}
+28
View File
@@ -0,0 +1,28 @@
name: Generate helm docs
on:
pull_request:
paths:
- 'charts/pixelfed/Chart.yaml'
- 'charts/pixelfed/values.yaml'
permissions:
contents: write
pull-requests: write
deployments: read
jobs:
update-docs:
name: update-docs
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
- name: Render helm docs inside the README.md and push changes back to PR branch
uses: netfoundry/helm-docs-action@v1
with:
working-dir: charts/pixelfed
git-push: "true"
+36
View File
@@ -0,0 +1,36 @@
name: Release Chart
concurrency: chart_releaser
on:
push:
branches:
- main
paths:
- 'charts/pixelfed/**'
jobs:
release:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Fetch history
run: git fetch --prune --unshallow
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
# See https://github.com/helm/chart-releaser-action/issues/6
- name: Set up Helm
uses: azure/setup-helm@v3.5
with:
version: v3.14.3
- name: Run chart-releaser for pixelfed
uses: helm/chart-releaser-action@v1.6.0
env:
CR_GENERATE_RELEASE_NOTES: true
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
+34
View File
@@ -0,0 +1,34 @@
name: Renovate
on:
schedule:
# This should be every hour
- cron: '0 * * * *'
push:
branches:
- main
paths:
- ".github/renovate-config.json"
- ".github/workflows/renovate.yml"
- "renovate.json"
- "scripts/**"
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Get token
id: get_token
uses: tibdex/github-app-token@v2.1.0
with:
private_key: ${{ secrets.PRIVATE_KEY }}
app_id: ${{ secrets.APP_ID }}
- name: Checkout
uses: actions/checkout@v4.2.0
- name: Self-hosted Renovate
uses: renovatebot/github-action@v40.2.11
with:
token: '${{ steps.get_token.outputs.token }}'
configurationFile: .github/renovate-config.json
env:
LOG_LEVEL: 'debug'