Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
f930df63d7
commit
d2b74a6b73
|
@ -1,9 +0,0 @@
|
|||
|
||||
|
||||
## [clusterissuer-4.2.1](https://github.com/truecharts/charts/compare/clusterissuer-4.2.0...clusterissuer-4.2.1) (2023-10-29)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#14094](https://github.com/truecharts/charts/issues/14094))
|
||||
|
||||
|
|
@ -4,6 +4,15 @@
|
|||
|
||||
|
||||
|
||||
## [clusterissuer-4.2.2](https://github.com/truecharts/charts/compare/clusterissuer-4.2.1...clusterissuer-4.2.2) (2023-10-30)
|
||||
|
||||
### Fix
|
||||
|
||||
- Fix cluster certificate questions ([#14141](https://github.com/truecharts/charts/issues/14141))
|
||||
|
||||
|
||||
|
||||
|
||||
## [clusterissuer-4.2.1](https://github.com/truecharts/charts/compare/clusterissuer-4.2.0...clusterissuer-4.2.1) (2023-10-29)
|
||||
|
||||
### Chore
|
||||
|
@ -88,12 +97,3 @@
|
|||
## [clusterissuer-4.0.1](https://github.com/truecharts/charts/compare/clusterissuer-4.0.0...clusterissuer-4.0.1) (2023-07-31)
|
||||
|
||||
### Fix
|
||||
|
||||
- use our helm charts to install dependencies from, to ensure operator validation works in ci ([#11093](https://github.com/truecharts/charts/issues/11093))
|
||||
|
||||
|
||||
|
||||
|
||||
## [clusterissuer-4.0.0](https://github.com/truecharts/charts/compare/clusterissuer-3.0.2...clusterissuer-4.0.0) (2023-07-31)
|
||||
|
||||
|
|
@ -21,7 +21,7 @@ sources:
|
|||
- https://github.com/truecharts/charts/tree/master/charts/enterprise/clusterissuer
|
||||
- https://cert-manager.io/
|
||||
type: application
|
||||
version: 4.2.1
|
||||
version: 4.2.2
|
||||
annotations:
|
||||
truecharts.org/category: core
|
||||
truecharts.org/SCALE-support: "true"
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
|
||||
## [clusterissuer-4.2.2](https://github.com/truecharts/charts/compare/clusterissuer-4.2.1...clusterissuer-4.2.2) (2023-10-30)
|
||||
|
||||
### Fix
|
||||
|
||||
- Fix cluster certificate questions ([#14141](https://github.com/truecharts/charts/issues/14141))
|
||||
|
||||
|
|
@ -385,38 +385,44 @@ questions:
|
|||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: enabled
|
||||
label: Enabled
|
||||
- variable: CertEntry
|
||||
label: 'Certificate Entry'
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
- variable: name
|
||||
label: Certificate Name
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: ""
|
||||
- variable: certificateIssuer
|
||||
label: Cert-Manager clusterIssuer
|
||||
description: "One of the Cert-Manager clusterIssuers defined above"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
valid_chars: '^[a-z]+(-?[a-z]){0,63}-?[a-z]+$'
|
||||
default: "selfsigned"
|
||||
- variable: hosts
|
||||
label: Certificate Hosts
|
||||
description: "NOTE: Creation of wildcard certificates with an ACME issuer requires a DNSO1 solver to be set up."
|
||||
schema:
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: host
|
||||
label: Host
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: Enabled
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
- variable: name
|
||||
label: Certificate Name
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
required: true
|
||||
default: ""
|
||||
- variable: certificateIssuer
|
||||
label: Cert-Manager clusterIssuer
|
||||
description: "One of the Cert-Manager clusterIssuers defined above"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
valid_chars: '^[a-z]+(-?[a-z]){0,63}-?[a-z]+$'
|
||||
default: "selfsigned"
|
||||
- variable: hosts
|
||||
label: Certificate Hosts
|
||||
description: "NOTE: Creation of wildcard certificates with an ACME issuer requires a DNSO1 solver to be set up."
|
||||
schema:
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: host
|
||||
label: Host
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
required: true
|
||||
|
||||
- variable: customMetrics
|
||||
group: Metrics
|
Loading…
Reference in New Issue