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)
|
## [clusterissuer-4.2.1](https://github.com/truecharts/charts/compare/clusterissuer-4.2.0...clusterissuer-4.2.1) (2023-10-29)
|
||||||
|
|
||||||
### Chore
|
### 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)
|
## [clusterissuer-4.0.1](https://github.com/truecharts/charts/compare/clusterissuer-4.0.0...clusterissuer-4.0.1) (2023-07-31)
|
||||||
|
|
||||||
### Fix
|
### 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://github.com/truecharts/charts/tree/master/charts/enterprise/clusterissuer
|
||||||
- https://cert-manager.io/
|
- https://cert-manager.io/
|
||||||
type: application
|
type: application
|
||||||
version: 4.2.1
|
version: 4.2.2
|
||||||
annotations:
|
annotations:
|
||||||
truecharts.org/category: core
|
truecharts.org/category: core
|
||||||
truecharts.org/SCALE-support: "true"
|
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
|
type: list
|
||||||
default: []
|
default: []
|
||||||
items:
|
items:
|
||||||
- variable: enabled
|
- variable: CertEntry
|
||||||
label: Enabled
|
label: 'Certificate Entry'
|
||||||
schema:
|
schema:
|
||||||
type: boolean
|
additional_attrs: true
|
||||||
default: true
|
type: dict
|
||||||
- variable: name
|
attrs:
|
||||||
label: Certificate Name
|
- variable: enabled
|
||||||
schema:
|
label: Enabled
|
||||||
type: string
|
schema:
|
||||||
required: true
|
type: boolean
|
||||||
default: ""
|
default: true
|
||||||
- variable: certificateIssuer
|
- variable: name
|
||||||
label: Cert-Manager clusterIssuer
|
label: Certificate Name
|
||||||
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:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
default: ""
|
|
||||||
required: true
|
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
|
- variable: customMetrics
|
||||||
group: Metrics
|
group: Metrics
|
Loading…
Reference in New Issue