Automated Manifest Update: 2025-11-30 #2154
@@ -8,12 +8,15 @@ on:
|
|||||||
- "clusters/**"
|
- "clusters/**"
|
||||||
- ! "clusters/*/archive"
|
- ! "clusters/*/archive"
|
||||||
|
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
env:
|
||||||
|
CLUSTERS: cl01tl
|
||||||
|
BASE_BRANCH: manifests
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
render-manifests-helm:
|
render-manifests-helm:
|
||||||
runs-on: ubuntu-js
|
runs-on: ubuntu-js
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
pull-requests: write
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v6
|
uses: actions/checkout@v6
|
||||||
@@ -24,71 +27,200 @@ jobs:
|
|||||||
uses: azure/setup-helm@v4
|
uses: azure/setup-helm@v4
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITEA_TOKEN }}
|
token: ${{ secrets.GITEA_TOKEN }}
|
||||||
version: latest
|
version: v3.17.2 # Pending https://github.com/helm/helm/pull/30743
|
||||||
|
|
||||||
- name: Render Helm Manifests
|
- name: Render Helm Manifests
|
||||||
env:
|
|
||||||
CLUSTERS: cl01tl
|
|
||||||
run: |
|
run: |
|
||||||
for cluster in $CLUSTERS; do
|
for cluster in ${CLUSTERS}; do
|
||||||
mkdir clusters/$CLUSTER/manifests
|
mkdir -p ${{ gitea.workspace }}/clusters/$cluster/manifests
|
||||||
|
|
||||||
for chart_path in clusters/$CLUSTER/helm/; do
|
for chart_path in ${{ gitea.workspace }}/clusters/$cluster/helm/*; do
|
||||||
chart_name=$(basename "$chart")
|
chart_name=$(basename "$chart_path")
|
||||||
|
|
||||||
echo "--- Rendering chart: $chart_name ---"
|
echo ">> Rendering chart: $chart_name"
|
||||||
|
|
||||||
if [ -f "$chart_path/Chart.yaml" ]; then
|
if [ -f "$chart_path/Chart.yaml" ]; then
|
||||||
OUTPUT_FILE="clusters/$CLUSTER/manifests/$chart_name.yaml"
|
mkdir -p ${{ gitea.workspace }}/clusters/$cluster/manifests/$chart_name
|
||||||
|
OUTPUT_FILE="${{ gitea.workspace }}/clusters/$cluster/manifests/$chart_name/$chart_name.yaml"
|
||||||
|
|
||||||
helm template "$chart_name" "$chart" --namespace "$chart_name" > "$OUTPUT_FILE"
|
cd $chart_path
|
||||||
|
|
||||||
echo "Manifests for $chart_name rendered to $OUTPUT_FILE"
|
echo ""
|
||||||
|
echo ">> Building helm dependency ..."
|
||||||
|
helm dependency build
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo ">> Linting helm ..."
|
||||||
|
helm lint --namespace "$chart_name" --with-subcharts
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo ">> Rendering templates ..."
|
||||||
|
helm template "$chart_name" ./ --namespace "$chart_name" --include-crds > "$OUTPUT_FILE"
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo ">> Manifests for $chart_name rendered to $OUTPUT_FILE"
|
||||||
|
echo ""
|
||||||
else
|
else
|
||||||
echo "Directory $chart_path does not contain a Chart.yaml. Skipping ..."
|
echo ""
|
||||||
|
echo ">> Directory $chart_path does not contain a Chart.yaml. Skipping ..."
|
||||||
|
echo ""
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# - name: Create Pull Request
|
||||||
|
# id: pull-request
|
||||||
|
# uses: github.com/quentinlegot/gitea-create-pull-request@c05fb67b080696dcdb2d2b7ea83051ec413f7285
|
||||||
|
# with:
|
||||||
|
# token: ${{ secrets.BOT_TOKEN }}
|
||||||
|
# add-paths: |
|
||||||
|
# clusters/cl01tl/manifests/*
|
||||||
|
# commit-message: "chore: Update manifests after chart change"
|
||||||
|
# committer: gitea-bot <gitea-bot@alexlebens.net>
|
||||||
|
# author: gitea-bot <gitea-bot@alexlebens.net>
|
||||||
|
# branch: auto/update-manifests
|
||||||
|
# branch-suffix: timestamp
|
||||||
|
# base: manifests
|
||||||
|
# title: "Manifest Update"
|
||||||
|
# body: |
|
||||||
|
# This PR contains the newly rendered Kubernetes manifests.
|
||||||
|
|
||||||
|
# * Triggered by workflow run ${{ github.run_id }}
|
||||||
|
# * Review the `files changed` tab for the full YAML diff.
|
||||||
|
# labels: |
|
||||||
|
# manifests
|
||||||
|
# automated
|
||||||
|
|
||||||
|
- name: Check for Changes
|
||||||
|
id: check-changes
|
||||||
|
run: |
|
||||||
|
git restore clusters/**/helm
|
||||||
|
|
||||||
|
if git status --porcelain | grep -q .; then
|
||||||
|
echo ">> Changes detected"
|
||||||
|
git status --porcelain
|
||||||
|
echo "changes-detected=true" >> $GITEA_OUTPUT
|
||||||
|
else
|
||||||
|
echo ">> No changes detected, skipping PR creation"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Commit and Push Changes
|
||||||
|
id: commit-push
|
||||||
|
if: steps.check-changes.outputs.changes-detected == 'true'
|
||||||
|
run: |
|
||||||
|
BRANCH_NAME="auto/update-manifests-$(date +%s)"
|
||||||
|
|
||||||
|
# Configure Git
|
||||||
|
echo ">> Configure git to use gitea-bot as user ..."
|
||||||
|
git config user.name "gitea-bot"
|
||||||
|
git config user.email "gitea-bot@alexlebens.net"
|
||||||
|
|
||||||
|
# Create a new branch and stage all changes
|
||||||
|
echo ">> Creating and commiting to $BRANCH_NAME ..."
|
||||||
|
git checkout -b $BRANCH_NAME
|
||||||
|
git add .
|
||||||
|
git commit -m "chore: Update manifests after change"
|
||||||
|
|
||||||
|
# Push the new branch to the remote repository
|
||||||
|
REPO_URL="${{ secrets.REPO_URL }}/${{ gitea.repository }}"
|
||||||
|
echo ">> Pushing changes to $REPO_URL ..."
|
||||||
|
git push -u "https://oauth2:${{ secrets.BOT_TOKEN }}@$(echo $REPO_URL | sed -e 's|https://||')" $BRANCH_NAME
|
||||||
|
|
||||||
|
echo "HEAD_BRANCH=$BRANCH_NAME" >> $GITEA_OUTPUT
|
||||||
|
echo "push=true" >> $GITEA_OUTPUT
|
||||||
|
|
||||||
- name: Create Pull Request
|
- name: Create Pull Request
|
||||||
uses: peter-evans/create-pull-request@v7
|
id: create-pull-request
|
||||||
with:
|
if: steps.commit-push.outputs.push == 'true'
|
||||||
token: ${{ secrets.GITEA_TOKEN }}
|
env:
|
||||||
commit-message: "chore: Update manifests after chart change"
|
GITEA_TOKEN: ${{ secrets.BOT_TOKEN }}
|
||||||
branch: auto/update-manifests
|
GITEA_URL: ${{ secrets.REPO_URL }}
|
||||||
base: manifests
|
HEAD_BRANCH: ${{ steps.commit-push.outputs.HEAD_BRANCH }}
|
||||||
title: "Manifest Update: App Changes"
|
run: |
|
||||||
body: |
|
API_ENDPOINT="${GITEA_URL}/api/v1/repos/${{ gitea.repository }}/pulls"
|
||||||
This PR contains the newly rendered Kubernetes manifests.
|
|
||||||
|
|
||||||
* Triggered by workflow run ${{ github.run_id }}
|
PAYLOAD=$( jq -n \
|
||||||
* Review the `files changed` tab for the full YAML diff.
|
--arg head "${HEAD_BRANCH}" \
|
||||||
add-paths: "clusters/*/rendered-manifests/"
|
--arg base "${BASE_BRANCH}" \
|
||||||
|
--arg title "Automated Manifest Update: $(date +%F)" \
|
||||||
|
--arg body "This PR contains newly rendered Kubernetes manifests automatically generated by the CI workflow." \
|
||||||
|
'{head: $head, base: $base, title: $title, body: $body'} )
|
||||||
|
|
||||||
- name: ntfy Success
|
echo ">> Creating PR from branch ${HEAD_BRANCH} into ${BASE_BRANCH}"
|
||||||
uses: niniyas/ntfy-action@master
|
echo ">> With Endpoint of:"
|
||||||
if: success()
|
echo "$API_ENDPOINT"
|
||||||
with:
|
echo ">> With Payload of:"
|
||||||
url: "${{ secrets.NTFY_URL }}"
|
echo "$PAYLOAD"
|
||||||
topic: "${{ secrets.NTFY_TOPIC }}"
|
|
||||||
title: "Manifest Render Success - Infrastructure"
|
|
||||||
priority: 3
|
|
||||||
headers: '{"Authorization": "Bearer ${{ secrets.NTFY_CRED }}"}'
|
|
||||||
tags: action,successfully,completed
|
|
||||||
details: "Manifest rendering for Infrastructure has succeeded"
|
|
||||||
icon: "https://cdn.jsdelivr.net/gh/selfhst/icons/png/gitea.png"
|
|
||||||
|
|
||||||
- name: ntfy Failed
|
HTTP_STATUS=$(
|
||||||
uses: niniyas/ntfy-action@master
|
curl -X POST \
|
||||||
if: failure()
|
--silent \
|
||||||
with:
|
--write-out '%{http_code}' \
|
||||||
url: "${{ secrets.NTFY_URL }}"
|
--output response_body.json \
|
||||||
topic: "${{ secrets.NTFY_TOPIC }}"
|
--dump-header response_headers.txt \
|
||||||
title: "Manifest Render Failure - Infrastructure"
|
--data "$PAYLOAD" \
|
||||||
priority: 4
|
-H "Authorization: token ${GITEA_TOKEN}" \
|
||||||
headers: '{"Authorization": "Bearer ${{ secrets.NTFY_CRED }}"}'
|
-H "Content-Type: application/json" \
|
||||||
tags: action,failed
|
"$API_ENDPOINT" 2> response_errors.txt
|
||||||
details: "Manifest rendering for Infrastructure 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/infrastructure/actions?workflow=render-manifests.yaml", "clear": true}]'
|
echo ">> HTTP Status Code: $HTTP_STATUS"
|
||||||
image: true
|
echo ">> Response Output ..."
|
||||||
|
echo "----"
|
||||||
|
cat response_body.json
|
||||||
|
echo "----"
|
||||||
|
cat response_headers.txt
|
||||||
|
echo "----"
|
||||||
|
cat response_errors.txt
|
||||||
|
echo "----"
|
||||||
|
|
||||||
|
if [ "$HTTP_STATUS" == "201" ]; then
|
||||||
|
echo ">> Pull Request created successfully!"
|
||||||
|
|
||||||
|
PR_URL=$(cat response_body.json | jq -r .html_url)
|
||||||
|
echo "pull-request-url=${PR_URL}" >> $GITEA_OUTPUT
|
||||||
|
echo "pull-request-operation=created" >> $GITEA_OUTPUT
|
||||||
|
|
||||||
|
elif [ "$HTTP_STATUS" == "422" ]; then
|
||||||
|
echo ">> Failed to create PR (HTTP 422: Unprocessable Entity), PR may already exist"
|
||||||
|
else
|
||||||
|
echo ">> Failed to create PR, HTTP status code: $HTTP_STATUS"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Cleanup Branch
|
||||||
|
if: failure() && steps.create-pull-request.outcome == 'failure'
|
||||||
|
env:
|
||||||
|
HEAD_BRANCH: ${{ steps.commit-push.outputs.HEAD_BRANCH }}
|
||||||
|
run: |
|
||||||
|
echo ">> Removing branch: ${HEAD_BRANCH}"
|
||||||
|
git push origin --delete ${HEAD_BRANCH}
|
||||||
|
|
||||||
|
# - name: ntfy Created
|
||||||
|
# uses: niniyas/ntfy-action@master
|
||||||
|
# if: steps.create-pull-request.outputs.pull-request-operation == 'created'
|
||||||
|
# with:
|
||||||
|
# url: "${{ secrets.NTFY_URL }}"
|
||||||
|
# topic: "${{ secrets.NTFY_TOPIC }}"
|
||||||
|
# title: "Manifest Render PR Created - Infrastructure"
|
||||||
|
# priority: 3
|
||||||
|
# headers: '{"Authorization": "Bearer ${{ secrets.NTFY_CRED }}"}'
|
||||||
|
# tags: action,successfully,completed
|
||||||
|
# details: "Manifest rendering for Infrastructure has created PR ${{ steps.pull-request.outputs.pull-request-number }}!"
|
||||||
|
# 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: "Manifest Render Failure - Infrastructure"
|
||||||
|
# priority: 4
|
||||||
|
# headers: '{"Authorization": "Bearer ${{ secrets.NTFY_CRED }}"}'
|
||||||
|
# tags: action,failed
|
||||||
|
# details: "Manifest rendering for Infrastructure 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/infrastructure/actions?workflow=render-manifests.yaml", "clear": true}]'
|
||||||
|
# image: true
|
||||||
|
|||||||
6
clusters/cl01tl/helm/actual/Chart.lock
Normal file
6
clusters/cl01tl/helm/actual/Chart.lock
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
digest: sha256:b5d823171e1b4dc1d3856f782f0c67cbb5d49e4fa170df2f21b06303c7aff7f5
|
||||||
|
generated: "2025-11-30T23:27:10.361283184Z"
|
||||||
BIN
clusters/cl01tl/helm/actual/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/actual/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
6
clusters/cl01tl/helm/audiobookshelf/Chart.lock
Normal file
6
clusters/cl01tl/helm/audiobookshelf/Chart.lock
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
digest: sha256:f3a9990542f24965fadad0b5493059b78cdc3fae91c8214577fa6f41ca5f7de3
|
||||||
|
generated: "2025-11-30T23:27:11.358580377Z"
|
||||||
Binary file not shown.
6
clusters/cl01tl/helm/bazarr/Chart.lock
Normal file
6
clusters/cl01tl/helm/bazarr/Chart.lock
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
digest: sha256:c6f6d1f2fb9fedf54094920737a6f0bd1a2ab89f0a4122966ca98f6c9d3f11fa
|
||||||
|
generated: "2025-11-30T23:27:12.405323732Z"
|
||||||
BIN
clusters/cl01tl/helm/bazarr/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/bazarr/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
9
clusters/cl01tl/helm/booklore/Chart.lock
Normal file
9
clusters/cl01tl/helm/booklore/Chart.lock
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
- name: mariadb-cluster
|
||||||
|
repository: https://helm.mariadb.com/mariadb-operator
|
||||||
|
version: 25.10.2
|
||||||
|
digest: sha256:264725306c1d1f38140293c0820abdc7e8aa4f39764b4d91e20200705ce2ec91
|
||||||
|
generated: "2025-11-30T23:27:13.599598965Z"
|
||||||
BIN
clusters/cl01tl/helm/booklore/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/booklore/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
BIN
clusters/cl01tl/helm/booklore/charts/mariadb-cluster-25.10.2.tgz
Normal file
BIN
clusters/cl01tl/helm/booklore/charts/mariadb-cluster-25.10.2.tgz
Normal file
Binary file not shown.
9
clusters/cl01tl/helm/code-server/Chart.lock
Normal file
9
clusters/cl01tl/helm/code-server/Chart.lock
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
- name: cloudflared
|
||||||
|
repository: oci://harbor.alexlebens.net/helm-charts
|
||||||
|
version: 1.23.0
|
||||||
|
digest: sha256:99eb4f940077dc916f5425d196232fcd363223fa7b7b5d3889f5965aa59e26f5
|
||||||
|
generated: "2025-11-30T23:27:15.057431074Z"
|
||||||
BIN
clusters/cl01tl/helm/code-server/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/code-server/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
BIN
clusters/cl01tl/helm/code-server/charts/cloudflared-1.23.0.tgz
Normal file
BIN
clusters/cl01tl/helm/code-server/charts/cloudflared-1.23.0.tgz
Normal file
Binary file not shown.
12
clusters/cl01tl/helm/directus/Chart.lock
Normal file
12
clusters/cl01tl/helm/directus/Chart.lock
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
- name: cloudflared
|
||||||
|
repository: oci://harbor.alexlebens.net/helm-charts
|
||||||
|
version: 1.23.0
|
||||||
|
- name: postgres-cluster
|
||||||
|
repository: oci://harbor.alexlebens.net/helm-charts
|
||||||
|
version: 6.16.0
|
||||||
|
digest: sha256:2f3d9f7a8d8d71b19ff3292993647d22a89aa6c444a6f0819b82cd0a577f1ebc
|
||||||
|
generated: "2025-11-30T23:27:16.216258441Z"
|
||||||
BIN
clusters/cl01tl/helm/directus/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/directus/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
BIN
clusters/cl01tl/helm/directus/charts/cloudflared-1.23.0.tgz
Normal file
BIN
clusters/cl01tl/helm/directus/charts/cloudflared-1.23.0.tgz
Normal file
Binary file not shown.
BIN
clusters/cl01tl/helm/directus/charts/postgres-cluster-6.16.0.tgz
Normal file
BIN
clusters/cl01tl/helm/directus/charts/postgres-cluster-6.16.0.tgz
Normal file
Binary file not shown.
9
clusters/cl01tl/helm/element-web/Chart.lock
Normal file
9
clusters/cl01tl/helm/element-web/Chart.lock
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: element-web
|
||||||
|
repository: https://ananace.gitlab.io/charts
|
||||||
|
version: 1.4.24
|
||||||
|
- name: cloudflared
|
||||||
|
repository: oci://harbor.alexlebens.net/helm-charts
|
||||||
|
version: 1.23.0
|
||||||
|
digest: sha256:05aa032adca6d808215d6dcd5d7e38b821a740a53868238f79adaa606444b3ae
|
||||||
|
generated: "2025-11-30T23:27:17.736763383Z"
|
||||||
BIN
clusters/cl01tl/helm/element-web/charts/cloudflared-1.23.0.tgz
Normal file
BIN
clusters/cl01tl/helm/element-web/charts/cloudflared-1.23.0.tgz
Normal file
Binary file not shown.
BIN
clusters/cl01tl/helm/element-web/charts/element-web-1.4.24.tgz
Normal file
BIN
clusters/cl01tl/helm/element-web/charts/element-web-1.4.24.tgz
Normal file
Binary file not shown.
6
clusters/cl01tl/helm/ephemera/Chart.lock
Normal file
6
clusters/cl01tl/helm/ephemera/Chart.lock
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
digest: sha256:9900009eb6415344d8c5387371a0052259092d92f34c21774f6a6abe9f11f43e
|
||||||
|
generated: "2025-11-30T23:27:20.052909524Z"
|
||||||
BIN
clusters/cl01tl/helm/ephemera/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/ephemera/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
12
clusters/cl01tl/helm/freshrss/Chart.lock
Normal file
12
clusters/cl01tl/helm/freshrss/Chart.lock
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
- name: cloudflared
|
||||||
|
repository: oci://harbor.alexlebens.net/helm-charts
|
||||||
|
version: 1.23.0
|
||||||
|
- name: postgres-cluster
|
||||||
|
repository: oci://harbor.alexlebens.net/helm-charts
|
||||||
|
version: 6.16.0
|
||||||
|
digest: sha256:1c1355c247383bb5aef029eaadaf0c6bbcc23c0e42868178c1ea9a9ab21cc704
|
||||||
|
generated: "2025-11-30T23:27:20.963497944Z"
|
||||||
BIN
clusters/cl01tl/helm/freshrss/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/freshrss/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
BIN
clusters/cl01tl/helm/freshrss/charts/cloudflared-1.23.0.tgz
Normal file
BIN
clusters/cl01tl/helm/freshrss/charts/cloudflared-1.23.0.tgz
Normal file
Binary file not shown.
BIN
clusters/cl01tl/helm/freshrss/charts/postgres-cluster-6.16.0.tgz
Normal file
BIN
clusters/cl01tl/helm/freshrss/charts/postgres-cluster-6.16.0.tgz
Normal file
Binary file not shown.
6
clusters/cl01tl/helm/home-assistant/Chart.lock
Normal file
6
clusters/cl01tl/helm/home-assistant/Chart.lock
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
digest: sha256:ae6008e107c25dc25e6f595f783d137273207aeb06a8ece9fbba0d895cc0d729
|
||||||
|
generated: "2025-11-30T23:27:22.403119591Z"
|
||||||
Binary file not shown.
9
clusters/cl01tl/helm/homepage-dev/Chart.lock
Normal file
9
clusters/cl01tl/helm/homepage-dev/Chart.lock
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
- name: cloudflared
|
||||||
|
repository: oci://harbor.alexlebens.net/helm-charts
|
||||||
|
version: 1.23.0
|
||||||
|
digest: sha256:1bcc384dc2dc0a521600c90b8040f0cac9d706bde76419386d5eb7408e45169a
|
||||||
|
generated: "2025-11-30T23:27:24.298026141Z"
|
||||||
BIN
clusters/cl01tl/helm/homepage-dev/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/homepage-dev/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
BIN
clusters/cl01tl/helm/homepage-dev/charts/cloudflared-1.23.0.tgz
Normal file
BIN
clusters/cl01tl/helm/homepage-dev/charts/cloudflared-1.23.0.tgz
Normal file
Binary file not shown.
6
clusters/cl01tl/helm/homepage/Chart.lock
Normal file
6
clusters/cl01tl/helm/homepage/Chart.lock
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
digest: sha256:fe69d34709d7f0c3674453013c0e76d6064531134404de8f4e72fb509b98bcb0
|
||||||
|
generated: "2025-11-30T23:27:23.393740575Z"
|
||||||
BIN
clusters/cl01tl/helm/homepage/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/homepage/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
6
clusters/cl01tl/helm/huntarr/Chart.lock
Normal file
6
clusters/cl01tl/helm/huntarr/Chart.lock
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
digest: sha256:23e60d425ef97edda213f29628f29adca4b82dd68c75f764fd83fd865acd8c70
|
||||||
|
generated: "2025-11-30T23:27:25.556597612Z"
|
||||||
BIN
clusters/cl01tl/helm/huntarr/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/huntarr/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
9
clusters/cl01tl/helm/immich/Chart.lock
Normal file
9
clusters/cl01tl/helm/immich/Chart.lock
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
- name: postgres-cluster
|
||||||
|
repository: oci://harbor.alexlebens.net/helm-charts
|
||||||
|
version: 6.16.0
|
||||||
|
digest: sha256:6c1412459bf39357f20db21735f64dc4f5fe2a0a746d19a78ddff43801610991
|
||||||
|
generated: "2025-11-30T23:27:26.357002823Z"
|
||||||
BIN
clusters/cl01tl/helm/immich/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/immich/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
BIN
clusters/cl01tl/helm/immich/charts/postgres-cluster-6.16.0.tgz
Normal file
BIN
clusters/cl01tl/helm/immich/charts/postgres-cluster-6.16.0.tgz
Normal file
Binary file not shown.
6
clusters/cl01tl/helm/jellyfin/Chart.lock
Normal file
6
clusters/cl01tl/helm/jellyfin/Chart.lock
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
digest: sha256:5394000890e1bcc83f94b138c148c591f6a091850e734acbd6e1e7d053469f38
|
||||||
|
generated: "2025-11-30T23:27:27.423336089Z"
|
||||||
BIN
clusters/cl01tl/helm/jellyfin/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/jellyfin/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
9
clusters/cl01tl/helm/jellystat/Chart.lock
Normal file
9
clusters/cl01tl/helm/jellystat/Chart.lock
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
- name: postgres-cluster
|
||||||
|
repository: oci://harbor.alexlebens.net/helm-charts
|
||||||
|
version: 6.16.0
|
||||||
|
digest: sha256:4d14b684813eac9fcae1be18bcc5644c8583e2c014da6941705b58b118bbd6ee
|
||||||
|
generated: "2025-11-30T23:27:28.366232765Z"
|
||||||
BIN
clusters/cl01tl/helm/jellystat/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/jellystat/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
Binary file not shown.
12
clusters/cl01tl/helm/karakeep/Chart.lock
Normal file
12
clusters/cl01tl/helm/karakeep/Chart.lock
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
- name: meilisearch
|
||||||
|
repository: https://meilisearch.github.io/meilisearch-kubernetes
|
||||||
|
version: 0.17.1
|
||||||
|
- name: cloudflared
|
||||||
|
repository: oci://harbor.alexlebens.net/helm-charts
|
||||||
|
version: 1.23.0
|
||||||
|
digest: sha256:87a67950901f8a047f790ed21e8fc1cbfd076e05a3a55377b1cb0aa081f10f8d
|
||||||
|
generated: "2025-11-30T23:27:29.695747959Z"
|
||||||
BIN
clusters/cl01tl/helm/karakeep/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/karakeep/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
BIN
clusters/cl01tl/helm/karakeep/charts/cloudflared-1.23.0.tgz
Normal file
BIN
clusters/cl01tl/helm/karakeep/charts/cloudflared-1.23.0.tgz
Normal file
Binary file not shown.
BIN
clusters/cl01tl/helm/karakeep/charts/meilisearch-0.17.1.tgz
Normal file
BIN
clusters/cl01tl/helm/karakeep/charts/meilisearch-0.17.1.tgz
Normal file
Binary file not shown.
6
clusters/cl01tl/helm/kiwix/Chart.lock
Normal file
6
clusters/cl01tl/helm/kiwix/Chart.lock
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
digest: sha256:c49d66e1174d093c845498c6b88409b23f3392a93d00f8e029636a10080fc72d
|
||||||
|
generated: "2025-11-30T23:27:31.769082253Z"
|
||||||
BIN
clusters/cl01tl/helm/kiwix/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/kiwix/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
6
clusters/cl01tl/helm/libation/Chart.lock
Normal file
6
clusters/cl01tl/helm/libation/Chart.lock
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
digest: sha256:ce61ef8a0f6fe0f17472f5c03d505be7ba7077f2d9211d43e743798622e15bca
|
||||||
|
generated: "2025-11-30T23:27:32.790301741Z"
|
||||||
BIN
clusters/cl01tl/helm/libation/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/libation/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
9
clusters/cl01tl/helm/lidarr/Chart.lock
Normal file
9
clusters/cl01tl/helm/lidarr/Chart.lock
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
- name: postgres-cluster
|
||||||
|
repository: oci://harbor.alexlebens.net/helm-charts
|
||||||
|
version: 6.16.0
|
||||||
|
digest: sha256:e2c50f16d20f551ea2e05f75239eba37af5b5cf7f64dbc208870b063e7135d03
|
||||||
|
generated: "2025-11-30T23:27:33.770037331Z"
|
||||||
BIN
clusters/cl01tl/helm/lidarr/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/lidarr/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
BIN
clusters/cl01tl/helm/lidarr/charts/postgres-cluster-6.16.0.tgz
Normal file
BIN
clusters/cl01tl/helm/lidarr/charts/postgres-cluster-6.16.0.tgz
Normal file
Binary file not shown.
6
clusters/cl01tl/helm/lidatube/Chart.lock
Normal file
6
clusters/cl01tl/helm/lidatube/Chart.lock
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
digest: sha256:ad00ef6a3bd12d2a6a167838ec3922aeb386e2a9efd260f4f8cce8964e5bf7b5
|
||||||
|
generated: "2025-11-30T23:27:35.393609381Z"
|
||||||
BIN
clusters/cl01tl/helm/lidatube/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/lidatube/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
6
clusters/cl01tl/helm/listenarr/Chart.lock
Normal file
6
clusters/cl01tl/helm/listenarr/Chart.lock
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
digest: sha256:8cd26f322d08777301e6c080ca9faa09a2fabda5c3f8bba6536d67496149ae4b
|
||||||
|
generated: "2025-11-30T23:27:36.663987338Z"
|
||||||
BIN
clusters/cl01tl/helm/listenarr/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/listenarr/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
6
clusters/cl01tl/helm/omni-tools/Chart.lock
Normal file
6
clusters/cl01tl/helm/omni-tools/Chart.lock
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
digest: sha256:2742827fee3fb1d07cd96db1ae82dbf206d24dd5d326ba2702508de42e3dccb2
|
||||||
|
generated: "2025-11-30T23:27:37.82379446Z"
|
||||||
BIN
clusters/cl01tl/helm/omni-tools/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/omni-tools/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
12
clusters/cl01tl/helm/outline/Chart.lock
Normal file
12
clusters/cl01tl/helm/outline/Chart.lock
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
- name: cloudflared
|
||||||
|
repository: oci://harbor.alexlebens.net/helm-charts
|
||||||
|
version: 1.23.0
|
||||||
|
- name: postgres-cluster
|
||||||
|
repository: oci://harbor.alexlebens.net/helm-charts
|
||||||
|
version: 6.16.0
|
||||||
|
digest: sha256:4c36df51e831ff5431e9c60cf4f13a8ad7436ed070f4ce082c2793fc9773958c
|
||||||
|
generated: "2025-11-30T23:27:38.954405654Z"
|
||||||
BIN
clusters/cl01tl/helm/outline/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/outline/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
BIN
clusters/cl01tl/helm/outline/charts/cloudflared-1.23.0.tgz
Normal file
BIN
clusters/cl01tl/helm/outline/charts/cloudflared-1.23.0.tgz
Normal file
Binary file not shown.
BIN
clusters/cl01tl/helm/outline/charts/postgres-cluster-6.16.0.tgz
Normal file
BIN
clusters/cl01tl/helm/outline/charts/postgres-cluster-6.16.0.tgz
Normal file
Binary file not shown.
6
clusters/cl01tl/helm/overseerr/Chart.lock
Normal file
6
clusters/cl01tl/helm/overseerr/Chart.lock
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
digest: sha256:9d2b5e1862aa2d9336884874aba6a11624a26b2fb0f98329b0b90f3426d61c4d
|
||||||
|
generated: "2025-11-30T23:27:41.037767136Z"
|
||||||
BIN
clusters/cl01tl/helm/overseerr/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/overseerr/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
9
clusters/cl01tl/helm/photoview/Chart.lock
Normal file
9
clusters/cl01tl/helm/photoview/Chart.lock
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
- name: postgres-cluster
|
||||||
|
repository: oci://harbor.alexlebens.net/helm-charts
|
||||||
|
version: 6.16.0
|
||||||
|
digest: sha256:6e32298738e136a5c8cd51f84bc125a7f19443afe71978002fb3d1924e1d37d8
|
||||||
|
generated: "2025-11-30T23:27:42.347894531Z"
|
||||||
BIN
clusters/cl01tl/helm/photoview/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/photoview/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
Binary file not shown.
6
clusters/cl01tl/helm/plex/Chart.lock
Normal file
6
clusters/cl01tl/helm/plex/Chart.lock
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
digest: sha256:a9d49fd723833cb90c635a612d40d4edd765879e56eab64c13a344a44356bf72
|
||||||
|
generated: "2025-11-30T23:27:43.74953035Z"
|
||||||
BIN
clusters/cl01tl/helm/plex/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/plex/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
12
clusters/cl01tl/helm/postiz/Chart.lock
Normal file
12
clusters/cl01tl/helm/postiz/Chart.lock
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
- name: cloudflared
|
||||||
|
repository: oci://harbor.alexlebens.net/helm-charts
|
||||||
|
version: 1.23.0
|
||||||
|
- name: postgres-cluster
|
||||||
|
repository: oci://harbor.alexlebens.net/helm-charts
|
||||||
|
version: 6.16.0
|
||||||
|
digest: sha256:9a80f885ed38b0a6addd2c9be8ffa5670cd03f89ba86c821b6dd91d8ba370d2b
|
||||||
|
generated: "2025-11-30T23:27:44.71531404Z"
|
||||||
BIN
clusters/cl01tl/helm/postiz/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/postiz/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
BIN
clusters/cl01tl/helm/postiz/charts/cloudflared-1.23.0.tgz
Normal file
BIN
clusters/cl01tl/helm/postiz/charts/cloudflared-1.23.0.tgz
Normal file
Binary file not shown.
BIN
clusters/cl01tl/helm/postiz/charts/postgres-cluster-6.16.0.tgz
Normal file
BIN
clusters/cl01tl/helm/postiz/charts/postgres-cluster-6.16.0.tgz
Normal file
Binary file not shown.
6
clusters/cl01tl/helm/prowlarr/Chart.lock
Normal file
6
clusters/cl01tl/helm/prowlarr/Chart.lock
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
digest: sha256:2d8a83056d70c4124c19ae30358095407a6cc2332b8a06759dfb792a1fab1534
|
||||||
|
generated: "2025-11-30T23:27:46.19317297Z"
|
||||||
BIN
clusters/cl01tl/helm/prowlarr/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/prowlarr/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
9
clusters/cl01tl/helm/radarr-4k/Chart.lock
Normal file
9
clusters/cl01tl/helm/radarr-4k/Chart.lock
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
- name: postgres-cluster
|
||||||
|
repository: oci://harbor.alexlebens.net/helm-charts
|
||||||
|
version: 6.16.0
|
||||||
|
digest: sha256:d42d3c3a011e9e6252da987e7f86712eb1bccde7721ec067881192182c3ac709
|
||||||
|
generated: "2025-11-30T23:27:48.177111131Z"
|
||||||
BIN
clusters/cl01tl/helm/radarr-4k/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/radarr-4k/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
Binary file not shown.
9
clusters/cl01tl/helm/radarr-anime/Chart.lock
Normal file
9
clusters/cl01tl/helm/radarr-anime/Chart.lock
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
- name: postgres-cluster
|
||||||
|
repository: oci://harbor.alexlebens.net/helm-charts
|
||||||
|
version: 6.16.0
|
||||||
|
digest: sha256:f21d624fcafe0fc8e4f8d1c140f1fbefc40a74bdc29d6267a4d71e95ac81b95a
|
||||||
|
generated: "2025-11-30T23:27:49.602295782Z"
|
||||||
BIN
clusters/cl01tl/helm/radarr-anime/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/radarr-anime/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
Binary file not shown.
9
clusters/cl01tl/helm/radarr-standup/Chart.lock
Normal file
9
clusters/cl01tl/helm/radarr-standup/Chart.lock
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
- name: postgres-cluster
|
||||||
|
repository: oci://harbor.alexlebens.net/helm-charts
|
||||||
|
version: 6.16.0
|
||||||
|
digest: sha256:caaa532c1be0452935259f03f992836b060ee212434abc5b1d81f939c6e33a2b
|
||||||
|
generated: "2025-11-30T23:27:50.980429255Z"
|
||||||
Binary file not shown.
Binary file not shown.
9
clusters/cl01tl/helm/radarr/Chart.lock
Normal file
9
clusters/cl01tl/helm/radarr/Chart.lock
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
- name: postgres-cluster
|
||||||
|
repository: oci://harbor.alexlebens.net/helm-charts
|
||||||
|
version: 6.16.0
|
||||||
|
digest: sha256:5bd176d6017208f08b9c8108b0df2330e16ef4dffcd8c1e95cff5d32af79d06c
|
||||||
|
generated: "2025-11-30T23:27:47.060161771Z"
|
||||||
BIN
clusters/cl01tl/helm/radarr/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/radarr/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
BIN
clusters/cl01tl/helm/radarr/charts/postgres-cluster-6.16.0.tgz
Normal file
BIN
clusters/cl01tl/helm/radarr/charts/postgres-cluster-6.16.0.tgz
Normal file
Binary file not shown.
9
clusters/cl01tl/helm/roundcube/Chart.lock
Normal file
9
clusters/cl01tl/helm/roundcube/Chart.lock
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
- name: postgres-cluster
|
||||||
|
repository: oci://harbor.alexlebens.net/helm-charts
|
||||||
|
version: 6.16.0
|
||||||
|
digest: sha256:bf4ddb79b0fa0e266d5c5a18e37508bd1e4eaac98ad8c373c4bb44dba4a17fd0
|
||||||
|
generated: "2025-11-30T23:27:52.241099156Z"
|
||||||
BIN
clusters/cl01tl/helm/roundcube/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/roundcube/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
Binary file not shown.
6
clusters/cl01tl/helm/searxng/Chart.lock
Normal file
6
clusters/cl01tl/helm/searxng/Chart.lock
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
digest: sha256:5dc774da528576893d9072f75d16e731851da85d056c6d3461d1f6ee353de2b0
|
||||||
|
generated: "2025-11-30T23:27:54.048161428Z"
|
||||||
BIN
clusters/cl01tl/helm/searxng/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/searxng/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
9
clusters/cl01tl/helm/site-documentation/Chart.lock
Normal file
9
clusters/cl01tl/helm/site-documentation/Chart.lock
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
- name: cloudflared
|
||||||
|
repository: oci://harbor.alexlebens.net/helm-charts
|
||||||
|
version: 1.23.0
|
||||||
|
digest: sha256:5a7b3c34f9eb198ea91b40d341daaf28c5fe425e344d4d247a5592f742aaf760
|
||||||
|
generated: "2025-11-30T23:27:55.40710461Z"
|
||||||
Binary file not shown.
Binary file not shown.
9
clusters/cl01tl/helm/site-profile/Chart.lock
Normal file
9
clusters/cl01tl/helm/site-profile/Chart.lock
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: app-template
|
||||||
|
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||||
|
version: 4.4.0
|
||||||
|
- name: cloudflared
|
||||||
|
repository: oci://harbor.alexlebens.net/helm-charts
|
||||||
|
version: 1.23.0
|
||||||
|
digest: sha256:2894c66ba8f97a04b37305fc59a8ef376ef7b8ac20280851d6b86f18af6f5a47
|
||||||
|
generated: "2025-11-30T23:27:57.141130099Z"
|
||||||
BIN
clusters/cl01tl/helm/site-profile/charts/app-template-4.4.0.tgz
Normal file
BIN
clusters/cl01tl/helm/site-profile/charts/app-template-4.4.0.tgz
Normal file
Binary file not shown.
BIN
clusters/cl01tl/helm/site-profile/charts/cloudflared-1.23.0.tgz
Normal file
BIN
clusters/cl01tl/helm/site-profile/charts/cloudflared-1.23.0.tgz
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user