Skip to content

Commit

Permalink
azure deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
deepak1067 committed Sep 19, 2023
1 parent 57b4838 commit 4d0743d
Show file tree
Hide file tree
Showing 18 changed files with 91 additions and 86 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,18 @@ spec:
image: your-acr-name.azurecr.io/your-image-name

ports:
- containerPort: 9091
- containerPort: 8080

---
apiVersion: v1
kind: Service
metadata:
name: adminservice
spec:
type: LoadBalancer
selector:
app: adminservice
ports:
- protocol: TCP
port: 80
targetPort: 8080
12 changes: 0 additions & 12 deletions admin-service/azure-manifest/service.yaml

This file was deleted.

3 changes: 1 addition & 2 deletions admin-service/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@ resources:


# need to change acc. to select gcp and azure deployment
- azure-manifest/deployment.yaml
- azure-manifest/service.yaml
- azure-manifest/azure-deploy-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,19 @@ spec:
image: your-acr-name.azurecr.io/your-image-name

ports:
- containerPort: 9091
- containerPort: 9096


---
apiVersion: v1
kind: Service
metadata:
name: cartservice
spec:
type: LoadBalancer
selector:
app: cartservice
ports:
- protocol: TCP
port: 9096
targetPort: 9096
12 changes: 0 additions & 12 deletions cart-service/azure-manifest/service.yaml

This file was deleted.

3 changes: 1 addition & 2 deletions cart-service/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@ resources:


# need to change acc to gcp and azure deployment
- azure-manifest/deployment.yaml
- azure-manifest/service.yaml
- azure-manifest/azure-deploy-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,17 @@ spec:
ports:
- containerPort: 9091


---
apiVersion: v1
kind: Service
metadata:
name: inventoryservice
spec:
type: LoadBalancer
selector:
app: inventoryservice
ports:
- protocol: TCP
port: 9091
targetPort: 9091
12 changes: 0 additions & 12 deletions inventory-service/azure-manifest/service.yaml

This file was deleted.

3 changes: 1 addition & 2 deletions inventory-service/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@ resources:


# need to change acc to gcp and azure deployment
- azure-manifest/deployment.yaml
- azure-manifest/service.yaml
- azure-manifest/azure-deploy-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,17 @@ spec:
ports:
- containerPort: 9090


---
apiVersion: v1
kind: Service
metadata:
name: orderservice
spec:
type: LoadBalancer
selector:
app: orderservice
ports:
- protocol: TCP
port: 9090
targetPort: 9090
12 changes: 0 additions & 12 deletions order-service/azure-manifest/service.yaml

This file was deleted.

3 changes: 1 addition & 2 deletions order-service/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@ resources:


# need to change acc to gcp and azure deployment
- azure-manifest/deployment.yaml
- azure-manifest/service.yaml
- azure-manifest/azure-deploy-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,18 @@ spec:

ports:
- containerPort: 9092


---
apiVersion: v1
kind: Service
metadata:
name: paymentservice
spec:
type: LoadBalancer
selector:
app: paymentservice
ports:
- protocol: TCP
port: 9092
targetPort: 9092
12 changes: 0 additions & 12 deletions payment-service/azure-manifest/service.yaml

This file was deleted.

3 changes: 1 addition & 2 deletions payment-service/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@ resources:


# need to change acc to gcp and azure deployment
- azure-manifest/deployment.yaml
- azure-manifest/service.yaml
- azure-manifest/azure-deploy-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,16 @@ spec:
ports:
- containerPort: 9093

---
apiVersion: v1
kind: Service
metadata:
name: shipmentservice
spec:
type: LoadBalancer
selector:
app: shipmentservice
ports:
- protocol: TCP
port: 9093
targetPort: 9093
12 changes: 0 additions & 12 deletions shipment-service/azure-manifest/service.yaml

This file was deleted.

3 changes: 1 addition & 2 deletions shipment-service/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@ resources:


# need to change acc to gcp and azure deployment
- azure-manifest/deployment.yaml
- azure-manifest/service.yaml
- azure-manifest/azure-deploy-service.yaml

0 comments on commit 4d0743d

Please sign in to comment.