Deploying microservices node js app to heroku

4/12/2021

I have a microservices app with node js and express js and react js .and i m using docker and minikube and skaffold . And i want to deploy it to azure or heroku .

-- amine beji
heroku
kubernetes
minikube
node.js
web-deployment

1 Answer

4/12/2021

To deploy to Microsoft Azure you need to follow this steps:

  1. Create a Kubernetes cluster flowing this article.
  2. Create your Kubernetes manifests files for each applications or using Helm .
  3. After that deploy your application.

For Heroku you can deploy your image directly without need to Kubernetes .

I hope that this steps can help you to deploy your application.

-- rassakra
Source: StackOverflow