From 998957037a26b28491d27d73cd50d22f3a1d8afb Mon Sep 17 00:00:00 2001 From: noasaunders219 <117283483+noasaunders219@users.noreply.github.com> Date: Sun, 1 Oct 2023 13:58:10 +0300 Subject: [PATCH] vnet subnets and pod subnets added to node pool properties --- .../schemas/ocean-nodePoolProperties.yaml | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/api/services/ocean/aksV2/schemas/ocean-nodePoolProperties.yaml b/api/services/ocean/aksV2/schemas/ocean-nodePoolProperties.yaml index af92898fe..32ea90810 100644 --- a/api/services/ocean/aksV2/schemas/ocean-nodePoolProperties.yaml +++ b/api/services/ocean/aksV2/schemas/ocean-nodePoolProperties.yaml @@ -43,7 +43,21 @@ properties: kubernetesVersion: type: string description: | - The desired Kubernetes version of the luanched nodes. + The desired Kubernetes version of the launched nodes. In case the value is null, the Kubernetes version of the control plane is used. - example: 1.26 \ No newline at end of file + example: 1.26 + vnetSubnetIDs: + type: array + description: > + A comma-separated list of subnet identifiers for ---. Subnet identifiers should be configured with auto-assign public IP. + items: + type: string + example: ["subnet-4c1d1538", "subnet-2791bb61"] + podSubnetIDs: + type: array + description: > + A comma-separated list of subnet identifiers for ---. Subnet identifiers should be configured with auto-assign public IP. + items: + type: string + example: ["subnet-4c1d1538", "subnet-2791bb61"] \ No newline at end of file