Compare commits

...

2 Commits

Author SHA1 Message Date
8c97933783 fix cluster name in database
All checks were successful
renovate / renovate (push) Successful in 29s
lint-and-test / lint-helm (push) Successful in 18s
release-charts-postgres-cluster / release (push) Successful in 22s
lint-and-test / chart-testing (push) Successful in 29s
2025-12-15 15:53:31 -06:00
9fc40afe16 fix match
All checks were successful
renovate / renovate (push) Successful in 32s
2025-12-15 14:33:10 -06:00
4 changed files with 4 additions and 4 deletions

View File

@@ -171,7 +171,7 @@ jobs:
| tail +2 | head -n -1 \
| awk '{ print "helm repo add " $1 " " $3 }' \
| while read cmd; do
if [[ "$cmd" == "helm repo add oci:*" ]]; then
if [[ "$cmd" == "*oci://*" ]]; then
echo ">> Ignoring OCI repo"
else
echo "$cmd" | sh;

View File

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

View File

@@ -1,6 +1,6 @@
# postgres-cluster
![Version: 7.1.1](https://img.shields.io/badge/Version-7.1.1-informational?style=flat-square) ![AppVersion: v1.28.0](https://img.shields.io/badge/AppVersion-v1.28.0-informational?style=flat-square)
![Version: 7.1.2](https://img.shields.io/badge/Version-7.1.2-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

@@ -10,7 +10,7 @@ metadata:
spec:
name: {{ .name }}
cluster:
name: {{ include "cluster.name" $ }}
name: {{ include "cluster.name" . }}-cluster
ensure: {{ .ensure | default "present" }}
owner: {{ .owner }}
template: {{ .template | default "template1" }}