Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
May 28, 2022 02:31 pm GMT

What is the use of Node Pool snapshot in AKS ?.

Every new cluster, new pool, or upgrade cluster will always receive the latest image from AKS, which can make it hard to maintain your environments consistent and to have repeatable environments.

You can take a configuration snapshot of your pool and then create new pools or clusters based on that snapshot as long as the configuration is supported.

The snapshot is a resource that contains the configuration information from the source pool. You can use the snapshot resource and the values of the configuration to create a new pool or cluster.

Before you start

This article assumes that you have an existing AKS cluster.

Limitations

  • You cannot create a new N-Series pool based on a snapshot captured from a D-Series pool because the images in those cases are not the same as the virtual machine family.
  • Snapshots can be used in the same region as the source pool.

Take a snapshot of the node pool.

To take a snapshot from a node pool, you need the resource ID, which you can get from the command below.

NODEPOOL_ID=$(az aks nodepool show --name nodepool1 --cluster-name kcdCluster --resource-group kcdrg --query id -o tsv)

You can use the az aks snapshot cli command to take a snapshot from the previous pool.

az aks snapshot create --name kcdSnapshot --resource-group kcdrg --nodepool-id $NODEPOOL_ID --location centralus

To get the resource ID from the snapshot that was previously created, you need to use the command below.

SNAPSHOT_ID=$(az aks snapshot show --name kcdSnapshot --resource-group kcdrg --query id -o tsv)

The command below can be used to add a new pool based on this snapshot.

az aks nodepool add --name np2 --cluster-name kcdCluster --resource-group kcdrg --snapshot-id $SNAPSHOT_ID

If the snapshots version and image version are more recent than the versions in the current pool, you can upgrade it to a snapshot configuration.

To get the resource ID from the snapshot that was previously created, you need to use the command below.

SNAPSHOT_ID=$(az aks snapshot show --name kcdSnapshot --resource-group kcdrg --query id -o tsv)

We can use this command to upgrade this pool.

az aks nodepool upgrade --name nodepool1 --cluster-name kcdCluster --resource-group kcdrg --snapshot-id $SNAPSHOT_ID

A snapshot can be used to create a cluster. The original system pool will be created when you create a cluster from a snapshot.

To get the resource ID from the snapshot that was previously created, you need to use the command below.

SNAPSHOT_ID=$(az aks snapshot show --name kcdSnapshot --resource-group kcdrg --query id -o tsv)

This command can be used to create this cluster of the snapshot configuration.

az aks create --name kcdCluster2 --resource-group kcdrg --snapshot-id $SNAPSHOT_ID

Thanks for reading my article till end. I hope you learned something special today. If you enjoyed this article then please share to your friends and if you have suggestions or thoughts to share with me then please write in the comment box.


Original Link: https://dev.to/makendrang/what-is-the-use-of-node-pool-snapshot-in-aks--5824

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To