Training
Module
Create your first Azure Kubernetes Service (AKS) Edge Essentials single machine cluster - Training
Deploy AKS Edge Essentials in a single machine K3S cluster with a Linux and Windows node.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
The metrics server is a tool that inspects your containers' resource consumption. You can find the YAML file for the metrics server deployment in the /Samples/Other folder in the GitHub repo.
Note
AKS Edge Essentials K8s does not support Kubernetes TLS bootstrapping. To deploy the metrics server using K8s, be sure to include --kubelet-insecure-tls
in your deployment YAML.
kubectl apply -f https://raw.githubusercontent.com/Azure/AKS-Edge/main/samples/others/metrics-server.yaml
Wait for the metrics server pods to reach the running status. It might take a few minutes.
kubectl get pods -A --watch
kubectl top nodes
kubectl top pods -A
If your metrics server fails to display, this could be a known MTU issue in which the Linux VM's MTU doesn't match that of your network. This issue can happen on Azure VMs. Set your MTU parameter to 1300 in your AksEdgeConfig file, as follows:
{
"LinuxVm": {
"CpuCount": 4,
"MemoryInMB": 4096,
"Mtu": 1300
}
}
Training
Module
Create your first Azure Kubernetes Service (AKS) Edge Essentials single machine cluster - Training
Deploy AKS Edge Essentials in a single machine K3S cluster with a Linux and Windows node.