Compare commits

..

1 Commits

Author SHA1 Message Date
47d7c3618c Update helm/chart-testing-action action to v2.8.0
Some checks failed
lint-and-test / lint-test (pull_request) Failing after 44s
2025-11-11 05:09:54 +00:00
4 changed files with 25 additions and 11 deletions

View File

@@ -23,7 +23,7 @@ jobs:
python-version: '3.14'
- name: Set up Chart Testing
uses: helm/chart-testing-action@v2.7.0
uses: helm/chart-testing-action@v2.8.0
with:
yamale_version: "6.0.0"
@@ -46,7 +46,7 @@ jobs:
url: '${{ secrets.NTFY_URL }}'
topic: '${{ secrets.NTFY_TOPIC }}'
title: 'Test Failure - Helm Charts'
priority: 3
priority: 4
headers: '{"Authorization": "Bearer ${{ secrets.NTFY_CRED }}"}'
tags: action,failed
details: 'Tests have failed for Helm Charts'

View File

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

View File

@@ -20,7 +20,7 @@ cluster:
# -- Default image
image:
repository: ghcr.io/cloudnative-pg/postgresql
tag: 17.7-standard-trixie
tag: 17.6-standard-trixie
# -- 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

View File

@@ -24,6 +24,21 @@
}
]
},
{
"description": "Automerge chart digest",
"matchUpdateTypes": ["digest"],
"matchDatasources": ["helm"],
"addLabels": ["chart", "automerge"],
"automerge": true,
"minimumReleaseAge": "1 days",
"bumpVersions": [
{
"filePatterns": ["{{packageFileDir}}/Chart.{yaml,yml}"],
"matchStrings": ["version:\\s(?<version>[^\\s]+)"],
"bumpType": "patch"
}
]
},
{
"description": "Label images",
"matchDatasources": ["docker"],
@@ -38,18 +53,17 @@
]
},
{
"description": "Automerge generic-device-plugin image on digest",
"description": "CNPG image",
"matchDepNames": ["ghcr.io/cloudnative-pg/postgresql"],
"matchDatasources": ["docker"],
"matchDepNames": ["ghcr.io/squat/generic-device-plugin"],
"matchUpdateTypes": ["digest"],
"addLabels": ["image", "automerge"],
"automerge": true,
"minimumReleaseAge": "1 days",
"addLabels": ["image"],
"matchUpdateTypes": ["major", "minor"],
"automerge": false,
"bumpVersions": [
{
"filePatterns": ["{{packageFileDir}}/Chart.{yaml,yml}"],
"matchStrings": ["version:\\s(?<version>[^\\s]+)"],
"bumpType": "patch"
"bumpType": "{{#if isPatch}}patch{{else}}minor{{/if}}"
}
]
}