Compare commits

..

9 Commits

Author SHA1 Message Date
2681c3d246 fix: add env for retention fix
All checks were successful
lint-and-test / lint-helm (push) Successful in 29s
lint-and-test / chart-testing (push) Successful in 50s
release-charts-postgres-cluster / release (push) Successful in 58s
renovate / renovate (push) Successful in 2m13s
2026-01-22 18:12:55 -06:00
dc6604bb4a Merge pull request 'Update cloudflare/cloudflared Docker tag to v2026' (#161) from renovate/cloudflare-cloudflared-2026.x into main
Reviewed-on: #161
2026-01-21 21:11:52 +00:00
130b9d42c3 Update cloudflare/cloudflared Docker tag to v2026
All checks were successful
lint-and-test / lint-helm (pull_request) Successful in 22s
lint-and-test / chart-testing (pull_request) Successful in 54s
2026-01-20 21:02:34 +00:00
59b36c889c fix path
All checks were successful
renovate / renovate (push) Successful in 1m0s
2026-01-20 15:00:51 -06:00
e7ce6459ea add repos
All checks were successful
renovate / renovate (push) Successful in 1m5s
2026-01-20 14:55:06 -06:00
4133455ae7 update common chart
All checks were successful
lint-and-test / lint-helm (push) Successful in 18s
lint-and-test / chart-testing (push) Successful in 23s
release-charts-cloudflared / release (push) Successful in 30s
renovate / renovate (push) Successful in 2m11s
2026-01-16 13:29:35 -06:00
9b7c149194 update common chart
Some checks failed
lint-and-test / lint-helm (push) Successful in 12s
lint-and-test / chart-testing (push) Has been cancelled
renovate / renovate (push) Has been cancelled
release-charts-generic-device-plugin / release (push) Successful in 20s
2026-01-16 13:29:14 -06:00
4032b7c96f update lock
Some checks failed
lint-and-test / lint-helm (push) Successful in 13s
lint-and-test / chart-testing (push) Successful in 25s
release-charts-generic-device-plugin / release (push) Has been cancelled
renovate / renovate (push) Has been cancelled
2026-01-16 13:28:18 -06:00
fe047ac795 update lock
Some checks failed
lint-and-test / chart-testing (push) Has been cancelled
lint-and-test / lint-helm (push) Has been cancelled
release-charts-cloudflared / release (push) Successful in 27s
renovate / renovate (push) Has been cancelled
2026-01-16 13:27:50 -06:00
11 changed files with 54 additions and 12 deletions

View File

@@ -51,9 +51,43 @@ jobs:
run: | run: |
changed=$(ct list-changed --target-branch ${{ gitea.event.repository.default_branch }}) changed=$(ct list-changed --target-branch ${{ gitea.event.repository.default_branch }})
if [[ -n "$changed" ]]; then if [[ -n "$changed" ]]; then
echo ""
echo ">> Changed Charts:"
echo "$(echo "${changed}" | sort -u)"
echo "----"
echo "changed=true" >> $GITHUB_OUTPUT echo "changed=true" >> $GITHUB_OUTPUT
echo "changed-charts=$changed" >> $GITHUB_OUTPUT
fi fi
- name: Add Repositories
if: steps.list-changed.outputs.changed == 'true'
env:
CHANGED_CHARTS: ${{ steps.list-changed.outputs.changed-charts }}
run: |
echo ">> Adding repositories for chart dependencies ..."
for dir in ${CHANGED_CHARTS}; do
helm dependency list --max-col-width 120 $dir 2> /dev/null \
| tail +2 | head -n -1 \
| awk '{ print "helm repo add " $1 " " $3 }' \
| while read cmd; do
if [[ "$cmd" == "*oci://*" ]]; then
echo ">> Ignoring OCI repo"
else
echo "$cmd" | sh;
fi
done || true
done
if helm repo list | tail +2 | read -r; then
echo ""
echo ">> Update repository cache ..."
helm repo update
fi
echo "----"
- 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 --validate-maintainers=false --target-branch ${{ gitea.event.repository.default_branch }} run: ct lint --validate-maintainers=false --target-branch ${{ gitea.event.repository.default_branch }}

View File

@@ -3,4 +3,4 @@ dependencies:
repository: https://bjw-s-labs.github.io/helm-charts/ repository: https://bjw-s-labs.github.io/helm-charts/
version: 4.6.2 version: 4.6.2
digest: sha256:35e8f4e5d15d878c246a04eb51de580291f31203fa10e9e4d2318f16026b2061 digest: sha256:35e8f4e5d15d878c246a04eb51de580291f31203fa10e9e4d2318f16026b2061
generated: "2026-01-16T19:27:28.072212897Z" generated: "2026-01-16T13:29:29.385123-06:00"

View File

@@ -1,6 +1,6 @@
apiVersion: v2 apiVersion: v2
name: cloudflared name: cloudflared
version: 2.1.7 version: 2.2.0
description: Cloudflared Tunnel description: Cloudflared Tunnel
keywords: keywords:
- cloudflare - cloudflare

View File

@@ -1,6 +1,6 @@
# cloudflared # cloudflared
![Version: 2.1.7](https://img.shields.io/badge/Version-2.1.7-informational?style=flat-square) ![AppVersion: 2025.11.1](https://img.shields.io/badge/AppVersion-2025.11.1-informational?style=flat-square) ![Version: 2.1.9](https://img.shields.io/badge/Version-2.1.9-informational?style=flat-square) ![AppVersion: 2025.11.1](https://img.shields.io/badge/AppVersion-2025.11.1-informational?style=flat-square)
Cloudflared Tunnel Cloudflared Tunnel
@@ -19,7 +19,7 @@ Cloudflared Tunnel
| Repository | Name | Version | | Repository | Name | Version |
|------------|------|---------| |------------|------|---------|
| https://bjw-s-labs.github.io/helm-charts/ | common | 4.6.1 | | https://bjw-s-labs.github.io/helm-charts/ | common | 4.6.2 |
## Values ## Values

View File

@@ -26,7 +26,7 @@ secret:
# -- Default image # -- Default image
image: image:
repository: cloudflare/cloudflared repository: cloudflare/cloudflared
tag: "2025.11.1" tag: "2026.1.1"
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
# -- Default resources # -- Default resources

View File

@@ -3,4 +3,4 @@ dependencies:
repository: https://bjw-s-labs.github.io/helm-charts/ repository: https://bjw-s-labs.github.io/helm-charts/
version: 4.6.2 version: 4.6.2
digest: sha256:35e8f4e5d15d878c246a04eb51de580291f31203fa10e9e4d2318f16026b2061 digest: sha256:35e8f4e5d15d878c246a04eb51de580291f31203fa10e9e4d2318f16026b2061
generated: "2026-01-16T19:27:39.93106735Z" generated: "2026-01-16T13:29:01.760344-06:00"

View File

@@ -1,6 +1,6 @@
apiVersion: v2 apiVersion: v2
name: generic-device-plugin name: generic-device-plugin
version: 0.20.16 version: 0.20.17
description: Generic Device Plugin description: Generic Device Plugin
keywords: keywords:
- generic-device-plugin - generic-device-plugin
@@ -15,4 +15,4 @@ dependencies:
- name: common - name: common
repository: https://bjw-s-labs.github.io/helm-charts/ repository: https://bjw-s-labs.github.io/helm-charts/
version: 4.6.2 version: 4.6.2
appVersion: 0.20.12 appVersion: 0.20.16

View File

@@ -1,6 +1,6 @@
# generic-device-plugin # generic-device-plugin
![Version: 0.20.15](https://img.shields.io/badge/Version-0.20.15-informational?style=flat-square) ![AppVersion: 0.20.12](https://img.shields.io/badge/AppVersion-0.20.12-informational?style=flat-square) ![Version: 0.20.17](https://img.shields.io/badge/Version-0.20.17-informational?style=flat-square) ![AppVersion: 0.20.16](https://img.shields.io/badge/AppVersion-0.20.16-informational?style=flat-square)
Generic Device Plugin Generic Device Plugin
@@ -19,7 +19,7 @@ Generic Device Plugin
| Repository | Name | Version | | Repository | Name | Version |
|------------|------|---------| |------------|------|---------|
| https://bjw-s-labs.github.io/helm-charts/ | common | 4.6.1 | | https://bjw-s-labs.github.io/helm-charts/ | common | 4.6.2 |
## Values ## Values

View File

@@ -1,6 +1,6 @@
apiVersion: v2 apiVersion: v2
name: postgres-cluster name: postgres-cluster
version: 7.4.5 version: 7.5.0
description: Cloudnative-pg Cluster description: Cloudnative-pg Cluster
keywords: keywords:
- database - database

View File

@@ -1,6 +1,6 @@
# postgres-cluster # postgres-cluster
![Version: 7.4.5](https://img.shields.io/badge/Version-7.4.5-informational?style=flat-square) ![AppVersion: v1.28.0](https://img.shields.io/badge/AppVersion-v1.28.0-informational?style=flat-square) ![Version: 7.5.0](https://img.shields.io/badge/Version-7.5.0-informational?style=flat-square) ![AppVersion: v1.28.0](https://img.shields.io/badge/AppVersion-v1.28.0-informational?style=flat-square)
Cloudnative-pg Cluster Cloudnative-pg Cluster

View File

@@ -15,6 +15,14 @@ metadata:
{{- end }} {{- end }}
spec: spec:
retentionPolicy: {{ .retentionPolicy | default "7d" }} retentionPolicy: {{ .retentionPolicy | default "7d" }}
# Required when not using AWS S3
# https://github.com/cloudnative-pg/cloudnative-pg/issues/8599
instanceSidecarConfiguration:
env:
- name: AWS_REQUEST_CHECKSUM_CALCULATION
value: when_required
- name: AWS_RESPONSE_CHECKSUM_VALIDATION
value: when_required
configuration: configuration:
destinationPath: {{ include "cluster.backupDestinationPath" (dict "instance" . "global" $context) }} destinationPath: {{ include "cluster.backupDestinationPath" (dict "instance" . "global" $context) }}
endpointURL: {{ .endpointURL | default "http://garage-main.garage:3900" }} endpointURL: {{ .endpointURL | default "http://garage-main.garage:3900" }}