From 471d0c0dac8fb3e6897cfa89b41e387fb7b3ee52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cjomolnargit=20config=20--global=20user=2Eemail=20?= =?UTF-8?q?v-jmoln=40Microsoft=2Ecomgit=20config=20-listcd=20techcontentgi?= =?UTF-8?q?t=20config=20--global=20user=2Ename=20=E2=80=9Cjomolnar?= Date: Wed, 27 Jul 2016 16:46:08 -0700 Subject: [PATCH] edit pass: batch-linux-nodes.md --- articles/batch/batch-linux-nodes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/articles/batch/batch-linux-nodes.md b/articles/batch/batch-linux-nodes.md index 2169031c353..8724ca3731e 100644 --- a/articles/batch/batch-linux-nodes.md +++ b/articles/batch/batch-linux-nodes.md @@ -55,7 +55,7 @@ The Batch node agent is a program that runs on each node in the pool and provide ## Create a Linux pool: Batch Python -The following code snippet shows the creation of a pool of Ubuntu Server compute nodes that uses the [Microsoft Azure Batch Client Library for Python][py_batch_package]. Reference documentation for the Batch Python module can be found at [azure.batch package ][py_batch_docs] on Read the Docs. +The following code snippet shows an example of how to use the [Microsoft Azure Batch Client Library for Python][py_batch_package] to create a pool of Ubuntu Server compute nodes. Reference documentation for the Batch Python module can be found at [azure.batch package ][py_batch_docs] on Read the Docs. This snippet creates an [ImageReference][py_imagereference] explicitly and specifies each of its properties (publisher, offer, SKU, version). In production code, however, we recommend that you use the [list_node_agent_skus][py_list_skus] method to determine and select from the available image and node agent SKU combinations at runtime. @@ -134,7 +134,7 @@ vmc = batchmodels.VirtualMachineConfiguration( ## Create a Linux pool: Batch .NET -The following code snippet shows the creation of a pool of Ubuntu Server compute nodes that uses the [Batch .NET][nuget_batch_net] client library. You can find the [Batch .NET reference documentation][api_net] on MSDN. +The following code snippet shows an example of how to use the [Batch .NET][nuget_batch_net] client library to create a pool of Ubuntu Server compute nodes. You can find the [Batch .NET reference documentation][api_net] on MSDN. The following code snippet uses the [PoolOperations][net_pool_ops].[ListNodeAgentSkus][net_list_skus] method to select from the list of currently supported Marketplace image and node agent SKU combinations. This technique is desirable because the list of supported combinations may change from time to time. Most commonly, supported combinations are added.