Skip to content

Commit a859541

Browse files
authored
Merge pull request Azure#588 from Azure/canary
Canary
2 parents 2c98509 + ff313c5 commit a859541

File tree

7 files changed

+6
-34
lines changed

7 files changed

+6
-34
lines changed

.github/ISSUE_TEMPLATE/feature_request.md

-20
This file was deleted.

docs/azure_jumpstart_hcibox/cloud_deployment/_index.md

-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ Various options are available to connect to _HCIBox-Client_ VM, depending on the
3232

3333
By design, HCIBox does not open port 3389 on the network security group. Therefore, you must create an NSG rule to allow inbound 3389.
3434

35-
> **Note:** If you deployed with Azure Developer CLI then this step is automatically done for you as part of the automation.
36-
3735
- Open the _HCIBox-NSG_ resource in Azure portal and click "Add" to add a new rule.
3836

3937
![Screenshot showing HCIBox-Client NSG with blocked RDP](./rdp_nsg_blocked.png)

docs/azure_jumpstart_hcibox/deployment_az/_index.md

+3-10
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ Azure Bicep is used to deploy HCIBox into your Azure subscription. To deploy, yo
113113

114114
> **Note:** Please avoid using the $ symbol in the `windowsAdminPassword`. Using this symbol can cause the LogonScript to fail.
115115

116-
- Edit the [main.parameters.json](https://github.com/microsoft/azure_arc/blob/main/azure_jumpstart_hcibox/bicep/main.bicepparam) template parameters file and supply values for your environment.
116+
- Edit the [main.bicepparam](https://github.com/microsoft/azure_arc/blob/main/azure_jumpstart_hcibox/bicep/main.bicepparam) template parameters file and supply values for your environment.
117117

118118
| Name | Type | Description | Default |
119119
| --- | --- | --- | --- |
@@ -136,14 +136,7 @@ Azure Bicep is used to deploy HCIBox into your Azure subscription. To deploy, yo
136136
| `windowsAdminPassword` | securestring | Password for Windows account. Password must have 3 of the following: 1 lower case character, 1 upper case character, 1 number, and 1 special character. The value must be between 12 and 123 characters long | |
137137
| `windowsAdminUsername` | string | Username for Windows account | |
138138
139-
> **Disclaimer:** The `governResourceTags` parameter is optional and set to true by default. If not specified, the following tag values will be added:
140-
141-
```
142-
CostControl: 'Ignore'
143-
SecurityControl: 'Ignore'
144-
```
145-
146-
> Both the `CostControl` and `SecurityControl` tags are applicable to **ONLY Microsoft-internal Azure lab tenants** and designed for managing automated governance processes related to cost optimization and security controls. As mentioned, it will get added to the deployment **only** if the `governResourceTags` parameter was set to true. If you are deploying HCIBox from a Microsoft-internal tenant and Azure subscription, this parameter is required to be set to 'true'. Failure to do so will cause your deployment to have issues and most likely to fail.
139+
> **Disclaimer:** The *governResourceTags* parameter is optional and set to true by default. If not specified, both *CostControl: 'Ignore'* and *SecurityControl: 'Ignore'* tag values will be added. These tags are applicable to **ONLY Microsoft-internal Azure lab tenants** and designed for managing automated governance processes related to cost optimization and security controls. As mentioned, it will get added to the deployment **only** if the *governResourceTags* parameter was set to true. If you are deploying HCIBox from a Microsoft-internal tenant and Azure subscription, this parameter is required to be set to 'true'. Failure to do so will cause your deployment to have issues and most likely to fail.
147140
148141
Example parameter-file:
149142
@@ -153,7 +146,7 @@ Example parameter-file:
153146
154147
```shell
155148
az group create --name "<resource-group-name>" --location "<location>"
156-
az deployment group create -g "<resource-group-name>" -f "main.bicep" -p "main.parameters.json"
149+
az deployment group create -g "<resource-group-name>" -f "main.bicep" -p "main.bicepparam"
157150
```
158151
159152
![Screenshot showing bicep deploying](./bicep_deploying.png)

docs/azure_jumpstart_hcibox/faq/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Jumpstart HCIBox is a turnkey solution that provides a complete sandbox for expl
1414
1515
## What is required to deploy HCIBox?
1616

17-
HCIBox deployment requires an Azure service principal with Owner role-based access control (RBAC) on an Azure subscription and resource group. You can deploy HCIBox using Azure Bicep or the [Azure Developer CLI](https://learn.microsoft.com/azure/developer/azure-developer-cli/overview). A service principal is required to run the automation scripts that deploy and configure HCIBox features. You can view how the service principal is used by exploring the HCIBox code on our [public GitHub repository](https://github.com/microsoft/azure_arc).
17+
HCIBox deployment requires an Azure service principal with Owner role-based access control (RBAC) on an Azure subscription and resource group and can be deployed using Azure Bicep. A service principal is required to run the automation scripts that deploy and configure HCIBox features. You can view how the service principal is used by exploring the HCIBox code on our [public GitHub repository](https://github.com/microsoft/azure_arc).
1818

1919
## What Azure regions can HCIBox be deployed to?
2020

docs/azure_jumpstart_hcibox/getting_started/_index.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ isGettingStarted: false
55
weight: 2
66
---
77
# Evaluating Azure Local with HCIBox
8+
89
## Getting started
910

1011
HCIBox is a turnkey solution that provides a complete sandbox for exploring [Azure Local](https://learn.microsoft.com/azure-stack/hci/whats-new) capabilities and hybrid cloud integration in a virtualized environment. HCIBox is designed to be completely self-contained within a single Azure subscription and resource group, which will make it easy for a user to get hands-on with Azure Local and [Azure Arc](https://learn.microsoft.com/azure/azure-arc/overview) technology without the need for physical hardware.

docs/azure_jumpstart_hcibox/troubleshooting/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ weight: 9
99

1010
Occasionally deployments of HCIBox may fail at various stages. Common reasons for failed deployments include:
1111

12-
- Invalid service principal id, service principal secret, or service principal Azure tenant ID provided in _main.parameters.json_ file. This can cause failures when running automation that requires logging into Azure, such as the scripts that register the Azure Local instance, deploy AKS Hybrid, or configure Arc Resource Bridge.
12+
- Invalid service principal id, service principal secret, or service principal Azure tenant ID provided in the _main.bicepparam_ Bicep template file. This can cause failures when running automation that requires logging into Azure, such as the scripts that register the Azure Local instance, deploy AKS Hybrid, or configure Arc Resource Bridge.
1313
- Not enough vCPU quota available in your target Azure region - check vCPU quota and ensure you have at least 32 available. See the [prerequisites](../getting_started/#prerequisites) section for more details.
1414
- Corruption when downloading HCIBox VHD files can interrupt deployments. HCIBox should automatically halt if this occurs. Re-running the PowerShell script at _C:\HCIBox\HCIBoxLogonScript.ps1_ can often repair this issue.
1515

0 commit comments

Comments
 (0)