Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-07-19 12:47:18 +00:00
parent e6d6519174
commit 6a6a6611f4
16 changed files with 23 additions and 31 deletions

View File

@ -1,9 +0,0 @@
## [clusterissuer-1.0.12](https://github.com/truecharts/charts/compare/clusterissuer-1.0.11...clusterissuer-1.0.12) (2023-07-19)
### Fix
- ensure clusterissuer is compatible with new cert-manager operator

View File

@ -4,6 +4,15 @@
## [clusterissuer-1.0.13](https://github.com/truecharts/charts/compare/clusterissuer-1.0.12...clusterissuer-1.0.13) (2023-07-19)
### Fix
- try to deal with the fact cert-manager contains a dash
## [clusterissuer-1.0.12](https://github.com/truecharts/charts/compare/clusterissuer-1.0.11...clusterissuer-1.0.12) (2023-07-19)
### Fix
@ -88,12 +97,3 @@
### Chore
- update helm general non-major ([#9457](https://github.com/truecharts/charts/issues/9457))
### Fix
- Increase `max_length` for crt/key Web GUI fields ([#9447](https://github.com/truecharts/charts/issues/9447))

View File

@ -21,7 +21,7 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/enterprise/clusterissuer
- https://cert-manager.io/
type: application
version: 1.0.12
version: 1.0.13
annotations:
truecharts.org/catagories: |
- core

View File

@ -0,0 +1,9 @@
## [clusterissuer-1.0.13](https://github.com/truecharts/charts/compare/clusterissuer-1.0.12...clusterissuer-1.0.13) (2023-07-19)
### Fix
- try to deal with the fact cert-manager contains a dash

View File

@ -1,10 +1,6 @@
{{- define "certmanager.clusterissuer.acme" -}}
{{- $namespace := "cert-manager" -}}
{{- if $.Values.operator.certmanager -}}
{{- if $.Values.operator.certmanager.namespace -}}
{{- $namespace = $.Values.operator.certmanager.namespace -}}
{{- end -}}
{{- end -}}
{{- $operator := index $.Values.operator "cert-manager" -}}
{{- $namespace := $operator.namespace | default "cert-manager" -}}
{{- range .Values.clusterIssuer.ACME }}
{{- if not (mustRegexMatch "^[a-z]+(-?[a-z]){0,63}-?[a-z]+$" .name) -}}
{{- fail "ACME - Expected name to be all lowercase with hyphens, but not start or end with a hyphen" -}}

View File

@ -1,10 +1,6 @@
{{- define "certmanager.clusterissuer.ca" -}}
{{- $namespace := "cert-manager" -}}
{{- if $.Values.operator.certmanager -}}
{{- if $.Values.operator.certmanager.namespace -}}
{{- $namespace = $.Values.operator.certmanager.namespace -}}
{{- end -}}
{{- end -}}
{{- $operator := index $.Values.operator "cert-manager" -}}
{{- $namespace := $operator.namespace | default "cert-manager" -}}
{{- range .Values.clusterIssuer.CA }}
{{- if not (mustRegexMatch "^[a-z]+(-?[a-z]){0,63}-?[a-z]+$" .name) -}}