Hi!
I am delighted to share with you a recently recorded webinar titled « AKS Pentesting Insights, » just in time for the Festive Tech Calendar 2023! Below, you’ll discover the insightful content presented during the webinar.
Maxime.
Hi!
I am delighted to share with you a recently recorded webinar titled « AKS Pentesting Insights, » just in time for the Festive Tech Calendar 2023! Below, you’ll discover the insightful content presented during the webinar.
Maxime.
Hi!
As businesses continue to embrace Kubernetes for container orchestration, the need for efficient resource utilization and cost optimization becomes paramount. Enter Karpenter, an open-source node provisioning project tailored specifically for Kubernetes environments. In this article, we’ll explore how Karpenter can be a game-changer for Azure Kubernetes Service (AKS) users, helping them unlock the full potential of their clusters while minimizing operational costs.
This is achieved through a set of core functionalities:
The API for AKS Karpenter Provider is currently alpha (v1alpha2
).
Documentation: https://github.com/Azure/karpenter
Maxime.
Hi,
SSH is currently enabled by default for AKS provisioned nodes, and it’s essential to manually disable it if desired. This public preview feature grants you the flexibility to toggle SSH on or off, providing you with greater control over cluster security and reducing potential attack vectors.
To disable SSH for your AKS cluster, you can use the following command:
az aks update --name myAKSCluster --resource-group MyResourceGroup --no-ssh-key
Keep in mind that after updating the SSH key, AKS does not automatically apply the changes to your node pool. You have the option to initiate a node pool update operation at your convenience. It’s worth noting that the updated SSH key will only take effect after a node image update has been successfully completed. This ensures a seamless transition to the new SSH configuration.
Documentation: https://learn.microsoft.com/en-us/azure/aks/manage-ssh-node-access#disable-ssh
Maxime.