Compare commits
17 Commits
gitea-acti
...
023d0263be
Author | SHA1 | Date | |
---|---|---|---|
023d0263be
|
|||
dc64cb498e | |||
9646667d75 | |||
1b68fcabf5 | |||
d95b7ef6ac | |||
8f92b4b3ef | |||
2d04080009 | |||
b63140e74f | |||
e430d3fe32 | |||
8e748b7084 | |||
f339e8698c | |||
fbc9293355 | |||
2371aeb612 | |||
799340aa3b | |||
9da5f721c7 | |||
aa919178a4 | |||
55e878d517 |
@@ -1,6 +1,7 @@
|
|||||||
name: lint-and-test-charts
|
name: lint-and-test
|
||||||
|
|
||||||
on: pull_request
|
on:
|
||||||
|
pull_request:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lint-test:
|
lint-test:
|
||||||
@@ -35,4 +36,4 @@ jobs:
|
|||||||
|
|
||||||
- name: Run Chart Testing (lint)
|
- name: Run Chart Testing (lint)
|
||||||
if: steps.list-changed.outputs.changed == 'true'
|
if: steps.list-changed.outputs.changed == 'true'
|
||||||
run: ct lint --target-branch ${{ gitea.event.repository.default_branch }}
|
run: ct lint --validate-maintainers=false --target-branch ${{ gitea.event.repository.default_branch }}
|
||||||
|
@@ -56,11 +56,30 @@ jobs:
|
|||||||
files: |-
|
files: |-
|
||||||
${{ env.PACKAGE_PATH }}
|
${{ env.PACKAGE_PATH }}
|
||||||
|
|
||||||
- name: Actions Ntfy
|
- name: ntfy Success
|
||||||
run: |
|
uses: niniyas/ntfy-action@master
|
||||||
curl \
|
if: success()
|
||||||
-H "Authorization: Bearer ${{ secrets.NTFY_CRED }}" \
|
with:
|
||||||
-H "Title: Chart Released: ${{ env.CHART_NAME }}-${{ env.CHART_VERSION }}" \
|
url: '${{ secrets.NTFY_URL }}'
|
||||||
-H "Content-Type: text/plain" \
|
topic: '${{ secrets.NTFY_TOPIC }}'
|
||||||
-d $'Repo: ${{ gitea.repository }}\nCommit: ${{ gitea.sha }}\nRef: ${{ gitea.ref }}\nStatus: ${{ job.status}}' \
|
title: "Gitea Action"
|
||||||
${{ secrets.NTFY_URL }}
|
priority: 3
|
||||||
|
headers: '{"Authorization": "Bearer ${{ secrets.NTFY_CRED }}"}'
|
||||||
|
tags: action,successfully,completed
|
||||||
|
details: 'Helm Chart for ${{ env.CHART_NAME }} release workflow has successfully completed!'
|
||||||
|
icon: 'https://cdn.jsdelivr.net/gh/selfhst/icons/png/gitea.png'
|
||||||
|
|
||||||
|
- name: ntfy Failed
|
||||||
|
uses: niniyas/ntfy-action@master
|
||||||
|
if: failure()
|
||||||
|
with:
|
||||||
|
url: '${{ secrets.NTFY_URL }}'
|
||||||
|
topic: '${{ secrets.NTFY_TOPIC }}'
|
||||||
|
title: "Gitea Action"
|
||||||
|
priority: 4
|
||||||
|
headers: '{"Authorization": "Bearer ${{ secrets.NTFY_CRED }}"}'
|
||||||
|
tags: action,failed
|
||||||
|
details: 'Helm Chart for ${{ env.CHART_NAME }} release workflow has failed!'
|
||||||
|
icon: 'https://cdn.jsdelivr.net/gh/selfhst/icons/png/gitea.png'
|
||||||
|
actions: '[{"action": "view", "label": "Open Gitea", "url": "https://gitea.alexlebens.dev/alexlebens/helm-charts/actions?workflow=release-charts-${{ env.CHART_NAME }}.yml", "clear": true}]'
|
||||||
|
image: true
|
||||||
|
@@ -56,11 +56,30 @@ jobs:
|
|||||||
files: |-
|
files: |-
|
||||||
${{ env.PACKAGE_PATH }}
|
${{ env.PACKAGE_PATH }}
|
||||||
|
|
||||||
- name: Actions Ntfy
|
- name: ntfy Success
|
||||||
run: |
|
uses: niniyas/ntfy-action@master
|
||||||
curl \
|
if: success()
|
||||||
-H "Authorization: Bearer ${{ secrets.NTFY_CRED }}" \
|
with:
|
||||||
-H "Title: Chart Released: ${{ env.CHART_NAME }}-${{ env.CHART_VERSION }}" \
|
url: '${{ secrets.NTFY_URL }}'
|
||||||
-H "Content-Type: text/plain" \
|
topic: '${{ secrets.NTFY_TOPIC }}'
|
||||||
-d $'Repo: ${{ gitea.repository }}\nCommit: ${{ gitea.sha }}\nRef: ${{ gitea.ref }}\nStatus: ${{ job.status}}' \
|
title: "Gitea Action"
|
||||||
${{ secrets.NTFY_URL }}
|
priority: 3
|
||||||
|
headers: '{"Authorization": "Bearer ${{ secrets.NTFY_CRED }}"}'
|
||||||
|
tags: action,successfully,completed
|
||||||
|
details: 'Helm Chart for ${{ env.CHART_NAME }} release workflow has successfully completed!'
|
||||||
|
icon: 'https://cdn.jsdelivr.net/gh/selfhst/icons/png/gitea.png'
|
||||||
|
|
||||||
|
- name: ntfy Failed
|
||||||
|
uses: niniyas/ntfy-action@master
|
||||||
|
if: failure()
|
||||||
|
with:
|
||||||
|
url: '${{ secrets.NTFY_URL }}'
|
||||||
|
topic: '${{ secrets.NTFY_TOPIC }}'
|
||||||
|
title: "Gitea Action"
|
||||||
|
priority: 4
|
||||||
|
headers: '{"Authorization": "Bearer ${{ secrets.NTFY_CRED }}"}'
|
||||||
|
tags: action,failed
|
||||||
|
details: 'Helm Chart for ${{ env.CHART_NAME }} release workflow has failed!'
|
||||||
|
icon: 'https://cdn.jsdelivr.net/gh/selfhst/icons/png/gitea.png'
|
||||||
|
actions: '[{"action": "view", "label": "Open Gitea", "url": "https://gitea.alexlebens.dev/alexlebens/helm-charts/actions?workflow=release-charts-${{ env.CHART_NAME }}.yml", "clear": true}]'
|
||||||
|
image: true
|
||||||
|
@@ -56,11 +56,30 @@ jobs:
|
|||||||
files: |-
|
files: |-
|
||||||
${{ env.PACKAGE_PATH }}
|
${{ env.PACKAGE_PATH }}
|
||||||
|
|
||||||
- name: Actions Ntfy
|
- name: ntfy Success
|
||||||
run: |
|
uses: niniyas/ntfy-action@master
|
||||||
curl \
|
if: success()
|
||||||
-H "Authorization: Bearer ${{ secrets.NTFY_CRED }}" \
|
with:
|
||||||
-H "Title: Chart Released: ${{ env.CHART_NAME }}-${{ env.CHART_VERSION }}" \
|
url: '${{ secrets.NTFY_URL }}'
|
||||||
-H "Content-Type: text/plain" \
|
topic: '${{ secrets.NTFY_TOPIC }}'
|
||||||
-d $'Repo: ${{ gitea.repository }}\nCommit: ${{ gitea.sha }}\nRef: ${{ gitea.ref }}\nStatus: ${{ job.status}}' \
|
title: "Gitea Action"
|
||||||
${{ secrets.NTFY_URL }}
|
priority: 3
|
||||||
|
headers: '{"Authorization": "Bearer ${{ secrets.NTFY_CRED }}"}'
|
||||||
|
tags: action,successfully,completed
|
||||||
|
details: 'Helm Chart for ${{ env.CHART_NAME }} release workflow has successfully completed!'
|
||||||
|
icon: 'https://cdn.jsdelivr.net/gh/selfhst/icons/png/gitea.png'
|
||||||
|
|
||||||
|
- name: ntfy Failed
|
||||||
|
uses: niniyas/ntfy-action@master
|
||||||
|
if: failure()
|
||||||
|
with:
|
||||||
|
url: '${{ secrets.NTFY_URL }}'
|
||||||
|
topic: '${{ secrets.NTFY_TOPIC }}'
|
||||||
|
title: "Gitea Action"
|
||||||
|
priority: 4
|
||||||
|
headers: '{"Authorization": "Bearer ${{ secrets.NTFY_CRED }}"}'
|
||||||
|
tags: action,failed
|
||||||
|
details: 'Helm Chart for ${{ env.CHART_NAME }} release workflow has failed!'
|
||||||
|
icon: 'https://cdn.jsdelivr.net/gh/selfhst/icons/png/gitea.png'
|
||||||
|
actions: '[{"action": "view", "label": "Open Gitea", "url": "https://gitea.alexlebens.dev/alexlebens/helm-charts/actions?workflow=release-charts-${{ env.CHART_NAME }}.yml", "clear": true}]'
|
||||||
|
image: true
|
||||||
|
@@ -56,11 +56,30 @@ jobs:
|
|||||||
files: |-
|
files: |-
|
||||||
${{ env.PACKAGE_PATH }}
|
${{ env.PACKAGE_PATH }}
|
||||||
|
|
||||||
- name: Actions Ntfy
|
- name: ntfy Success
|
||||||
run: |
|
uses: niniyas/ntfy-action@master
|
||||||
curl \
|
if: success()
|
||||||
-H "Authorization: Bearer ${{ secrets.NTFY_CRED }}" \
|
with:
|
||||||
-H "Title: Chart Released: ${{ env.CHART_NAME }}-${{ env.CHART_VERSION }}" \
|
url: '${{ secrets.NTFY_URL }}'
|
||||||
-H "Content-Type: text/plain" \
|
topic: '${{ secrets.NTFY_TOPIC }}'
|
||||||
-d $'Repo: ${{ gitea.repository }}\nCommit: ${{ gitea.sha }}\nRef: ${{ gitea.ref }}\nStatus: ${{ job.status}}' \
|
title: "Gitea Action"
|
||||||
${{ secrets.NTFY_URL }}
|
priority: 3
|
||||||
|
headers: '{"Authorization": "Bearer ${{ secrets.NTFY_CRED }}"}'
|
||||||
|
tags: action,successfully,completed
|
||||||
|
details: 'Helm Chart for ${{ env.CHART_NAME }} release workflow has successfully completed!'
|
||||||
|
icon: 'https://cdn.jsdelivr.net/gh/selfhst/icons/png/gitea.png'
|
||||||
|
|
||||||
|
- name: ntfy Failed
|
||||||
|
uses: niniyas/ntfy-action@master
|
||||||
|
if: failure()
|
||||||
|
with:
|
||||||
|
url: '${{ secrets.NTFY_URL }}'
|
||||||
|
topic: '${{ secrets.NTFY_TOPIC }}'
|
||||||
|
title: "Gitea Action"
|
||||||
|
priority: 4
|
||||||
|
headers: '{"Authorization": "Bearer ${{ secrets.NTFY_CRED }}"}'
|
||||||
|
tags: action,failed
|
||||||
|
details: 'Helm Chart for ${{ env.CHART_NAME }} release workflow has failed!'
|
||||||
|
icon: 'https://cdn.jsdelivr.net/gh/selfhst/icons/png/gitea.png'
|
||||||
|
actions: '[{"action": "view", "label": "Open Gitea", "url": "https://gitea.alexlebens.dev/alexlebens/helm-charts/actions?workflow=release-charts-${{ env.CHART_NAME }}.yml", "clear": true}]'
|
||||||
|
image: true
|
||||||
|
82
.gitea/workflows/release-charts.yml
Normal file
82
.gitea/workflows/release-charts.yml
Normal file
@@ -0,0 +1,82 @@
|
|||||||
|
name: release-charts
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- "charts/**"
|
||||||
|
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
release:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set up Helm
|
||||||
|
uses: azure/setup-helm@v4
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GITEA_TOKEN }}
|
||||||
|
version: latest
|
||||||
|
|
||||||
|
- name: Package Helm Chart
|
||||||
|
run: |
|
||||||
|
cd $WORKFLOW_DIR
|
||||||
|
helm dependency build
|
||||||
|
echo "PACKAGE_PATH=$(helm package . | awk '{print $NF}')" >> $GITEA_ENV
|
||||||
|
|
||||||
|
- name: Publish Helm Chart to Harbor
|
||||||
|
run: |
|
||||||
|
helm registry login ${{ vars.REGISTRY_HOST }} -u ${{ vars.REGISTRY_USER }} -p ${{ secrets.REGISTRY_SECRET }}
|
||||||
|
helm push ${{ env.PACKAGE_PATH }} oci://${{ vars.REGISTRY_HOST }}/helm-charts
|
||||||
|
|
||||||
|
- name: Publish Helm Chart to Gitea
|
||||||
|
run: |
|
||||||
|
helm plugin install https://github.com/chartmuseum/helm-push
|
||||||
|
helm repo add --username ${{ gitea.actor }} --password ${{ secrets.REPOSITORY_TOKEN }} helm-charts https://${{ vars.REPOSITORY_HOST }}/api/packages/alexlebens/helm
|
||||||
|
helm cm-push ${{ env.PACKAGE_PATH }} helm-charts
|
||||||
|
|
||||||
|
- name: Extract Chart Metadata
|
||||||
|
run: |
|
||||||
|
cd $WORKFLOW_DIR
|
||||||
|
echo "CHART_VERSION=$(yq '.version' Chart.yaml)" >> $GITEA_ENV
|
||||||
|
echo "CHART_NAME=$(yq '.name' Chart.yaml)" >> $GITEA_ENV
|
||||||
|
|
||||||
|
- name: Release Helm Chart
|
||||||
|
uses: akkuman/gitea-release-action@v1
|
||||||
|
with:
|
||||||
|
name: ${{ env.CHART_NAME }}-${{ env.CHART_VERSION }}
|
||||||
|
tag_name: ${{ env.CHART_NAME }}-${{ env.CHART_VERSION }}
|
||||||
|
files: |-
|
||||||
|
${{ env.PACKAGE_PATH }}
|
||||||
|
|
||||||
|
- name: ntfy Success
|
||||||
|
uses: niniyas/ntfy-action@master
|
||||||
|
if: success()
|
||||||
|
with:
|
||||||
|
url: '${{ secrets.NTFY_URL }}'
|
||||||
|
topic: '${{ secrets.NTFY_TOPIC }}'
|
||||||
|
title: "Gitea Action"
|
||||||
|
priority: 3
|
||||||
|
headers: '{"Authorization": "Bearer ${{ secrets.NTFY_CRED }}"}'
|
||||||
|
tags: action,successfully,completed
|
||||||
|
details: 'Helm Chart for ${{ env.CHART_NAME }} release workflow has successfully completed!'
|
||||||
|
icon: 'https://cdn.jsdelivr.net/gh/selfhst/icons/png/gitea.png'
|
||||||
|
|
||||||
|
- name: ntfy Failed
|
||||||
|
uses: niniyas/ntfy-action@master
|
||||||
|
if: failure()
|
||||||
|
with:
|
||||||
|
url: '${{ secrets.NTFY_URL }}'
|
||||||
|
topic: '${{ secrets.NTFY_TOPIC }}'
|
||||||
|
title: "Gitea Action"
|
||||||
|
priority: 4
|
||||||
|
headers: '{"Authorization": "Bearer ${{ secrets.NTFY_CRED }}"}'
|
||||||
|
tags: action,failed
|
||||||
|
details: 'Helm Chart for ${{ env.CHART_NAME }} release workflow has failed!'
|
||||||
|
icon: 'https://cdn.jsdelivr.net/gh/selfhst/icons/png/gitea.png'
|
||||||
|
actions: '[{"action": "view", "label": "Open Gitea", "url": "https://gitea.alexlebens.dev/alexlebens/helm-charts/actions?workflow=release-charts.yml", "clear": true}]'
|
||||||
|
image: true
|
@@ -15,16 +15,18 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: ghcr.io/renovatebot/renovate:40
|
container: ghcr.io/renovatebot/renovate:40
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- name: Checkout
|
||||||
- run: renovate
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Renovate
|
||||||
|
run: renovate
|
||||||
env:
|
env:
|
||||||
RENOVATE_PLATFORM: gitea
|
RENOVATE_PLATFORM: gitea
|
||||||
RENOVATE_AUTODISCOVER: true
|
RENOVATE_ENDPOINT: ${{ vars.INSTANCE_URL }}
|
||||||
RENOVATE_ONBOARDING: true
|
RENOVATE_REPOSITORIES: alexlebens/helm-charts
|
||||||
RENOVATE_ENDPOINT: http://gitea-http.gitea:3000
|
|
||||||
RENOVATE_GIT_AUTHOR: Renovate Bot <renovate-bot@alexlebens.net>
|
RENOVATE_GIT_AUTHOR: Renovate Bot <renovate-bot@alexlebens.net>
|
||||||
LOG_LEVEL: debug
|
LOG_LEVEL: info
|
||||||
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
|
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
|
||||||
RENOVATE_GIT_PRIVATE_KEY: ${{ secrets.RENOVATE_GIT_PRIVATE_KEY }}
|
RENOVATE_GIT_PRIVATE_KEY: ${{ secrets.RENOVATE_GIT_PRIVATE_KEY }}
|
||||||
RENOVATE_GITHUB_COM_TOKEN: ${{ secrets.RENOVATE_GITHUB_COM_TOKEN }}
|
RENOVATE_GITHUB_COM_TOKEN: ${{ secrets.RENOVATE_GITHUB_COM_TOKEN }}
|
||||||
RENOVATE_REDIS_URL: redis://gitea-renovate-valkey-primary.gitea:6379
|
RENOVATE_REDIS_URL: ${{ vars.RENOVATE_REDIS_URL }}
|
||||||
|
75
.gitea/workflows/tag-old-issues.yaml
Normal file
75
.gitea/workflows/tag-old-issues.yaml
Normal file
@@ -0,0 +1,75 @@
|
|||||||
|
name: tag-old-issues
|
||||||
|
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: "@daily"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
tag-old-issues:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Tag Old Issues
|
||||||
|
env:
|
||||||
|
BOT_TOKEN: ${{ secrets.BOT_TOKEN }}
|
||||||
|
INSTANCE_URL: ${{ vars.INSTANCE_URL }}
|
||||||
|
REPO_OWNER: ${{ github.repository_owner }}
|
||||||
|
REPO_NAME: ${{ github.repository_name }}
|
||||||
|
TAG_NAME: 'stale'
|
||||||
|
DAYS_OLD: 3
|
||||||
|
EXCLUDE_TAG_NAME: ''
|
||||||
|
REQUIRED_TAG: 'automerge'
|
||||||
|
run: |
|
||||||
|
# Install necessary tools
|
||||||
|
apt-get update && apt-get install -y jq curl
|
||||||
|
|
||||||
|
# --- Conditionally build the API URL ---
|
||||||
|
API_URL="${GITEA_INSTANCE_URL}/api/v1/repos/${REPO_OWNER}/${REPO_NAME}/issues?state=open"
|
||||||
|
if [[ -n "${REQUIRED_TAG}" ]]; then
|
||||||
|
echo "Filtering for issues with the required tag: ${REQUIRED_TAG}"
|
||||||
|
# URL-encode the tag to handle special characters
|
||||||
|
ENCODED_TAG=$(jq -s -R -r @uri <<< "${REQUIRED_TAG}")
|
||||||
|
API_URL="${API_URL}&labels=${ENCODED_TAG}"
|
||||||
|
else
|
||||||
|
echo "No required tag specified. Checking all open issues."
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Fetch issues using the constructed URL
|
||||||
|
ISSUES=$(curl -s -X GET \
|
||||||
|
-H "Authorization: token ${BOT_TOKEN}" \
|
||||||
|
-H "Accept: application/json" \
|
||||||
|
"${API_URL}")
|
||||||
|
|
||||||
|
# Calculate the date ${DAYS_OLD} days ago in ISO 8601 format
|
||||||
|
OLDER_THAN_DATE=$(date -d "-${DAYS_OLD} days" -u +"%Y-%m-%dT%H:%M:%SZ")
|
||||||
|
|
||||||
|
# Filter issues older than the specified date and without the exclusion tag
|
||||||
|
echo "$ISSUES" | jq -c '.[] | select(.created_at < "'"$OLDER_THAN_DATE"'")' | while read -r issue; do
|
||||||
|
ISSUE_NUMBER=$(echo "$issue" | jq -r '.number')
|
||||||
|
LABELS=$(echo "$issue" | jq -r '.labels[].name')
|
||||||
|
|
||||||
|
# Check if the issue has the exclusion tag
|
||||||
|
if ! echo "$LABELS" | grep -q -w "${EXCLUDE_TAG_NAME}"; then
|
||||||
|
echo "Tagging issue #${ISSUE_NUMBER} as ${TAG_NAME}"
|
||||||
|
|
||||||
|
# Get existing labels for the issue
|
||||||
|
EXISTING_LABELS=$(curl -s -X GET \
|
||||||
|
-H "Authorization: token ${BOT_TOKEN}" \
|
||||||
|
-H "Accept: application/json" \
|
||||||
|
"${INSTANCE_URL}/api/v1/repos/${REPO_OWNER}/${REPO_NAME}/issues/${ISSUE_NUMBER}/labels" | jq -r '.[].name')
|
||||||
|
|
||||||
|
# Add the new tag to the list of existing labels
|
||||||
|
NEW_LABELS=$(echo -e "${EXISTING_LABELS}\n${TAG_NAME}" | sort -u | jq -R -s -c 'split("\n") | map(select(length > 0))')
|
||||||
|
|
||||||
|
# Update the issue with the new set of labels
|
||||||
|
curl -s -X PUT \
|
||||||
|
-H "Authorization: token ${BOT_TOKEN}" \
|
||||||
|
-H "Content-Type: application/json" \
|
||||||
|
-d "{\"labels\": $(echo "$NEW_LABELS" | jq -r 'map(select(. != ""))')}" \
|
||||||
|
"${INSTANCE_URL}/api/v1/repos/${REPO_OWNER}/${REPO_NAME}/issues/${ISSUE_NUMBER}/labels"
|
||||||
|
else
|
||||||
|
echo "Skipping issue #${ISSUE_NUMBER} because it has the '${EXCLUDE_TAG_NAME}' tag."
|
||||||
|
fi
|
||||||
|
done
|
@@ -1,6 +1,6 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: gitea-actions
|
name: gitea-actions
|
||||||
version: 0.1.0
|
version: 0.2.1
|
||||||
description: Gitea Actions
|
description: Gitea Actions
|
||||||
keywords:
|
keywords:
|
||||||
- cicd
|
- cicd
|
||||||
@@ -12,4 +12,4 @@ sources:
|
|||||||
maintainers:
|
maintainers:
|
||||||
- name: alexlebens
|
- name: alexlebens
|
||||||
icon: https://avatars.githubusercontent.com/u/100373852?s=48&v=4
|
icon: https://avatars.githubusercontent.com/u/100373852?s=48&v=4
|
||||||
appVersion: 0.261.3
|
appVersion: 0.2.11
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
# gitea-actions
|
# gitea-actions
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Gitea Actions
|
Gitea Actions
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ Gitea Actions
|
|||||||
|
|
||||||
| Key | Type | Default | Description |
|
| Key | Type | Default | Description |
|
||||||
|-----|------|---------|-------------|
|
|-----|------|---------|-------------|
|
||||||
| enabled | bool | `false` | |
|
| enabled | bool | `true` | |
|
||||||
| existingSecret | string | `""` | |
|
| existingSecret | string | `""` | |
|
||||||
| existingSecretKey | string | `""` | |
|
| existingSecretKey | string | `""` | |
|
||||||
| giteaRootURL | string | `""` | |
|
| giteaRootURL | string | `""` | |
|
||||||
@@ -27,26 +27,8 @@ Gitea Actions
|
|||||||
| global.imageRegistry | string | `""` | |
|
| global.imageRegistry | string | `""` | |
|
||||||
| global.nameOverride | string | `""` | |
|
| global.nameOverride | string | `""` | |
|
||||||
| global.storageClass | string | `""` | |
|
| global.storageClass | string | `""` | |
|
||||||
| image.digest | string | `""` | |
|
|
||||||
| image.fullOverride | string | `""` | |
|
|
||||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
|
||||||
| image.registry | string | `"docker.gitea.com"` | |
|
|
||||||
| image.repository | string | `"gitea"` | |
|
|
||||||
| image.rootless | bool | `true` | |
|
|
||||||
| image.tag | string | `""` | |
|
|
||||||
| init.image.repository | string | `"busybox"` | |
|
| init.image.repository | string | `"busybox"` | |
|
||||||
| init.image.tag | string | `"1.37.0"` | |
|
| init.image.tag | string | `"1.37.0"` | |
|
||||||
| persistence.accessModes[0] | string | `"ReadWriteOnce"` | |
|
|
||||||
| persistence.annotations."helm.sh/resource-policy" | string | `"keep"` | |
|
|
||||||
| persistence.claimName | string | `"gitea-shared-storage"` | |
|
|
||||||
| persistence.create | bool | `true` | |
|
|
||||||
| persistence.enabled | bool | `true` | |
|
|
||||||
| persistence.labels | object | `{}` | |
|
|
||||||
| persistence.mount | bool | `true` | |
|
|
||||||
| persistence.size | string | `"10Gi"` | |
|
|
||||||
| persistence.storageClass | string | `nil` | |
|
|
||||||
| persistence.subPath | string | `nil` | |
|
|
||||||
| persistence.volumeName | string | `""` | |
|
|
||||||
| statefulset.actRunner.config | string | `"log:\n level: debug\ncache:\n enabled: false\n"` | |
|
| statefulset.actRunner.config | string | `"log:\n level: debug\ncache:\n enabled: false\n"` | |
|
||||||
| statefulset.actRunner.extraVolumeMounts | list | `[]` | |
|
| statefulset.actRunner.extraVolumeMounts | list | `[]` | |
|
||||||
| statefulset.actRunner.pullPolicy | string | `"IfNotPresent"` | |
|
| statefulset.actRunner.pullPolicy | string | `"IfNotPresent"` | |
|
||||||
@@ -63,6 +45,7 @@ Gitea Actions
|
|||||||
| statefulset.labels | object | `{}` | |
|
| statefulset.labels | object | `{}` | |
|
||||||
| statefulset.nodeSelector | object | `{}` | |
|
| statefulset.nodeSelector | object | `{}` | |
|
||||||
| statefulset.persistence.size | string | `"1Gi"` | |
|
| statefulset.persistence.size | string | `"1Gi"` | |
|
||||||
|
| statefulset.persistence.storageClass | string | `""` | |
|
||||||
| statefulset.replicas | int | `1` | |
|
| statefulset.replicas | int | `1` | |
|
||||||
| statefulset.resources | object | `{}` | |
|
| statefulset.resources | object | `{}` | |
|
||||||
| statefulset.tolerations | list | `[]` | |
|
| statefulset.tolerations | list | `[]` | |
|
||||||
|
@@ -33,34 +33,11 @@ Create chart name and version as used by the chart label.
|
|||||||
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
|
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
{{/*
|
|
||||||
Create image name and tag used by the deployment.
|
|
||||||
*/}}
|
|
||||||
{{- define "gitea.actions.image" -}}
|
|
||||||
{{- $fullOverride := .Values.image.fullOverride | default "" -}}
|
|
||||||
{{- $registry := .Values.global.imageRegistry | default .Values.image.registry -}}
|
|
||||||
{{- $repository := .Values.image.repository -}}
|
|
||||||
{{- $separator := ":" -}}
|
|
||||||
{{- $tag := .Values.image.tag | default .Chart.AppVersion | toString -}}
|
|
||||||
{{- $rootless := ternary "-rootless" "" (.Values.image.rootless) -}}
|
|
||||||
{{- $digest := "" -}}
|
|
||||||
{{- if .Values.image.digest }}
|
|
||||||
{{- $digest = (printf "@%s" (.Values.image.digest | toString)) -}}
|
|
||||||
{{- end -}}
|
|
||||||
{{- if $fullOverride }}
|
|
||||||
{{- printf "%s" $fullOverride -}}
|
|
||||||
{{- else if $registry }}
|
|
||||||
{{- printf "%s/%s%s%s%s%s" $registry $repository $separator $tag $rootless $digest -}}
|
|
||||||
{{- else -}}
|
|
||||||
{{- printf "%s%s%s%s%s" $repository $separator $tag $rootless $digest -}}
|
|
||||||
{{- end -}}
|
|
||||||
{{- end -}}
|
|
||||||
|
|
||||||
{{/*
|
{{/*
|
||||||
Storage Class
|
Storage Class
|
||||||
*/}}
|
*/}}
|
||||||
{{- define "gitea.actions.persistence.storageClass" -}}
|
{{- define "gitea.actions.persistence.storageClass" -}}
|
||||||
{{- $storageClass := (tpl ( default "" .Values.persistence.storageClass) .) | default (tpl ( default "" .Values.global.storageClass) .) }}
|
{{- $storageClass := (tpl ( default "" .Values.statefulset.persistence.storageClass) .) | default (tpl ( default "" .Values.global.storageClass) .) }}
|
||||||
{{- if $storageClass }}
|
{{- if $storageClass }}
|
||||||
storageClassName: {{ $storageClass | quote }}
|
storageClassName: {{ $storageClass | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
@@ -73,8 +50,8 @@ Common labels
|
|||||||
helm.sh/chart: {{ include "gitea.actions.chart" . }}
|
helm.sh/chart: {{ include "gitea.actions.chart" . }}
|
||||||
app: {{ include "gitea.actions.name" . }}
|
app: {{ include "gitea.actions.name" . }}
|
||||||
{{ include "gitea.actions.selectorLabels" . }}
|
{{ include "gitea.actions.selectorLabels" . }}
|
||||||
app.kubernetes.io/version: {{ .Values.image.tag | default .Chart.AppVersion | quote }}
|
app.kubernetes.io/version: {{ .Values.statefulset.actRunner.tag | default .Chart.AppVersion | quote }}
|
||||||
version: {{ .Values.image.tag | default .Chart.AppVersion | quote }}
|
version: {{ .Values.statefulset.actRunner.tag | default .Chart.AppVersion | quote }}
|
||||||
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
@@ -82,8 +59,8 @@ app.kubernetes.io/managed-by: {{ .Release.Service }}
|
|||||||
helm.sh/chart: {{ include "gitea.actions.chart" . }}
|
helm.sh/chart: {{ include "gitea.actions.chart" . }}
|
||||||
app: {{ include "gitea.actions.name" . }}-act-runner
|
app: {{ include "gitea.actions.name" . }}-act-runner
|
||||||
{{ include "gitea.actions.selectorLabels.actRunner" . }}
|
{{ include "gitea.actions.selectorLabels.actRunner" . }}
|
||||||
app.kubernetes.io/version: {{ .Values.image.tag | default .Chart.AppVersion | quote }}
|
app.kubernetes.io/version: {{ .Values.statefulset.actRunner.tag | default .Chart.AppVersion | quote }}
|
||||||
version: {{ .Values.image.tag | default .Chart.AppVersion | quote }}
|
version: {{ .Values.statefulset.actRunner.tag | default .Chart.AppVersion | quote }}
|
||||||
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
@@ -37,7 +37,7 @@
|
|||||||
## @param existingSecret Secret that contains the token
|
## @param existingSecret Secret that contains the token
|
||||||
## @param existingSecretKey Secret key
|
## @param existingSecretKey Secret key
|
||||||
## @param giteaRootURL URL the act_runner registers and connect with
|
## @param giteaRootURL URL the act_runner registers and connect with
|
||||||
enabled: false
|
enabled: true
|
||||||
statefulset:
|
statefulset:
|
||||||
replicas: 1
|
replicas: 1
|
||||||
annotations: {}
|
annotations: {}
|
||||||
@@ -75,6 +75,7 @@ statefulset:
|
|||||||
# value: "1"
|
# value: "1"
|
||||||
|
|
||||||
persistence:
|
persistence:
|
||||||
|
storageClass: ""
|
||||||
size: 1Gi
|
size: 1Gi
|
||||||
|
|
||||||
init:
|
init:
|
||||||
@@ -90,52 +91,6 @@ existingSecretKey: ""
|
|||||||
## Specify the root URL of the Gitea instance
|
## Specify the root URL of the Gitea instance
|
||||||
giteaRootURL: ""
|
giteaRootURL: ""
|
||||||
|
|
||||||
## @section Persistence
|
|
||||||
#
|
|
||||||
## @param persistence.enabled Enable persistent storage
|
|
||||||
## @param persistence.create Whether to create the persistentVolumeClaim for shared storage
|
|
||||||
## @param persistence.mount Whether the persistentVolumeClaim should be mounted (even if not created)
|
|
||||||
## @param persistence.claimName Use an existing claim to store repository information
|
|
||||||
## @param persistence.size Size for persistence to store repo information
|
|
||||||
## @param persistence.accessModes AccessMode for persistence
|
|
||||||
## @param persistence.labels Labels for the persistence volume claim to be created
|
|
||||||
## @param persistence.annotations.helm.sh/resource-policy Resource policy for the persistence volume claim
|
|
||||||
## @param persistence.storageClass Name of the storage class to use
|
|
||||||
## @param persistence.subPath Subdirectory of the volume to mount at
|
|
||||||
## @param persistence.volumeName Name of persistent volume in PVC
|
|
||||||
persistence:
|
|
||||||
enabled: true
|
|
||||||
create: true
|
|
||||||
mount: true
|
|
||||||
claimName: gitea-shared-storage
|
|
||||||
size: 10Gi
|
|
||||||
accessModes:
|
|
||||||
- ReadWriteOnce
|
|
||||||
labels: {}
|
|
||||||
storageClass:
|
|
||||||
subPath:
|
|
||||||
volumeName: ""
|
|
||||||
annotations:
|
|
||||||
helm.sh/resource-policy: keep
|
|
||||||
|
|
||||||
## @section Image
|
|
||||||
## @param image.registry image registry, e.g. gcr.io,docker.io
|
|
||||||
## @param image.repository Image to start for this pod
|
|
||||||
## @param image.tag Visit: [Image tag](https://hub.docker.com/r/gitea/gitea/tags?page=1&ordering=last_updated). Defaults to `appVersion` within Chart.yaml.
|
|
||||||
## @param image.digest Image digest. Allows to pin the given image tag. Useful for having control over mutable tags like `latest`
|
|
||||||
## @param image.pullPolicy Image pull policy
|
|
||||||
## @param image.rootless Wether or not to pull the rootless version of Gitea, only works on Gitea 1.14.x or higher
|
|
||||||
## @param image.fullOverride Completely overrides the image registry, path/image, tag and digest. **Adjust `image.rootless` accordingly and review [Rootless defaults](#rootless-defaults).**
|
|
||||||
image:
|
|
||||||
registry: "docker.gitea.com"
|
|
||||||
repository: gitea
|
|
||||||
# Overrides the image tag whose default is the chart appVersion.
|
|
||||||
tag: ""
|
|
||||||
digest: ""
|
|
||||||
pullPolicy: IfNotPresent
|
|
||||||
rootless: true
|
|
||||||
fullOverride: ""
|
|
||||||
|
|
||||||
## @section Global
|
## @section Global
|
||||||
#
|
#
|
||||||
## @param global.imageRegistry global image registry override
|
## @param global.imageRegistry global image registry override
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: postgres-cluster
|
name: postgres-cluster
|
||||||
version: 6.4.4
|
version: 6.4.5
|
||||||
description: Cloudnative-pg Cluster
|
description: Cloudnative-pg Cluster
|
||||||
keywords:
|
keywords:
|
||||||
- database
|
- database
|
||||||
|
@@ -21,7 +21,7 @@ cluster:
|
|||||||
# -- Default image
|
# -- Default image
|
||||||
image:
|
image:
|
||||||
repository: ghcr.io/cloudnative-pg/postgresql
|
repository: ghcr.io/cloudnative-pg/postgresql
|
||||||
tag: "17.5-1-bullseye"
|
tag: "17.5-standard-bullseye"
|
||||||
|
|
||||||
# -- Image pull policy. One of Always, Never or IfNotPresent. If not defined, it defaults to IfNotPresent. Cannot be updated.
|
# -- Image pull policy. One of Always, Never or IfNotPresent. If not defined, it defaults to IfNotPresent. Cannot be updated.
|
||||||
# More info: https://kubernetes.io/docs/concepts/containers/images#updating-images
|
# More info: https://kubernetes.io/docs/concepts/containers/images#updating-images
|
||||||
|
@@ -19,7 +19,14 @@
|
|||||||
"addLabels": [
|
"addLabels": [
|
||||||
"chart"
|
"chart"
|
||||||
],
|
],
|
||||||
"automerge": false
|
"automerge": false,
|
||||||
|
"bumpVersions": [
|
||||||
|
{
|
||||||
|
"filePatterns": ["{{packageFileDir}}/Chart.{yaml,yml}"],
|
||||||
|
"matchStrings": ["version:\\s(?<version>[^\\s]+)"],
|
||||||
|
"bumpType": "{{#if isPatch}}patch{{else}}minor{{/if}}"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"description": "Label images",
|
"description": "Label images",
|
||||||
@@ -29,7 +36,14 @@
|
|||||||
"addLabels": [
|
"addLabels": [
|
||||||
"image"
|
"image"
|
||||||
],
|
],
|
||||||
"automerge": false
|
"automerge": false,
|
||||||
|
"bumpVersions": [
|
||||||
|
{
|
||||||
|
"filePatterns": ["{{packageFileDir}}/Chart.{yaml,yml}"],
|
||||||
|
"matchStrings": ["version:\\s(?<version>[^\\s]+)"],
|
||||||
|
"bumpType": "{{#if isPatch}}patch{{else}}minor{{/if}}"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"description": "CNPG image",
|
"description": "CNPG image",
|
||||||
@@ -43,7 +57,14 @@
|
|||||||
"image"
|
"image"
|
||||||
],
|
],
|
||||||
"automerge": false,
|
"automerge": false,
|
||||||
"versioning": "deb"
|
"versioning": "deb",
|
||||||
|
"bumpVersions": [
|
||||||
|
{
|
||||||
|
"filePatterns": ["{{packageFileDir}}/Chart.{yaml,yml}"],
|
||||||
|
"matchStrings": ["version:\\s(?<version>[^\\s]+)"],
|
||||||
|
"bumpType": "{{#if isPatch}}patch{{else}}minor{{/if}}"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user