Skip to content

Commit 0327fcd

Browse files
committed
edits
1 parent d169cb8 commit 0327fcd

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

articles/azure-functions/functions-create-first-quarkus.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -305,9 +305,9 @@ Now that you've opened your Azure function in the portal, here are more features
305305
306306
## Clean up resources
307307
308-
If you don't need these resources, you can delete them by running the following command on your local terminal:
308+
If you don't need these resources, you can delete them by running the following command:
309309
310-
```bash
310+
```azurecli
311311
az group delete --name <yourResourceGroupName> --yes
312312
```
313313

articles/openshift/howto-deploy-java-jboss-enterprise-application-platform-app.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ Next, use the following steps to create an Azure Database for MySQL - Flexible S
174174

175175
1. Use the following command to create an Azure Database for MySQL - Flexible Server:
176176

177-
```bash
177+
```azurecli
178178
az mysql flexible-server create \
179179
--resource-group ${RG_NAME} \
180180
--name ${SERVER_NAME} \
@@ -205,7 +205,7 @@ Next, use the following steps to create an Azure Database for MySQL - Flexible S
205205

206206
1. Use the following commands to get the host of the created MySQL server:
207207

208-
```bash
208+
```azurecli
209209
DB_HOST=$(az mysql flexible-server show \
210210
--resource-group ${RG_NAME} \
211211
--name ${SERVER_NAME} \
@@ -218,7 +218,7 @@ Next, use the following steps to create an Azure Database for MySQL - Flexible S
218218

219219
1. Use the following command to create a temporary firewall rule to allow connection to the MySQL server from the public internet:
220220

221-
```bash
221+
```azurecli
222222
az mysql flexible-server firewall-rule create \
223223
--resource-group ${RG_NAME} \
224224
--name ${SERVER_NAME} \
@@ -239,7 +239,7 @@ Next, use the following steps to create an Azure Database for MySQL - Flexible S
239239
240240
1. Use the following command to delete the temporary firewall rule:
241241
242-
```bash
242+
```azurecli
243243
az mysql flexible-server firewall-rule delete \
244244
--resource-group ${RG_NAME} \
245245
--name ${SERVER_NAME} \
@@ -269,7 +269,7 @@ If you navigated away from the **Deployment is in progress** page, the following
269269
270270
1. Open the shell, paste the value from the **cmdToGetKubeadminCredentials** field, and execute it. You see the admin account and credential for signing in to the OpenShift cluster console portal. The following example shows an admin account:
271271
272-
```bash
272+
```azurecli
273273
az aro list-credentials --resource-group eaparo033123rg --name clusterf9e8b9
274274
```
275275
@@ -301,7 +301,7 @@ Next, use the following steps to connect to the OpenShift cluster using the Open
301301
302302
1. Paste the value from the **cmdToLoginWithKubeadmin** field into the shell, and execute it. You should see the `login successful` message and the project you're using. The following content is an example of the command to connect to the OpenShift cluster using the OpenShift CLI.
303303
304-
```bash
304+
```azurecli
305305
oc login \
306306
$(az aro show \
307307
--resource-group ${RG_NAME} \

articles/openshift/howto-deploy-java-jboss-enterprise-application-platform-with-auto-redeploy.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ This article uses the Azure Marketplace offer for JBoss EAP to accelerate your j
3636

3737
Use the following steps to create a service principal:
3838

39-
1. Create a service principal by using the following command on your local terminal:
39+
1. Create a service principal by using the following command:
4040

41-
```bash
41+
```azurecli
4242
az ad sp create-for-rbac --name "sp-aro-s2i-$(date +%s)"
4343
```
4444

@@ -139,7 +139,7 @@ If you navigated away from the **Deployment is in progress** page, use the follo
139139

140140
1. Open your local terminal, paste the value from the **cmdToGetKubeadminCredentials** field, and execute it. You see the admin account and credential for signing in to the OpenShift cluster console portal. The following example shows an admin account:
141141

142-
```bash
142+
```azurecli
143143
az aro list-credentials -g eaparo033123rg -n aro-cluster
144144
```
145145

0 commit comments

Comments
 (0)