Skip to content

Commit fa3ec3c

Browse files
satjdsongao.sa
authored and
songao.sa
committed
add missing kubernetes manifests for cart, checkout and product service
1 parent e173295 commit fa3ec3c

File tree

3 files changed

+48
-3
lines changed

3 files changed

+48
-3
lines changed

kubernetes-manifests/cartservice.yaml

+16-1
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,19 @@ spec:
4343
image: redis
4444
imagePullPolicy: IfNotPresent
4545
ports:
46-
- containerPort: 6379
46+
- containerPort: 6379
47+
48+
---
49+
50+
apiVersion: v1
51+
kind: Service
52+
metadata:
53+
labels:
54+
app: cart-redis
55+
name: cart-redis
56+
spec:
57+
ports:
58+
- port: 6379
59+
targetPort: 6379
60+
selector:
61+
app: cart-redis

kubernetes-manifests/checkoutservice.yaml

+16-1
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,19 @@ spec:
5252
image: mysql:5.6
5353
name: checkout-mysql
5454
ports:
55-
- containerPort: 3306
55+
- containerPort: 3306
56+
57+
---
58+
59+
apiVersion: v1
60+
kind: Service
61+
metadata:
62+
labels:
63+
app: checkout-mysql
64+
name: checkout-mysql
65+
spec:
66+
ports:
67+
- port: 3306
68+
targetPort: 3306
69+
selector:
70+
app: checkout-mysql

kubernetes-manifests/productservice.yaml

+16-1
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,19 @@ spec:
5353
image: mysql:5.6
5454
name: product-mysql
5555
ports:
56-
- containerPort: 3306
56+
- containerPort: 3306
57+
58+
---
59+
60+
apiVersion: v1
61+
kind: Service
62+
metadata:
63+
labels:
64+
app: product-mysql
65+
name: product-mysql
66+
spec:
67+
ports:
68+
- port: 3306
69+
targetPort: 3306
70+
selector:
71+
app: product-mysql

0 commit comments

Comments
 (0)