Skip to content

Commit 921673d

Browse files
committed
add comms
1 parent 20b6ce0 commit 921673d

8 files changed

+41
-9
lines changed

compose.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,16 +151,16 @@ services:
151151

152152
comms:
153153
build: comms
154-
image: wzwren/comms
155-
env_file:
156-
- comms/.env
154+
image: distractedcat/comms
155+
#env_file:
156+
#- comms/.env
157157
ports:
158158
- "4001:4001"
159159
develop:
160160
watch:
161161
- action: sync
162162
path: comms
163-
target: /comms
163+
target: comms/app
164164

165165
nginx:
166166
build: nginx

kubernetes/collab-service-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
spec:
1414
containers:
1515
- name: collab
16-
image: distractedcat/collab:2.0.0
16+
image: distractedcat/collab:3.0.0
1717
imagePullPolicy: Always
1818
env:
1919
- name: PORT

kubernetes/comms-deployment.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
apiVersion: apps/v1
2+
kind: Deployment
3+
metadata:
4+
name: comms
5+
spec:
6+
selector:
7+
matchLabels:
8+
app: comms
9+
template:
10+
metadata:
11+
labels:
12+
app: comms
13+
spec:
14+
containers:
15+
- name: comms
16+
image: distractedcat/comms:1.0.0
17+
imagePullPolicy: Always
18+
ports:
19+
- containerPort: 4001
20+
name: comms

kubernetes/comms-service.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
apiVersion: v1
2+
kind: Service
3+
metadata:
4+
name: comms
5+
spec:
6+
selector:
7+
app: comms
8+
ports:
9+
- protocol: TCP
10+
port: 4001
11+
targetPort: 4001
12+
type: LoadBalancer

kubernetes/matching-service-api-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
spec:
1414
containers:
1515
- name: matching-service-api
16-
image: distractedcat/matching-service-api:1.0.0
16+
image: distractedcat/matching-service-api:3.0.0
1717
imagePullPolicy: Always
1818
env:
1919
- name: PORT

kubernetes/matching-service-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
spec:
1414
containers:
1515
- name: matching-service
16-
image: distractedcat/matching-service:1.0.0
16+
image: distractedcat/matching-service:3.0.0
1717
imagePullPolicy: Always
1818
env:
1919
- name: RABBIT_URI

kubernetes/peerprep-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
spec:
1414
containers:
1515
- name: peerprep
16-
image: distractedcat/peerprep:2.0.1
16+
image: distractedcat/peerprep:3.0.0
1717
imagePullPolicy: Always
1818
env:
1919
- name: NEXT_PUBLIC_QUESTION_SERVICE

kubernetes/storage-blob-api-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
spec:
1414
containers:
1515
- name: storage-blob-api
16-
image: distractedcat/storage-blob-api:1.0.0
16+
image: distractedcat/storage-blob-api:3.0.0
1717
imagePullPolicy: IfNotPresent
1818
env:
1919
- name: PORT

0 commit comments

Comments
 (0)