The following is the detailing of the Azure Kubernetes Service (AKS) cluster provisioning by Palette:
- The Palette platform enables the effortless deployment and management of containerized applications with fully-managed AKS.
- It provides the users with server-less Kubernetes, an integrated continuous integration and continuous delivery (CI/CD) experience, and enterprise-grade security and governance.
- This unites the development and operations to a single platform achieving faster build, delivery, and scaling of applications with credence.
- The infrastructure has an event-driven autoscaling and triggers that enable Elastic provisioning for this self-managed infrastructure.
- Extensive authentication and authorization capabilities using Azure Active Directory and dynamic rules enforcement, across multiple clusters with Azure Policy.
The following prerequisites must be met before deploying an AKS workload cluster:
- You need an active Azure cloud account with sufficient resource limits and permissions to provision compute, network and security resources in the desired regions.
- You must have permissions to deploy clusters using AKS service on Azure.
- Register your Azure cloud account in Palette as described in the "Creating an Azure Cloud account" section below.
- You should have an Infrastructure cluster profile created in Palette for AKS.
Additional prerequisites
There are additional prerequisites if Azure Active Directory integration for the AKS cluster is desired:
- A Tenant Name must be provided as part of the Azure cloud account creation in Palette.
For the Azure client used in the Azure cloud account, these API permission have to be provided:
Microsoft Graph: Group.Read.All (Application Type) Microsoft Graph: Directory.Read.All (Application Type) These permissions can be configured from the Azure cloud console under App registrations > API permissions for the specified App.
To create an Azure cloud account, we need:
- Client ID
- Tenant ID
- Client secret
For this, we first need to create an Azure Active Directory (AAD) Application which can be used with role-based access control. Follow the steps below to create a new AAD application, assign roles, and create the client secret:
- Follow the steps described here to create a new Azure Active Directory application. Note down your ClientID and TenantID.
- On creating the application, a minimum required ContributorRole needs to be assigned. To assign any kind of role, the user must have a minimum role of UserAccessAdministrator. The role can be assigned by following the Assign Role To Application link.
- Follow the steps described in the Create an Application Secret section to create the client application secret. Store the Client Secret safely as it will not be available as plain text later.
The following steps need to be performed to provision a new AKS cluster:
- Provide the basic cluster information like Name, Description, and Tags.
- Select a Cluster Profile created for the AKS Cluster. The profile definition will be used as the Cluster Construction Template.
Review and override pack parameters as desired. By default, parameters for all packs are set with values defined in the Cluster Profile.
Provide the Azure Cloud account and placement information.
Parameter Description Cloud Account Select the desired cloud account. Azure cloud accounts with credentials need to be preconfigured in project settings. Subscription Select the subscription which is to be used to access Azure Services. Region Select a region in Azure in which the cluster should be deployed. Resource Group Select the resource group in which the cluster should be deployed. SSH Key Public key to configure remote SSH access to the nodes. Placement If the choice of placement is Static, then select: Virtual Network: Select the virtual network from dropdown menu. Control plane Subnet: Select the control plane network from the dropdown menu. Worker Network: Select the worker network from the dropdown menu. Configure the worker node pools. A worker node pool is configured by default.
Parameter Description Name A descriptive name for the node pool. Size Number of nodes to be provisioned for the node pool. Instance Type Select the Azure instance type to be used for all the nodes in the pool. Managed Disk Select the managed disk type to be used Disk Size Storage disk size in GB to be attached to the node. Availability Zones (if any) Choose one or more availability zones. Palette provides fault tolerance to guard against failures like hardware failures or network failures, by provisioning nodes across availability zones if multiple zones are selected. Zones are supported only for worker pools
If you run a single system node pool for your AKS cluster in a production environment, it is recommended to use at least three nodes for the node pool.
A minimum allocation of 4Gi of memory is required across all worker nodes.
Set the schedules of OS Patching, Scans, or backup and recovery as per user choice.
Review the settings and deploy the cluster. Provisioning status with details of ongoing provisioning tasks is available to track progress.
The deletion of an AKS cluster results in the removal of all Virtual Machines and associated Storage Disks, created for the cluster. The following tasks need to be performed to delete an AKS cluster:
- Select the cluster to be deleted from the Cluster View page and navigate to the Cluster Overview page.
- Invoke a delete action available on the page: Cluster > Settings > Cluster Settings > Delete Cluster.
- Click Confirm to delete.
The Cluster Status is updated to Deleting while cluster resources are being deleted. Provisioning status is updated with the ongoing progress of the delete operation. Once all resources are successfully deleted, the cluster status changes to Deleted and is removed from the list of clusters.
A cluster stuck in the Deletion state can be force deleted by the user through the User Interface. The user can go for a force deletion of the cluster, only if it is stuck in a deletion state for a minimum of 15 minutes. Palette enables cluster force delete from the Tenant Admin and Project Admin scope.
- Log in to the Palette Management Console.
Navigate to the Cluster Details page of the cluster stuck in deletion.
If the deletion is stuck for more than 15 minutes, click the Force Delete Cluster button from the Settings dropdown.
If the Force Delete Cluster button is not enabled, wait for 15 minutes. The Settings dropdown will give the estimated time for the auto-enabling of the Force Delete button.
The Azure Active Directory (AAD) could be enabled while creating and linking the Azure Cloud account for the Palette Platform, using a simple check box. Once the Cloud account is created, you can create the Azure AKS cluster. The AAD-enabled AKS cluster will have its Admin kubeconfig file created and can be downloaded from our Palette UI as the 'Kubernetes config file'. You need to create manually the User's kubeconfig file to enable AAD completely. The following are the steps to create the custom user kubeconfig file:
- Go to the Azure console to create the Groups in Azure AD to access the Kubernetes RBAC and Azure AD control access to cluster resources.
- After you create the groups, create users in the Azure AD.
- Create custom Kubernetes roles and role bindings for the created users and apply the roles and role bindings, using the Admin kubeconfig file.
- Once the roles and role bindings are created, these roles can be linked to the Groups created in Azure AD.
- The users can now access the Azure clusters with the complete benefits of AAD. To get the user-specific kubeconfig file please run the following command:
az aks get-credentials --resource-group <resource-group> --name <cluster-name>