how I can install kedo on AKS with a windows node

7/28/2021

I need to install "kedo" in an AKS that contains a windows node. When I install it, it is installed on the windows node and not on the Linux one. I have already tried various ways like

helm install keda kedacore/keda --namespace keda `
    --set nodeSelector:"beta\.kubernetes\.io\/os"=linux 

enter image description here

-- Roberto Alonso Gomez
containers
kubernetes
windows

1 Answer

4/4/2022

You need to correct command to following

helm install keda kedacore/keda --namespace keda `
    --set nodeSelector."beta\.kubernetes\.io/os"=linux 
-- user2399170
Source: StackOverflow