Compare commits

...

5 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
6 changed files with 46 additions and 4 deletions

View File

@@ -51,9 +51,43 @@ jobs:
run: |
changed=$(ct list-changed --target-branch ${{ gitea.event.repository.default_branch }})
if [[ -n "$changed" ]]; then
echo ""
echo ">> Changed Charts:"
echo "$(echo "${changed}" | sort -u)"
echo "----"
echo "changed=true" >> $GITHUB_OUTPUT
echo "changed-charts=$changed" >> $GITHUB_OUTPUT
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)
if: steps.list-changed.outputs.changed == 'true'
run: ct lint --validate-maintainers=false --target-branch ${{ gitea.event.repository.default_branch }}

View File

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

View File

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

View File

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

View File

@@ -1,6 +1,6 @@
# 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

View File

@@ -15,6 +15,14 @@ metadata:
{{- end }}
spec:
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:
destinationPath: {{ include "cluster.backupDestinationPath" (dict "instance" . "global" $context) }}
endpointURL: {{ .endpointURL | default "http://garage-main.garage:3900" }}