From f2e9818d5367bf47db62b0b2ac0176596860004c Mon Sep 17 00:00:00 2001 From: Francisco Cabrera Date: Fri, 16 Aug 2024 09:13:27 -0400 Subject: [PATCH] DevOps fixing --- docs/azure_jumpstart_arcbox/DevOps/_index.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/azure_jumpstart_arcbox/DevOps/_index.md b/docs/azure_jumpstart_arcbox/DevOps/_index.md index 86a9439b..91160bd3 100644 --- a/docs/azure_jumpstart_arcbox/DevOps/_index.md +++ b/docs/azure_jumpstart_arcbox/DevOps/_index.md @@ -242,11 +242,11 @@ $customLocationRPOID=(az ad sp list --filter "displayname eq 'Custom Locations R ### Bicep deployment option 1: Azure CLI -shell +```shell az login az group create --name "" --location "" az deployment group create -g "" -f "main.bicep" -p "main.parameters.json" -p customLocationRPOID="$customLocationRPOID" - +``` > **Note:** If you see any failure in the deployment, please check the [troubleshooting guide](#basic-troubleshooting). @@ -404,10 +404,10 @@ ArcBox deploys Kubernetes RBAC configuration on the bookstore application for li The "pod-reader" role only allows _get_, _watch_ and _list_ Kubernetes operations permissions in the _bookstore_ namespace but doesn't allow for _delete_ operations permissions. - ```shell - $pod=kubectl --namespace bookstore get pods --selector=app=bookstore --output="jsonpath={.items..metadata.name}" - kubectl --namespace bookstore delete pods $pod --as=jane - ``` + ```shell + $pod=kubectl --namespace bookstore get pods --selector=app=bookstore --output="jsonpath={.items..metadata.name}" + kubectl --namespace bookstore delete pods $pod --as=jane + ``` ![Screenshot showing bookstore RBAC delete pods](./rbac03.png)