Skip to content

Commit 337671b

Browse files
committed
Remove bugbash instructions
1 parent 3b4bf88 commit 337671b

File tree

3 files changed

+0
-51
lines changed

3 files changed

+0
-51
lines changed

articles/iot-operations/deploy-iot-ops/howto-manage-secrets.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,6 @@ ms.date: 09/24/2024
1515

1616
Azure IoT Operations uses Azure Key Vault as the managed vault solution on the cloud, and uses [Azure Key Vault Secret Store extension for Kubernetes](/azure/azure-arc/kubernetes/secret-store-extension) to sync the secrets down from the cloud and store them on the edge as Kubernetes secrets.
1717

18-
>[!NOTE]
19-
>**Special instructions for AIO Internal Bugbash**:
20-
>
21-
>Refer to [Test secrets and user-assigned managed identity](https://msazure.visualstudio.com/One/_wiki/wikis/AIO.wiki/710296/Test-Secrets-and-User-Assigned-Managed-Identity) for instructions on how to test secrets with the PLC simulator.
22-
2318
## Prerequisites
2419

2520
* An Azure IoT Operations instance deployed with secure settings. If you deployed Azure IoT Operations with test settings and now want to use secrets, you need to first [enable secure settings](./howto-enable-secure-settings.md).

articles/iot-operations/deploy-iot-ops/howto-prepare-cluster.md

Lines changed: 0 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,6 @@ To prepare your Azure Arc-enabled Kubernetes cluster, you need:
3939

4040
* The latest version of the Azure IoT Operations extension for Azure CLI. Use the following command to add the extension or update it to the latest version:
4141

42-
> [!NOTE]
43-
> **Special instructions for AIO Internal Bugbash**:
44-
>
45-
> Official IoT Ops CLI releases are installed via extension index with the *az extension add --upgrade --name azure-iot-ops* command mentioned below. However for bug bashes, we will distribute one-off release candidates intended to expose functionality to exercise internally. Use this for Bug Bash 2 on 9/27 and skip the az extension command below
46-
>
47-
>``` bash
48-
>az storage blob download --auth-mode login --blob-url https://azedgecli.blob.core.windows.net/drop/azure_iot_ops-0.7.0a11-py3-none-any.whl -f ./azure_iot_ops-0.7.0a11-py3-none-any.whl
49-
>az extension add --upgrade --source ./azure_iot_ops-0.7.0a11-py3-none-any.whl
50-
>```
51-
5242
```bash
5343
az extension add --upgrade --name azure-iot-ops
5444
```
@@ -66,16 +56,6 @@ To prepare your Azure Arc-enabled Kubernetes cluster, you need:
6656

6757
* Azure CLI version 2.64.0 or newer installed on your development machine. Use `az --version` to check your version and `az upgrade` to update if necessary. For more information, see [How to install the Azure CLI](/cli/azure/install-azure-cli).
6858

69-
> [!NOTE]
70-
> **Special instructions for AIO Internal Bugbash**:
71-
>
72-
> Official IoT Ops CLI releases are installed via extension index with the *az extension add --upgrade --name azure-iot-ops* command mentioned below. However for bug bashes, we will distribute one-off release candidates intended to expose functionality to exercise internally. Use this for Bug Bash 2 on 9/27 and skip the az extension command below
73-
>
74-
> ``` bash
75-
> az storage blob download --auth-mode login --blob-url https://azedgecli.blob.core.windows.net/drop/azure_iot_ops-0.7.0a11-py3-none-any.whl -f ./azure_iot_ops-0.7.0a11-py3-none-any.whl
76-
> az extension add --upgrade --source ./azure_iot_ops-0.7.0a11-py3-none-any.whl
77-
> ```
78-
7959
* The latest version of the Azure IoT Operations extension for Azure CLI. Use the following command to add the extension or update it to the latest version:
8060

8161
```bash
@@ -118,21 +98,6 @@ The [AksEdgeQuickStartForAio.ps1](https://github.com/Azure/AKS-Edge/blob/main/to
11898
| CLUSTER_NAME | A name for the new cluster to be created. |
11999
| ARC_APP_OBJECT_ID | The object ID value that you retrieved in the previous step. |
120100

121-
> [!NOTE]
122-
> **Special instructions for AIO Internal Bugbash**:
123-
>
124-
> The instructions below for AksEdgeQuickStartForAio.ps1 from AKS-Edge GitHub repo are for external customer consumption and will only work after AIO 0.7 is released.
125-
>
126-
> For internal bug bashes, use this powershell script below instead
127-
>
128-
>```powershell
129-
>$url = "https://raw.githubusercontent.com/jagadishmurugan/AKS-Edge/blob/users/jagamu/changes-for-M2-integration/tools/scripts/AksEdgeQuickStart/AksEdgeQuickStartForAio.ps1"
130-
>Invoke-WebRequest -Uri $url -OutFile .\AksEdgeQuickStartForAio.ps1
131-
>Unblock-File .\AksEdgeQuickStartForAio.ps1
132-
>Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process -Force
133-
>.\AksEdgeQuickStartForAio.ps1 -SubscriptionId "<SUBSCRIPTION_ID>" -TenantId "<TENANT_ID>" -ResourceGroupName "<RESOURCE_GROUP_NAME>" -Location "<LOCATION>" -ClusterName "<CLUSTER_NAME>" -Tag "test-v0.3" -CustomLocationOid $customlocationOid
134-
>```
135-
136101
```powershell
137102
$url = "https://raw.githubusercontent.com/Azure/AKS-Edge/main/tools/scripts/AksEdgeQuickStart/AksEdgeQuickStartForAio.ps1"
138103
Invoke-WebRequest -Uri $url -OutFile .\AksEdgeQuickStartForAio.ps1

articles/iot-operations/get-started-end-to-end-sample/quickstart-deploy.md

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -77,17 +77,6 @@ To connect your cluster to Azure Arc:
7777
7878
1. After you sign in, Azure CLI displays all of your subscriptions and indicates your default subscription with an asterisk `*`. To continue with your default subscription, select `Enter`. Otherwise, type the number of the Azure subscription that you want to use.
7979

80-
> [!NOTE]
81-
> **Special instructions for AIO Internal Bugbash**:
82-
>
83-
> Codespaces come preloaded with the Azure CLI and the latest public release of the azure-iot-ops extension.
84-
> However for bug bashes, we will distribute one-off release candidates intended to expose functionality to exercise internally. Use this for Bug Bash 2 on 9/27:
85-
>
86-
> ``` bash
87-
> az storage blob download --auth-mode login --blob-url https://azedgecli.blob.core.windows.net/drop/azure_iot_ops-0.7.0a11-py3-none-any.whl -f ./azure_iot_ops-0.7.0a11-py3-none-any.whl
88-
> az extension add --upgrade --source ./azure_iot_ops-0.7.0a11-py3-none-any.whl
89-
> ```
90-
9180
1. Register the required resource providers in your subscription:
9281

9382
>[!NOTE]

0 commit comments

Comments
 (0)