File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed
charts/cloudnative-pg-cluster Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
22name : cnpg-cluster
33description : Create postgres tenant clusters managed by the CNPG Operator
44type : application
5- version : 0.3.10
5+ version : 0.3.11
66
77maintainers :
88 - name : " cloudymax"
Original file line number Diff line number Diff line change 11# cnpg-cluster
22
3- ![ Version: 0.3.10 ] ( https://img.shields.io/badge/Version-0.3.10 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square )
3+ ![ Version: 0.3.11 ] ( https://img.shields.io/badge/Version-0.3.11 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square )
44
55Create postgres tenant clusters managed by the CNPG Operator
66
Original file line number Diff line number Diff line change 11{{- if and .Values.certificates.user.enabled }}
22{{- range .Values.certificates.user.username }}
3+ {{- $username := . | replace "_" "-" -}}
34---
45apiVersion : v1
56kind : Secret
67metadata :
7- name : " {{ $.Values.name }}-{{ . }}-cert"
8+ name : " {{ $.Values.name }}-{{ $username }}-cert"
89 labels :
910 cnpg.io/reload : " "
1011---
1112apiVersion : cert-manager.io/v1
1213kind : Certificate
1314metadata :
14- name : " {{ $.Values.name }}-{{ . }}-cert"
15+ name : " {{ $.Values.name }}-{{ $username }}-cert"
1516spec :
16- secretName : " {{ $.Values.name }}-{{ . }}-cert"
17+ secretName : " {{ $.Values.name }}-{{ $username }}-cert"
1718 usages :
1819 - client auth
1920 commonName : {{ . }}
You can’t perform that action at this time.
0 commit comments