0

I have an Azure AKS Cluster which utilizes the Azure CNI Network plugin.

How can I find the CNI version being used in this cluster?

I want find out if my AKS Cluster used the traditional Azure CNI v1 or Azure CNIv2.

GilliVilla
  • 4,998
  • 11
  • 55
  • 96

1 Answers1

1

according to this document you can do:

/opt/cni/bin/azure-vnet --version 

on your node(s). that can be easily done with kubectl debug

4c74356b41
  • 69,186
  • 6
  • 100
  • 141