From a6d02d8c4b4744e94638262ca28f998085f2558c Mon Sep 17 00:00:00 2001 From: James Falcon Date: Thu, 18 Apr 2024 20:27:27 -0500 Subject: [PATCH] fix: Add subnet ipv4/ipv6 to network schema (#5191) RH-Author: Ani Sinha RH-MergeRequest: 110: fix: Add subnet ipv4/ipv6 to network schema (#5191) RH-Jira: RHEL-54688 RH-Acked-by: Emanuele Giuseppe Esposito RH-Acked-by: Cathy Avery RH-Commit: [1/1] a63b3c5f534155aaff36cec137fe1ad7d2f9ed6b (anisinha/cloud-init) These are used by our openstack network_data.json parsing code and get used by the sysconfig renderer. Fixes GH-4911 (cherry picked from commit 0b1ca174095e3ad685e6d6649bb08aafb19a95b9) Signed-off-by: Ani Sinha --- cloudinit/config/schemas/schema-network-config-v1.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/cloudinit/config/schemas/schema-network-config-v1.json b/cloudinit/config/schemas/schema-network-config-v1.json index 78628178..6f97f571 100644 --- a/cloudinit/config/schemas/schema-network-config-v1.json +++ b/cloudinit/config/schemas/schema-network-config-v1.json @@ -532,6 +532,14 @@ "items": { "$ref": "#/$defs/anyOf_type_route" } + }, + "ipv4": { + "type": "boolean", + "description": "Indicate if the subnet is IPv4. If not specified, it will be inferred from the subnet type or address. This exists for compatibility with OpenStack's ``network_data.json`` when rendered through sysconfig." + }, + "ipv6": { + "type": "boolean", + "description": "Indicate if the subnet is IPv6. If not specified, it will be inferred from the subnet type or address. This is exists for compatibility with OpenStack's ``network_data.json`` when rendered through sysconfig." } } }, -- 2.39.3