2023-12-20 19:38:11 +00:00
|
|
|
- variable: integrations
|
2023-12-05 14:56:42 +00:00
|
|
|
label: Integrations
|
|
|
|
description: Connect ingress with other charts
|
|
|
|
schema:
|
|
|
|
additional_attrs: true
|
|
|
|
type: dict
|
|
|
|
attrs:
|
2023-12-20 19:38:11 +00:00
|
|
|
- variable: traefik
|
|
|
|
label: Traefik
|
|
|
|
description: Connect ingress with Traefik
|
|
|
|
schema:
|
|
|
|
additional_attrs: true
|
|
|
|
type: dict
|
|
|
|
attrs:
|
|
|
|
- variable: enabled
|
|
|
|
label: enabled
|
|
|
|
schema:
|
|
|
|
type: boolean
|
|
|
|
default: true
|
|
|
|
- variable: allowCors
|
|
|
|
label: "Allow Cross Origin Requests"
|
|
|
|
schema:
|
|
|
|
type: boolean
|
|
|
|
default: false
|
|
|
|
show_if: [["enabled", "=", true]]
|
|
|
|
- variable: entrypoints
|
|
|
|
label: Entrypoints
|
|
|
|
schema:
|
|
|
|
type: list
|
|
|
|
default: ["websecure"]
|
|
|
|
show_if: [["enabled", "=", true]]
|
|
|
|
items:
|
|
|
|
- variable: entrypoint
|
|
|
|
label: Entrypoint
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
- variable: middlewares
|
|
|
|
label: Middlewares
|
|
|
|
schema:
|
|
|
|
type: list
|
|
|
|
default: []
|
|
|
|
show_if: [["enabled", "=", true]]
|
|
|
|
items:
|
2023-12-21 16:51:23 +00:00
|
|
|
- variable: middleware
|
|
|
|
label: Middleware
|
2023-12-20 19:38:11 +00:00
|
|
|
schema:
|
2023-12-21 16:51:23 +00:00
|
|
|
additional_attrs: true
|
|
|
|
type: dict
|
|
|
|
attrs:
|
|
|
|
- variable: name
|
|
|
|
label: name
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
default: ""
|
|
|
|
required: true
|
|
|
|
- variable: namespace
|
|
|
|
label: 'namespace (optional)'
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
default: ""
|
2023-12-20 19:38:11 +00:00
|
|
|
- variable: certManager
|
|
|
|
label: certManager
|
|
|
|
description: Connect ingress with certManager
|
|
|
|
schema:
|
|
|
|
additional_attrs: true
|
|
|
|
type: dict
|
|
|
|
attrs:
|
|
|
|
- variable: enabled
|
|
|
|
label: enabled
|
|
|
|
schema:
|
|
|
|
type: boolean
|
2023-12-21 11:16:10 +00:00
|
|
|
default: false
|
2023-12-20 19:38:11 +00:00
|
|
|
- variable: certificateIssuer
|
|
|
|
label: certificateIssuer
|
|
|
|
description: defaults to chartname
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
default: ""
|
|
|
|
show_if: [["enabled", "=", true]]
|
2023-12-05 14:56:42 +00:00
|
|
|
- variable: homepage
|
|
|
|
label: Homepage
|
|
|
|
description: Connect ingress with Homepage
|
|
|
|
schema:
|
|
|
|
additional_attrs: true
|
|
|
|
type: dict
|
|
|
|
attrs:
|
|
|
|
- variable: enabled
|
|
|
|
label: enabled
|
|
|
|
schema:
|
|
|
|
type: boolean
|
|
|
|
default: false
|
|
|
|
- variable: name
|
|
|
|
label: Name
|
|
|
|
description: defaults to chartname
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
default: ""
|
|
|
|
show_if: [["enabled", "=", true]]
|
|
|
|
- variable: description
|
|
|
|
label: Description
|
|
|
|
description: defaults to chart description
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
default: ""
|
|
|
|
show_if: [["enabled", "=", true]]
|
|
|
|
- variable: group
|
|
|
|
label: Group
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
required: true
|
|
|
|
default: "default"
|
|
|
|
show_if: [["enabled", "=", true]]
|
2023-05-28 10:10:56 +00:00
|
|
|
- variable: advanced
|
|
|
|
label: Show Advanced Settings
|
|
|
|
description: Advanced settings are not covered by TrueCharts Support
|
|
|
|
schema:
|
|
|
|
type: boolean
|
|
|
|
default: false
|
2023-06-15 19:35:00 +00:00
|
|
|
- variable: ingressClassName
|
|
|
|
label: (Advanced/Optional) IngressClass Name
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
show_if: [["advanced", "=", true]]
|
|
|
|
default: ""
|
|
|
|
- variable: tls
|
|
|
|
label: TLS-Settings
|
|
|
|
schema:
|
|
|
|
type: list
|
|
|
|
show_if: [["advanced", "=", true]]
|
|
|
|
default: []
|
|
|
|
items:
|
|
|
|
- variable: tlsEntry
|
|
|
|
label: Host
|
2023-05-28 10:10:56 +00:00
|
|
|
schema:
|
2023-06-15 19:35:00 +00:00
|
|
|
additional_attrs: true
|
|
|
|
type: dict
|
|
|
|
attrs:
|
|
|
|
- variable: hosts
|
|
|
|
label: Certificate Hosts
|
2023-05-28 10:10:56 +00:00
|
|
|
schema:
|
2023-06-15 19:35:00 +00:00
|
|
|
type: list
|
|
|
|
default: []
|
|
|
|
items:
|
|
|
|
- variable: host
|
|
|
|
label: Host
|
2023-05-28 10:10:56 +00:00
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
default: ""
|
2023-06-15 19:35:00 +00:00
|
|
|
required: true
|
|
|
|
|
|
|
|
- variable: certificateIssuer
|
|
|
|
label: Use Cert-Manager clusterIssuer
|
|
|
|
description: 'add the name of your cert-manager clusterIssuer here for automatic tls certificates.'
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
default: ""
|
2023-11-03 19:35:21 +00:00
|
|
|
- variable: clusterCertificate
|
|
|
|
label: 'Cluster Certificate (Advanced)'
|
2023-10-31 08:06:47 +00:00
|
|
|
description: 'Add the name of your cluster-wide certificate, that you set up in the ClusterIssuer chart.'
|
2023-06-15 19:35:00 +00:00
|
|
|
schema:
|
2023-10-31 08:06:47 +00:00
|
|
|
type: string
|
2023-11-03 19:35:21 +00:00
|
|
|
show_if: [["certificateIssuer", "=", ""]]
|
2023-10-31 08:06:47 +00:00
|
|
|
default: ""
|
2023-06-15 19:35:00 +00:00
|
|
|
- variable: secretName
|
2023-10-31 08:06:47 +00:00
|
|
|
label: 'Use Custom Certificate Secret (Advanced)'
|
2023-06-15 19:35:00 +00:00
|
|
|
schema:
|
|
|
|
show_if: [["certificateIssuer", "=", ""]]
|
|
|
|
type: string
|
|
|
|
default: ""
|
2023-10-31 08:06:47 +00:00
|
|
|
- variable: scaleCert
|
|
|
|
label: 'Use TrueNAS SCALE Certificate (Deprecated)'
|
|
|
|
schema:
|
|
|
|
show_if: [["certificateIssuer", "=", ""]]
|
|
|
|
type: int
|
|
|
|
$ref:
|
|
|
|
- "definitions/certificate"
|