Skip to content

Commit

Permalink
Merge branch 'master' into storage
Browse files Browse the repository at this point in the history
  • Loading branch information
jananivMS authored Apr 13, 2020
2 parents f3c4b2e + 6098903 commit 8b03c49
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions docs/virtualnetwork/virtualnetwork.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Virtual Network Operator

This operator deploys an Azure Virtual Network into a specified resource group at the specified location, in the address space provided. Users are also able to add subnets to their virtual network through the operator.

Learn more about Azure Virtual Networks [here](https://docs.microsoft.com/en-us/azure/virtual-network/virtual-networks-overview).

Here is a [sample YAML](/config/samples/azure_v1alpha1_virtualnetwork.yaml) to provision a Virtual Network.

The spec is comprised of the following fields:

* Location
* ResourceGroup
* AddressSpace
* Subnets
* SubnetName
* SubnetAddressPrefix

### Required Fields

A Virtual Network needs the following fields to deploy, along with a location and resource group.

* `AddressSpace` specify an address space for your virtual network

### Optional Fields

You are able to specify a single or multiple subnets for your virtual network.

* `Subnets.SubnetName` specify a name for your subnet
* `Subnets.SubnetAddressPrefix` specify an address space for your subnet

## Deploy, view and delete resources

You can follow the steps [here](/docs/customresource.md) to deploy, view and delete resources.

0 comments on commit 8b03c49

Please sign in to comment.