Skip to content

Commit a935c07

Browse files
committed
casing
1 parent 61b3faa commit a935c07

9 files changed

+14
-14
lines changed

articles/load-balancer/quickstart-load-balancer-standard-internal-bicep.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.custom: template-quickstart, subject-armqs, mode-arm, devx-track-bicep,engage
1212

1313
# Quickstart: Create an internal load balancer to load balance VMs using Bicep
1414

15-
In this quickstart, you learn to use a BICEP file to create an internal; Azure load balancer. The internal load balancer distributes traffic to virtual machines in a virtual network located in the load balancer's backend pool. Along with the internal load balancer, this template creates a virtual network, network interfaces, a NAT Gateway, and an Azure Bastion instance.
15+
In this quickstart, you learn to use a Bicep file to create an internal Azure load balancer. The internal load balancer distributes traffic to virtual machines in a virtual network located in the load balancer's backend pool. Along with the internal load balancer, this template creates a virtual network, network interfaces, a NAT Gateway, and an Azure Bastion instance.
1616

1717
:::image type="content" source="media/quickstart-load-balancer-standard-internal-portal/internal-load-balancer-resources.png" alt-text="Diagram of resources deployed for internal load balancer." lightbox="media/quickstart-load-balancer-standard-internal-portal/internal-load-balancer-resources.png":::
1818

articles/operator-service-manager/how-to-manage-artifacts-nexus.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ This How-To article describes how to push artifacts to and pull artifacts from a
2929
- [Enable AOSM](quickstart-onboard-subscription-azure-operator-service-manager.md) on your Azure subscription
3030
- Install the [Azure CLI](/cli/azure/install-azure-cli)
3131
- Deploy an Artifact Store resource of type Azure Container Registry
32-
- Deploy an Artifact manifest resource that contains an entry for the artifact you want to install. This example shows the artifact manifest BICEP definition for a fictional Contoso CNF container image
32+
- Deploy an Artifact manifest resource that contains an entry for the artifact you want to install. This example shows the artifact manifest Bicep definition for a fictional Contoso CNF container image
3333

3434
```bicep
3535
resource acrArtifactManifest 'Microsoft.Hybridnetwork/publishers/artifactStores/artifactManifests@2023-09-01' = {

articles/operator-service-manager/how-to-manage-artifacts-virtualized-network-function-cloud.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ This How-To article describes how to push VHD images to and pull VHD images from
2727
- [Enable AOSM](quickstart-onboard-subscription-azure-operator-service-manager.md) on your Azure subscription
2828
- Installed the [Azure CLI](/cli/azure/install-azure-cli)
2929
- Deploy an Artifact Store resource of type Azure Storage Account
30-
- Deploy an Artifact manifest resource that contains an entry for the image you want to push. This example shows the artifact manifest BICEP definition for a fictional Contoso VNF virtual machine image
30+
- Deploy an Artifact manifest resource that contains an entry for the image you want to push. This example shows the artifact manifest Bicep definition for a fictional Contoso VNF virtual machine image
3131

3232
```bicep
3333
resource storageAccountArtifactManifest 'Microsoft.Hybridnetwork/publishers/artifactStores/artifactManifests@2023-09-01' = {

articles/operator-service-manager/how-to-onboard-azure-resource-manager-resources-cli.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Onboarding is a multi-step process. Once you meet the prerequisites, you'll use
1818

1919
1. Modify an existing NSDV input file for a previously onboarded CNF.
2020
1. Fill the input file with the information required to build the AOSM resource definitions.
21-
1. Generate BICEP files that define a Network Service Design Group and Version (NSDV) based on the input file and your ARM template.
21+
1. Generate Bicep files that define a Network Service Design Group and Version (NSDV) based on the input file and your ARM template.
2222
1. Publish the NSDV and upload the ARM Template to an Artifact Store (AOSM-managed Azure Container Registry (ACR)).
2323

2424
This how-to guide uses Azure Key Vault (AKV) as an example of an Azure Resource, however, any Azure resource can be onboarded by following the same steps. This article uses a CNF as the example NF; the process is identical for a Virtualized Network Function (VNF) apart from minor differences in the NSDV input file.
@@ -41,7 +41,7 @@ This how-to guide uses Azure Key Vault (AKV) as an example of an Azure Resource,
4141
- Any parameters you want to expose to the operator who will deploy your NSDV must be defined as parameters in the ARM template.
4242

4343
> [!NOTE]
44-
> The Az CLI AOSM Extension does not support onboarding Azure resources defined in a BICEP template. However, you can use the `bicep build` command to convert your BICEP files to ARM templates. See [the bicep CLI documentation](/azure/azure-resource-manager/bicep/bicep-cli) for detailed information and instructions.
44+
> The Az CLI AOSM Extension does not support onboarding Azure resources defined in a Bicep file. However, you can use the `bicep build` command to convert your Bicep files to ARM templates. See [the bicep CLI documentation](/azure/azure-resource-manager/bicep/bicep-cli) for detailed information and instructions.
4545
4646
### Helm and Docker engine
4747

articles/operator-service-manager/how-to-onboard-containerized-network-function-cli.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ In this how-to guide, Network Function Publishers and Service Designers learn ho
1515

1616
Onboarding is a multi-step process. Once you meet the prerequisites, you'll use the Azure CLI AOSM extension to:
1717

18-
1. Generate BICEP files that define a Network Function Definition Group and Version (NFD) based on your Helm charts and values.yaml.
18+
1. Generate Bicep files that define a Network Function Definition Group and Version (NFD) based on your Helm charts and values.yaml.
1919
2. Publish the NFD and upload the CNF images and charts to an Artifact Store (AOSM-managed Azure Container Registry (ACR)).
20-
3. Add your published NFD to the BICEP files that define a Network Service Design Group and Version (NSD).
20+
3. Add your published NFD to the Bicep files that define a Network Service Design Group and Version (NSD).
2121
4. Publish the NSD.
2222

2323
## Prerequisites

articles/operator-service-manager/how-to-onboard-virtualized-network-function-cli.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ ms.custom: devx-track-azurecli
1414

1515
In this how-to guide, Network Function Publishers and Service Designers learn how to use the Azure CLI AOSM extension to onboard a virtualized network function to AOSM. This VNF can subsequently be deployed on [Azure Operator Nexus](/azure/operator-nexus/overview). Onboarding is a multi-step process. Once you meet the prerequisites, you'll use the Azure CLI AOSM extension to:
1616

17-
1. Generate BICEP files that define a Network Function Definition Group and Version (NFD).
17+
1. Generate Bicep files that define a Network Function Definition Group and Version (NFD).
1818
2. Publish the NFD and upload the VNF image to an Artifact Store (AOSM-managed Azure Container Registry (ACR)).
19-
3. Add your published NFD to the BICEP files that define a Network Service Design Group and Version (NSD).
19+
3. Add your published NFD to the Bicep files that define a Network Service Design Group and Version (NSD).
2020
4. Publish the NSD.
2121

2222
## Prerequisites

articles/operator-service-manager/how-to-use-helm-option-parameters.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ This section explains how to override `--atomic` for an NF that consists of a si
7474
}]
7575
```
7676
77-
1. Find the network function application name by navigating to the `cnf-cli-output` directory, opening the `nfDefinition` directory, and copying the value from the only entry in the networkFunctionApplications array in the `nfdv` resource. Confirm you have the correct value by comparing against the following fictional Contoso example BICEP snippet. In this case, the network function application name is `Contoso`.
77+
1. Find the network function application name by navigating to the `cnf-cli-output` directory, opening the `nfDefinition` directory, and copying the value from the only entry in the networkFunctionApplications array in the `nfdv` resource. Confirm you have the correct value by comparing against the following fictional Contoso example Bicep snippet. In this case, the network function application name is `Contoso`.
7878
7979
```bicep
8080
resource nfdv 'Microsoft.Hybridnetwork/publishers/networkfunctiondefinitiongroups/networkfunctiondefinitionversions@2023-09-01' = {
@@ -122,7 +122,7 @@ resource nfResource 'Microsoft.HybridNetwork/networkFunctions@2023-09-01' = [for
122122

123123
### Build the edited ARM Template and upload it to the Artifact Store
124124

125-
1. Navigate to the `nsd-cli-output/artifacts` directory created by the `az aosm nsd build` command and build the Network Function ARM Template from the BICEP file generated by the CLI.
125+
1. Navigate to the `nsd-cli-output/artifacts` directory created by the `az aosm nsd build` command and build the Network Function ARM Template from the Bicep file generated by the CLI.
126126

127127
```azurecli
128128
bicep build <nf-name>.bicep
@@ -210,4 +210,4 @@ resource nfResource 'Microsoft.HybridNetwork/networkFunctions@2023-09-01' = [for
210210

211211
## Next steps
212212

213-
You can now retry the SNS deployment. You can submit the deployment again through ARM, BICEP, or the AOSM REST API. You can also delete the failed SNS through the Azure portal SNS overview and redeploy following [the operator quickstart](quickstart-containerized-network-function-operator.md), replacing the quickstart NF parameters with the parameters for your network function. The helm releases deployed to the Kubernetes cluster won't be removed on failure. [How to debug SNS deployment failures](troubleshoot-helm-install-failures.md) describes a toolkit for debugging common helm install failures.
213+
You can now retry the SNS deployment. You can submit the deployment again through ARM, Bicep, or the AOSM REST API. You can also delete the failed SNS through the Azure portal SNS overview and redeploy following [the operator quickstart](quickstart-containerized-network-function-operator.md), replacing the quickstart NF parameters with the parameters for your network function. The helm releases deployed to the Kubernetes cluster won't be removed on failure. [How to debug SNS deployment failures](troubleshoot-helm-install-failures.md) describes a toolkit for debugging common helm install failures.

articles/operator-service-manager/quickstart-publish-containerized-network-function-definition.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ To construct the Network Function Definition (NFD), initiate the build process.
9797
az aosm nfd build -f input-cnf-nfd.jsonc --definition-type cnf
9898
```
9999

100-
The Az CLI AOSM extension generates a directory called `cnf-cli-output`. This directory contains the BICEP files defining the AOSM resources required to publish an NFDV and upload the images required to deploy it to AOSM-managed storage. Examine the generated files to gain a better understanding of the Network Function Definition (NFD) structure.
100+
The Az CLI AOSM extension generates a directory called `cnf-cli-output`. This directory contains the Bicep files defining the AOSM resources required to publish an NFDV and upload the images required to deploy it to AOSM-managed storage. Examine the generated files to gain a better understanding of the Network Function Definition (NFD) structure.
101101

102102
| Directory/File | Description |
103103
| -------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- |

articles/operator-service-manager/troubleshoot-cli-common-issues.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Confirm that you have the `Contributor` and `AcrPush` role assignments on the su
4949
**Option 2.**
5050
If these permissions don't resolve the issue, run the following commands from the `nsd-cli-output/artifacts` folder created by the `az aosm nsd build` command:
5151

52-
- Build the Network Function ARM Template from the BICEP file generated by the CLI
52+
- Build the Network Function ARM Template from the Bicep file generated by the CLI
5353

5454
```azurecli
5555
bicep build <nf-name>.bicep

0 commit comments

Comments
 (0)