Supported Providers
Azure AKS
Azure AKS provider to view kubernetes resources.
Connecting with the Provider
To connect to Azure AKS, follow below steps:
- Log in to your Azure account.
- Go to your kubernetes service page and click on
Connect
button and then click onOpen Cloud Shell
. - Run
az ad sp create-for-rbac --role owner --scopes /subscriptions/<YOUR_SUBSCRIPTION_ID>
in the cloud shell, you will get response similar to:In above JSON object, theappId
isclient_id
,password
isclient_secret
andtenant
istenant_id
Notes
- This provider allows you to interact with Azure AKS to query resources in kubernetes cluster.
Authentication
This provider requires authentication.
- subscription_id: The azure subscription id (required: True, sensitive: True)
- client_id: The azure client id (required: True, sensitive: True)
- client_secret: The azure client secret (required: True, sensitive: True)
- tenant_id: The azure tenant id (required: True, sensitive: True)
- resource_group_name: The azure aks resource group name (required: True, sensitive: True)
- resource_name: The azure aks cluster name (required: True, sensitive: True)
In workflows
This provider can be used in workflows.
As “step” to query data, example:
Check the following workflow example: