From 3d5f8c2e8489446f85d832b247bc623f2198bd67 Mon Sep 17 00:00:00 2001 From: "budimanjojo-bot[bot]" <111944664+budimanjojo-bot[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 09:18:38 +0000 Subject: [PATCH] chore(schema): update talconfig.yaml JSON schema (#299) Co-authored-by: budimanjojo-bot <111944664+budimanjojo-bot[bot]@users.noreply.github.com> --- pkg/config/schemas/talconfig.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/pkg/config/schemas/talconfig.json b/pkg/config/schemas/talconfig.json index c42b188c..1859b9f3 100644 --- a/pkg/config/schemas/talconfig.json +++ b/pkg/config/schemas/talconfig.json @@ -951,6 +951,17 @@ "schematic": { "$ref": "#/$defs/Schematic", "description": "Talos image customization to be applied to all controlplane nodes" + }, + "ingressFirewall": { + "$ref": "#/$defs/IngressFirewallWrapper", + "description": "Firewall specification for all controlplane nodes" + }, + "extraManifests": { + "items": { + "type": "string" + }, + "type": "array", + "description": "List of manifest files to be added to all controlplane nodes" } }, "additionalProperties": false, @@ -979,6 +990,17 @@ "schematic": { "$ref": "#/$defs/Schematic", "description": "Talos image customization to be applied to all worker nodes" + }, + "ingressFirewall": { + "$ref": "#/$defs/IngressFirewallWrapper", + "description": "Firewall specification for all worker nodes" + }, + "extraManifests": { + "items": { + "type": "string" + }, + "type": "array", + "description": "List of manifest files to be added to all worker nodes" } }, "additionalProperties": false,