Coder Social home page Coder Social logo

reactive-ecommerce-demo's Introduction

1. First create a cluster in Kuberenetes using the following command

gcloud container clusters create ecommerce-app --num-nodes 2 --enable-basic-auth --issue-client-certificate --zone europe-west1-b

2. Then create a docker image of order-service using gcloud build and push it to google container repository using following command

cd ./orderservice

gcloud builds submit --tag gcr.io/kuberenetes-01-basic/order-service .

3. Then create a docker image of payment-service using gcloud build and push it to google container repository using following command

cd ./paymentservice

gcloud builds submit --tag gcr.io/kuberenetes-01-basic/payment-service .

4. Then create a docker image of shipping-service using gcloud build and push it to google container repository using following command

cd ./shippingservice

gcloud builds submit --tag gcr.io/kuberenetes-01-basic/shipping-service .

5. Now all the docker images are pushed to google container repository. Now we can deploy the redis first

kubectl -f redis.yaml

Verify deployments using

kubectl get deployments

kubectl get services

6. Now do the deployments of orderservice, paymentservice and shipping service

kubectl -f orderservice.yaml

kubectl -f paymentservice.yaml

kubectl -f shippingservice.yaml

7. Now once the service is running, open the postman http://<external_ip_order_service>/orders/initiated and use the POST. In the body add the following json

{
	"order": {
		"id": "Order-121",
		"desc": "ABC"
	}
}

8. Now once you have tested it, don't forgt to delete the cluster using the following command

gcloud container clusters delete ecommerce-app

reactive-ecommerce-demo's People

Contributors

tekmentor avatar arunstiwari avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.