fix(apps): add missing dicts on list items (#3754)
This commit is contained in:
@@ -25,7 +25,7 @@ sources:
|
|||||||
- https://github.com/metallb/metallb
|
- https://github.com/metallb/metallb
|
||||||
- https://metallb.universe.tf
|
- https://metallb.universe.tf
|
||||||
type: application
|
type: application
|
||||||
version: 4.0.1
|
version: 4.0.2
|
||||||
annotations:
|
annotations:
|
||||||
truecharts.org/catagories: |
|
truecharts.org/catagories: |
|
||||||
- core
|
- core
|
||||||
|
|||||||
@@ -3,12 +3,18 @@ questions:
|
|||||||
# Include{global}
|
# Include{global}
|
||||||
# Include{controller}
|
# Include{controller}
|
||||||
- variable: ipAddressPools
|
- variable: ipAddressPools
|
||||||
group: "App Configuration"
|
group: App Configuration
|
||||||
label: IP Address Pools Object
|
label: IP Address Pools Object
|
||||||
schema:
|
schema:
|
||||||
type: list
|
type: list
|
||||||
default: []
|
default: []
|
||||||
items:
|
items:
|
||||||
|
- variable: ipAddressPoolsEntry
|
||||||
|
label: IP Address Pool Entry
|
||||||
|
schema:
|
||||||
|
additional_attrs: true
|
||||||
|
type: dict
|
||||||
|
attrs:
|
||||||
- variable: name
|
- variable: name
|
||||||
label: Name
|
label: Name
|
||||||
description: Name of the IP address pool
|
description: Name of the IP address pool
|
||||||
@@ -47,7 +53,7 @@ questions:
|
|||||||
default: ""
|
default: ""
|
||||||
required: true
|
required: true
|
||||||
- variable: L2Advertisements
|
- variable: L2Advertisements
|
||||||
group: "App Configuration"
|
group: App Configuration
|
||||||
label: L2 Advertisements
|
label: L2 Advertisements
|
||||||
description: L2Advertisement allows to advertise the LoadBalancer IPs provided
|
description: L2Advertisement allows to advertise the LoadBalancer IPs provided
|
||||||
by the selected pools via L2.
|
by the selected pools via L2.
|
||||||
@@ -55,6 +61,12 @@ questions:
|
|||||||
type: list
|
type: list
|
||||||
default: []
|
default: []
|
||||||
items:
|
items:
|
||||||
|
- variable: L2AdvertisementEntry
|
||||||
|
label: L2 Advertisement Entry
|
||||||
|
schema:
|
||||||
|
additional_attrs: true
|
||||||
|
type: dict
|
||||||
|
attrs:
|
||||||
- variable: name
|
- variable: name
|
||||||
label: Name
|
label: Name
|
||||||
description: Name of the L2 Advertisement
|
description: Name of the L2 Advertisement
|
||||||
@@ -92,7 +104,7 @@ questions:
|
|||||||
default: ""
|
default: ""
|
||||||
required: true
|
required: true
|
||||||
- variable: Communities
|
- variable: Communities
|
||||||
group: "App Configuration"
|
group: App Configuration
|
||||||
label: Communities
|
label: Communities
|
||||||
description: Community is a collection of aliases for communities. Users can
|
description: Community is a collection of aliases for communities. Users can
|
||||||
define named aliases to be used in the BGPPeer CRD.
|
define named aliases to be used in the BGPPeer CRD.
|
||||||
@@ -100,6 +112,12 @@ questions:
|
|||||||
type: list
|
type: list
|
||||||
default: []
|
default: []
|
||||||
items:
|
items:
|
||||||
|
- variable: CommunityEntry
|
||||||
|
label: Community Entry
|
||||||
|
schema:
|
||||||
|
additional_attrs: true
|
||||||
|
type: dict
|
||||||
|
attrs:
|
||||||
- variable: name
|
- variable: name
|
||||||
label: Name
|
label: Name
|
||||||
description: The name of the alias for the community.
|
description: The name of the alias for the community.
|
||||||
@@ -115,7 +133,7 @@ questions:
|
|||||||
required: true
|
required: true
|
||||||
default: ""
|
default: ""
|
||||||
- variable: Peers
|
- variable: Peers
|
||||||
group: "App Configuration"
|
group: App Configuration
|
||||||
label: Peers
|
label: Peers
|
||||||
description: BGPPeer is the Schema for the peers API.
|
description: BGPPeer is the Schema for the peers API.
|
||||||
schema:
|
schema:
|
||||||
@@ -123,6 +141,12 @@ questions:
|
|||||||
type: list
|
type: list
|
||||||
default: []
|
default: []
|
||||||
items:
|
items:
|
||||||
|
- variable: PeerEntry
|
||||||
|
label: Peer Entry
|
||||||
|
schema:
|
||||||
|
additional_attrs: true
|
||||||
|
type: dict
|
||||||
|
attrs:
|
||||||
- variable: name
|
- variable: name
|
||||||
label: Name
|
label: Name
|
||||||
description: The name of the peer.
|
description: The name of the peer.
|
||||||
@@ -215,7 +239,7 @@ questions:
|
|||||||
default: ""
|
default: ""
|
||||||
required: true
|
required: true
|
||||||
- variable: BGPAdvertisements
|
- variable: BGPAdvertisements
|
||||||
group: "App Configuration"
|
group: App Configuration
|
||||||
label: BGP Advertisements
|
label: BGP Advertisements
|
||||||
description: BGPAdvertisement allows to advertise the IPs coming from the
|
description: BGPAdvertisement allows to advertise the IPs coming from the
|
||||||
selected IPAddressPools via BGP.
|
selected IPAddressPools via BGP.
|
||||||
@@ -223,6 +247,12 @@ questions:
|
|||||||
type: list
|
type: list
|
||||||
default: []
|
default: []
|
||||||
items:
|
items:
|
||||||
|
- variable: BGPAdvertisementEntry
|
||||||
|
label: BGP Advertisement Entry
|
||||||
|
schema:
|
||||||
|
additional_attrs: true
|
||||||
|
type: dict
|
||||||
|
attrs:
|
||||||
- variable: name
|
- variable: name
|
||||||
label: Name
|
label: Name
|
||||||
description: Name of the BGP Advertisement
|
description: Name of the BGP Advertisement
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ sources:
|
|||||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/orbital-sync
|
- https://github.com/truecharts/charts/tree/master/charts/incubator/orbital-sync
|
||||||
- https://github.com/mattwebbio/orbital-sync/pkgs/container/orbital-sync
|
- https://github.com/mattwebbio/orbital-sync/pkgs/container/orbital-sync
|
||||||
type: application
|
type: application
|
||||||
version: 0.0.3
|
version: 0.0.4
|
||||||
annotations:
|
annotations:
|
||||||
truecharts.org/catagories: |
|
truecharts.org/catagories: |
|
||||||
- network
|
- network
|
||||||
|
|||||||
@@ -46,6 +46,12 @@ questions:
|
|||||||
type: list
|
type: list
|
||||||
default: []
|
default: []
|
||||||
items:
|
items:
|
||||||
|
- variable: hostEntry
|
||||||
|
label: "Secondary Host Entry"
|
||||||
|
schema:
|
||||||
|
additional_attrs: true
|
||||||
|
type: dict
|
||||||
|
attrs:
|
||||||
- variable: host
|
- variable: host
|
||||||
label: Secondary Host Base URL
|
label: Secondary Host Base URL
|
||||||
description: The base URL of your Pi-hole, including the scheme (HTTP or HTTPS) and port but not including a following slash.
|
description: The base URL of your Pi-hole, including the scheme (HTTP or HTTPS) and port but not including a following slash.
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ name: synapse
|
|||||||
sources:
|
sources:
|
||||||
- https://github.com/truecharts/charts/tree/master/charts/stable/synapse
|
- https://github.com/truecharts/charts/tree/master/charts/stable/synapse
|
||||||
type: application
|
type: application
|
||||||
version: 4.0.40
|
version: 4.0.41
|
||||||
annotations:
|
annotations:
|
||||||
truecharts.org/catagories: |
|
truecharts.org/catagories: |
|
||||||
- cloud
|
- cloud
|
||||||
|
|||||||
@@ -247,11 +247,17 @@ questions:
|
|||||||
type: boolean
|
type: boolean
|
||||||
default: true
|
default: true
|
||||||
- variable: trustedKeyServers
|
- variable: trustedKeyServers
|
||||||
label: "Truested Key Servers"
|
label: "Trusted Key Servers"
|
||||||
schema:
|
schema:
|
||||||
type: list
|
type: list
|
||||||
default: []
|
default: []
|
||||||
items:
|
items:
|
||||||
|
- variable: trustedKeyServersEntry
|
||||||
|
label: Trusted Key Servers Entry
|
||||||
|
schema:
|
||||||
|
additional_attrs: true
|
||||||
|
type: dict
|
||||||
|
attrs:
|
||||||
- variable: serverName
|
- variable: serverName
|
||||||
label: "Server Name"
|
label: "Server Name"
|
||||||
schema:
|
schema:
|
||||||
|
|||||||
Reference in New Issue
Block a user