Automatize .msi installation in AKS Windows node Automatize .msi installation in AKS Windows node kubernetes kubernetes

Automatize .msi installation in AKS Windows node


From Adding a Kubernetes/Docker config:

I don't think that you can achieve that by running the wmi-exporterinside the pod. reason being that Windows does not support privilegecontainer so you can not run wmi-exporter in the node context.

You have to run the wmi-exporter.exe on the node to get the nodemetrics. If you want to run it through K8s then you can use the Wins(https://github.com/rancher/wins) to run the process on the nodethrough container. but it adds the dependency of running wins serviceon each Windows node beforehand.