Forum Discussion
dannybhar
Oct 27, 2021Copper Contributor
AKS run simulation
I have simulation which is sort of command line node app. something like node something.js -p1 -p2 etc. I create docker image of it. I need to run it in AKS cluster. Say I create deployment with ...
Kidd_Ip
Jun 09, 2026MVP
You cannot simply SSH into an AKS pod to run your Node.js simulation. Instead, workloads like command‑line apps should be run as Jobs or CronJobs rather than interactive sessions. This allows the cluster to schedule multiple replicas across nodes and process tasks in parallel. learn.microsoft.com/en-us/azure/architecture/best-practices/background-jobs