Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot
2023-03-19 14:08:42 +00:00
parent 4aa974f997
commit 340f3c860c
18 changed files with 20 additions and 20 deletions

View File

@@ -1,9 +0,0 @@
## [cert-manager-1.0.10](https://github.com/truecharts/charts/compare/cert-manager-1.0.9...cert-manager-1.0.10) (2023-03-11)
### Chore
- validate names that are also used for k8s objects ([#7789](https://github.com/truecharts/charts/issues/7789))

View File

@@ -4,6 +4,15 @@
## [cert-manager-1.0.11](https://github.com/truecharts/charts/compare/cert-manager-1.0.10...cert-manager-1.0.11) (2023-03-19)
### Fix
- add missing providers ([#7813](https://github.com/truecharts/charts/issues/7813))
## [cert-manager-1.0.10](https://github.com/truecharts/charts/compare/cert-manager-1.0.9...cert-manager-1.0.10) (2023-03-11)
### Chore
@@ -88,12 +97,3 @@
## [cert-manager-0.0.7](https://github.com/truecharts/charts/compare/cert-manager-0.0.6...cert-manager-0.0.7) (2023-02-20)
### Chore
- update container image tccr.io/truecharts/scratch to latest
## [cert-manager-0.0.6](https://github.com/truecharts/charts/compare/cert-manager-0.0.5...cert-manager-0.0.6) (2023-02-10)

View File

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

View File

@@ -0,0 +1,9 @@
## [cert-manager-1.0.11](https://github.com/truecharts/charts/compare/cert-manager-1.0.10...cert-manager-1.0.11) (2023-03-19)
### Fix
- add missing providers ([#7813](https://github.com/truecharts/charts/issues/7813))

View File

@@ -3,7 +3,7 @@
{{- 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" -}}
{{- end -}}
{{- $validTypes := list "HTTP01" "cloudflare" "route53" -}}
{{- $validTypes := list "HTTP01" "cloudflare" "route53" "digitalocean" "akamai" "rfc2136" -}}
{{- if not (mustHas .type $validTypes) -}}
{{- fail (printf "Expected ACME type to be one of [%s], but got [%s]" (join ", " $validTypes) .type) -}}
{{- end -}}