Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
**STEPS FOR BOOTCAMP PROJECT**
**NB. In our case, we will be using EKS**

**First, We need to containerize our microservices and push them into a publicly accessible ECR**

**Second, we will set up an EKS cluster with Terraform module**

**Third, we will install Kubectl, configure Helm and update the Helm charts to deploy applications onto the Kubernetes cluster**

**Fourth, we will install Nginx Ingress controller and set up Ingress rules to enable external access to services within your Kubernetes cluster**

**Fifth, figure out how to integrate Istio and gRPC**

**Finally, automate the entire deployment using a CI/CD pipeline - Jenkins or Gitlab Action**

<p align="center">
<img src="src/frontend/static/icons/Hipster_HeroLogoMaroon.svg" width="300" alt="Online Boutique" />
</p>
Expand Down
2 changes: 1 addition & 1 deletion kustomize/base/adservice.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ spec:
- all
privileged: false
readOnlyRootFilesystem: true
image: gcr.io/google-samples/microservices-demo/adservice:v0.5.0
image: 240763333586.dkr.ecr.us-east-1.amazonaws.com/adservice:latest
ports:
- containerPort: 9555
env:
Expand Down
3 changes: 1 addition & 2 deletions kustomize/base/cartservice.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ spec:
- all
privileged: false
readOnlyRootFilesystem: true
image: gcr.io/google-samples/microservices-demo/cartservice:v0.5.0
ports:
image: 240763333586.dkr.ecr.us-east-1.amazonaws.com/cartservice:latest
- containerPort: 7070
env:
- name: REDIS_ADDR
Expand Down
2 changes: 1 addition & 1 deletion kustomize/base/checkoutservice.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ spec:
- all
privileged: false
readOnlyRootFilesystem: true
image: gcr.io/google-samples/microservices-demo/checkoutservice:v0.5.0
image: 240763333586.dkr.ecr.us-east-1.amazonaws.com/checkoutservice:latest
ports:
- containerPort: 5050
readinessProbe:
Expand Down
2 changes: 1 addition & 1 deletion kustomize/base/currencyservice.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ spec:
- all
privileged: false
readOnlyRootFilesystem: true
image: gcr.io/google-samples/microservices-demo/currencyservice:v0.5.0
image: 240763333586.dkr.ecr.us-east-1.amazonaws.com/currencyservice:latest
ports:
- name: grpc
containerPort: 7000
Expand Down
2 changes: 1 addition & 1 deletion kustomize/base/emailservice.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ spec:
- all
privileged: false
readOnlyRootFilesystem: true
image: gcr.io/google-samples/microservices-demo/emailservice:v0.5.0
image: 240763333586.dkr.ecr.us-east-1.amazonaws.com/emailservice:latest
ports:
- containerPort: 8080
env:
Expand Down
2 changes: 1 addition & 1 deletion kustomize/base/frontend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ spec:
- all
privileged: false
readOnlyRootFilesystem: true
image: gcr.io/google-samples/microservices-demo/frontend:v0.5.0
image: 240763333586.dkr.ecr.us-east-1.amazonaws.com/frontend:latest
ports:
- containerPort: 8080
readinessProbe:
Expand Down
2 changes: 1 addition & 1 deletion kustomize/base/paymentservice.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ spec:
- all
privileged: false
readOnlyRootFilesystem: true
image: gcr.io/google-samples/microservices-demo/paymentservice:v0.5.0
image: 240763333586.dkr.ecr.us-east-1.amazonaws.com/paymentservice:latest
ports:
- containerPort: 50051
env:
Expand Down
2 changes: 1 addition & 1 deletion kustomize/base/productcatalogservice.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ spec:
- all
privileged: false
readOnlyRootFilesystem: true
image: gcr.io/google-samples/microservices-demo/productcatalogservice:v0.5.0
image: 240763333586.dkr.ecr.us-east-1.amazonaws.com/productcatalogservice:latest
ports:
- containerPort: 3550
env:
Expand Down
2 changes: 1 addition & 1 deletion kustomize/base/recommendationservice.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ spec:
- all
privileged: false
readOnlyRootFilesystem: true
image: gcr.io/google-samples/microservices-demo/recommendationservice:v0.5.0
image: 240763333586.dkr.ecr.us-east-1.amazonaws.com/recommendationservice:latest
ports:
- containerPort: 8080
readinessProbe:
Expand Down
2 changes: 1 addition & 1 deletion kustomize/base/shippingservice.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ spec:
- all
privileged: false
readOnlyRootFilesystem: true
image: gcr.io/google-samples/microservices-demo/shippingservice:v0.5.0
image: 240763333586.dkr.ecr.us-east-1.amazonaws.com/shippingservice:latest
ports:
- containerPort: 50051
env:
Expand Down
Loading