-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -87,6 +87,31 @@ az feature register --name PodSecurityPolicyPreview --namespace Microsoft.Contai | |
az provider register --namespace Microsoft.ContainerService | ||
``` | ||
|
||
# Show tenant | ||
``` | ||
az account tenant list | ||
az account show | ||
``` | ||
|
||
# change tenant: | ||
|
||
## sign in as a different user | ||
``` | ||
az login --user <[email protected]> -password <myPassword> | ||
``` | ||
|
||
## sign in with a different tenant | ||
``` | ||
az login --tenant <myTenantID> | ||
``` | ||
|
||
## clear local creds | ||
``` | ||
az account clear | ||
``` | ||
|
||
|
||
# AKS Pod Identities | ||
There has been a bunch of changes to the way identities are given to pods and how that identity is | ||
linked/federated to Azure Active Directory so that the pod can access Azure resources without hardcoded | ||
|