File tree 3 files changed +48
-3
lines changed
3 files changed +48
-3
lines changed Original file line number Diff line number Diff line change 43
43
image : redis
44
44
imagePullPolicy : IfNotPresent
45
45
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
Original file line number Diff line number Diff line change 52
52
image : mysql:5.6
53
53
name : checkout-mysql
54
54
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
Original file line number Diff line number Diff line change 53
53
image : mysql:5.6
54
54
name : product-mysql
55
55
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
You can’t perform that action at this time.
0 commit comments