Skip to content

Commit

Permalink
Azure IAM demo touchups: better explanations + add random suffix to s…
Browse files Browse the repository at this point in the history
…torage account name
  • Loading branch information
amitlicht committed Mar 19, 2024
1 parent 1c33c02 commit f145b21
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 24 deletions.
71 changes: 48 additions & 23 deletions docs/features/azure-iam/tutorials/azure-iam-aks.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ Since you now have the Azure integration enabled, you need to redeploy Otterize
### Create an Azure Blob Storage account & container
Create a general-purpose storage account using the Azure CLI:
```bash
export STORAGE_ACCOUNT_NAME=otterizeazureiamtutorial
export STORAGE_ACCOUNT_NAME=ottrtutorial`date +%s`
az storage account create \
--name $STORAGE_ACCOUNT_NAME \
--resource-group $RESOURCE_GROUP \
Expand All @@ -107,20 +107,20 @@ az storage account create \

Create a container in the storage account:
```bash
export STORAGE_CONTAINER_NAME=otterizeazureiamtutorialcontainer
export STORAGE_CONTAINER_NAME=ottrtutorialcontainer
az storage container create \
--account-name $STORAGE_ACCOUNT_NAME \
--name $STORAGE_CONTAINER_NAME
```

Upload a blob to the storage container:
```bash
echo "Hello, Azure integration" > testfile.txt
echo "Hello, Azure integration" > hello.txt
az storage blob upload \
--account-name $STORAGE_ACCOUNT_NAME \
--container-name $STORAGE_CONTAINER_NAME \
--file testfile.txt \
--name testfile.txt
--file hello.txt \
--name hello.txt
```

### Deploy the sample client
Expand All @@ -141,7 +141,7 @@ kubectl patch deployment -n otterize-tutorial-azure-iam client --type='json' -p=
</details>


### View logs for the client - access denied
#### View logs for the client - Azure client ID not set
The client logs will show that the Azure client ID environment variable is not set.
This is because no Azure workload identity has been created for the client pod yet.

Expand All @@ -157,19 +157,20 @@ Azure client ID not set
```

### Label the client pod to create an Azure workload identity
Label the client pod so that the Otterize credentials operator creates an Azure workload identity for it and binds its Kubernetes ServiceAccount to the newly created identity.
```yaml
metadata:
labels:
credentials-operator.otterize.com/create-azure-workload-identity: "true"
```
Label the client pod so that the Otterize credentials operator creates an Azure workload identity for it and binds its Kubernetes ServiceAccount to the newly created identity:

To do this, we won't be labeling the pod directly, but instead patching the `template` attribute of the `Deployment` we created earlier so that it updates the pod.

```bash
kubectl patch deployment -n otterize-tutorial-azure-iam client -p '{"spec": {"template":{"metadata":{"labels":{"credentials-operator.otterize.com/create-azure-workload-identity":"true"}}}} }'
```

This applies the following label to the client pod:
```yaml
metadata:
labels:
credentials-operator.otterize.com/create-azure-workload-identity: "true"
```

#### An Azure workload identity was created for the client pod
Let's inspect the created managed identity
```bash
Expand Down Expand Up @@ -215,23 +216,42 @@ metadata:
namespace: otterize-tutorial-azure-iam
```
#### View logs for the client - Azure client ID is set, but no subscriptions found
The client logs will now show that the Azure client ID environment variable is set,
and the client attempts to log in using federated identity credentials.
However, the client is still unable to login or access any Azure resources,
as no Azure IAM role assignments have been created for the client workload identity yet.
```shell
kubectl logs -f -n otterize-tutorial-azure-iam deploy/client
```
```text
Logging in using federated identity credentials
ERROR: No subscriptions found for 00000000-0000-0000-0000-000000000000
Listing storage blob container ottrtutorialcontainer in storage account ottrtutorial
ERROR: Please run 'az login' to setup account.
```
### Apply intents to create the necessary IAM role assignments
By annotating the pod, we've created a workload identity.
We now need to specify what we need to access, and the intents operator will create an Azure IAM role assignment accordingly.

We will specify the following ClientIntents, granting the `Storage Blob Data Contributor` permission to the `otterizeazureiamtutorialcontainer` container in the `otterizeazureiamtutorial` storage account.
```yaml
{@include: ../../../../static/code-examples/azure-iam-aks/clientintents.yaml}
```

To apply these intents, run the following command:
To do so, we will apply a `ClientIntents` resource that specifies the access required for the client pod:
```bash
kubectl apply -n otterize-tutorial-azure-iam -f ${ABSOLUTE_URL}/code-examples/azure-iam-aks/clientintents.yaml
kubectl patch clientintents -n otterize-tutorial-azure-iam client --type='json' -p="[{\"op\": \"replace\", \"path\": \"/spec/calls/0/name\", \"value\": \"/providers/Microsoft.Storage/storageAccounts/"$STORAGE_ACCOUNT_NAME"/blobServices/default/containers/"$STORAGE_CONTAINER_NAME"\"}]"
```

This applies the following ClientIntents, granting the `Storage Blob Data Contributor` permission to the Azure Blog Storage account & container we created:
```yaml
{@include: ../../../../static/code-examples/azure-iam-aks/clientintents.yaml}
```

### The client can now list files in the Azure Blob Storage container!

Let's look at the client logs again to see that no more errors are being reported:
Expand All @@ -247,14 +267,19 @@ CloudName HomeTenantId IsDefault Name
----------- ------------------------------------ ----------- -------------------- ------- ------------------------------------
AzureCloud 00000000-0000-0000-0000-000000000000 True Azure subscription 1 Enabled 00000000-0000-0000-0000-000000000000
Listing storage blob container otterizeazureiamtutorialcontainer in storage account otterizeazureiamtutorial
Name Blob Type Blob Tier Length Content Type Last Modified Snapshot
------------ ----------- ----------- -------- -------------- ------------------------- ----------
testfile.txt BlockBlob Hot 25 text/plain 2024-03-10T18:07:21+00:00
Listing storage blob container ottrtutorialcontainer in storage account ottrtutorial
Name Blob Type Blob Tier Length Content Type Last Modified Snapshot
--------- ----------- ----------- -------- -------------- ------------------------- ----------
hello.txt BlockBlob Hot 25 text/plain 2024-03-10T18:07:21+00:00
```
:::note
Azure role assignments may take up to 10 minutes to take effect. This is a known limitation of Azure RBAC.
If you are still seeing access errors in the client logs, wait a few minutes and try again.
:::
### What's next?

Try out some of the other quick tutorials to learn about how to use ClientIntents to manage network policies, Istio policies, PostgreSQL access, and more. You can use a single ClientIntents resource to specify all the access required for a pod.
Expand Down
2 changes: 1 addition & 1 deletion static/code-examples/azure-iam-aks/clientintents.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ spec:
service:
name: client
calls:
- name: "/providers/Microsoft.Storage/storageAccounts/otterizeazureiamtutorial/blobServices/default/containers/otterizeazureiamtutorialcontainer"
- name: "/providers/Microsoft.Storage/storageAccounts/ottrtutorial/blobServices/default/containers/ottrtutorialcontainer"
type: azure
azureRoles:
- "Storage Blob Data Contributor"

0 comments on commit f145b21

Please sign in to comment.