From 0796d997716aaaf33a95c086a7beafa32389f5d5 Mon Sep 17 00:00:00 2001 From: noasaunders219 <117283483+noasaunders219@users.noreply.github.com> Date: Mon, 2 Oct 2023 13:57:57 +0300 Subject: [PATCH] subnet id example fix --- .../schemas/ocean-nodePoolProperties.yaml | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/api/services/ocean/aksV2/schemas/ocean-nodePoolProperties.yaml b/api/services/ocean/aksV2/schemas/ocean-nodePoolProperties.yaml index cec00e613..cbcffe4c3 100644 --- a/api/services/ocean/aksV2/schemas/ocean-nodePoolProperties.yaml +++ b/api/services/ocean/aksV2/schemas/ocean-nodePoolProperties.yaml @@ -16,18 +16,18 @@ properties: type: boolean example: true osDiskSizeGB: - type: integer - description: | - The size of the OS disk in GB. - For Linux OS, the minimum size is 32GB and for Windows OS the minimum is 128GB. - maximum: 1023 - example: 64 + type: integer + description: | + The size of the OS disk in GB. + For Linux OS, the minimum size is 32GB and for Windows OS the minimum is 128GB. + maximum: 1023 + example: 64 osDiskType: - type: string - description: | - The type of the OS disk. - enum: [ Managed, Ephemeral ] - example: Managed + type: string + description: | + The type of the OS disk. + enum: [ Managed, Ephemeral ] + example: Managed osType: type: string description: | @@ -53,11 +53,11 @@ properties: The IDs of subnets in an existing VNet into which to assign nodes in the cluster (requires azure network-plugin). items: type: string - example: ["/subscription/{...}/resourceGroups/{....}/virtualNetworks/{...}/subnets/{default}"] + example: [ "/subscriptions/123456-1234-1234-1234-123456789/resourceGroups/ExampleResourceGroup/providers/Microsoft.Network/virtualNetworks/ExampleVirtualNetwork/subnets/default" ] podSubnetIDs: type: array description: | The IDs of subnets in an existing VNet into which to assign pods in the cluster (requires azure network-plugin). items: type: string - example: ["/subscription/{...}/resourceGroups/{....}/virtualNetworks/{...}/subnets/{default}"] \ No newline at end of file + example: [ "/subscriptions/123456-1234-1234-1234-123456789/resourceGroups/ExampleResourceGroup/providers/Microsoft.Network/virtualNetworks/ExampleVirtualNetwork/subnets/default" ] \ No newline at end of file