@_xtribe/cli 1.0.0-beta.16 → 1.0.0-beta.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/tribe-deployment.yaml +10 -3
package/package.json
CHANGED
package/tribe-deployment.yaml
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
---
|
|
2
2
|
# TRIBE Complete Deployment - Bundled with NPM Package
|
|
3
3
|
# This file is automatically deployed by 'npx @_xtribe/cli'
|
|
4
|
+
#
|
|
5
|
+
# IMPORTANT: This deployment uses PUBLIC Docker Hub images from tribexal/tribe
|
|
6
|
+
# - tribexal/tribe:latest-taskmaster
|
|
7
|
+
# - tribexal/tribe:latest-bridge
|
|
8
|
+
# - tribexal/tribe:latest-claude-agent
|
|
9
|
+
#
|
|
10
|
+
# DO NOT change these to local image names for the npm package!
|
|
4
11
|
---
|
|
5
12
|
apiVersion: v1
|
|
6
13
|
kind: Namespace
|
|
@@ -214,7 +221,7 @@ spec:
|
|
|
214
221
|
command: ['sh', '-c', 'until nc -z postgres 5432; do echo waiting for db; sleep 2; done']
|
|
215
222
|
containers:
|
|
216
223
|
- name: taskmaster
|
|
217
|
-
image:
|
|
224
|
+
image: tribexal/tribe:latest-taskmaster
|
|
218
225
|
imagePullPolicy: IfNotPresent
|
|
219
226
|
ports:
|
|
220
227
|
- containerPort: 5000
|
|
@@ -274,7 +281,7 @@ spec:
|
|
|
274
281
|
echo "All services ready!"
|
|
275
282
|
containers:
|
|
276
283
|
- name: bridge
|
|
277
|
-
image:
|
|
284
|
+
image: tribexal/tribe:latest-bridge
|
|
278
285
|
imagePullPolicy: IfNotPresent
|
|
279
286
|
ports:
|
|
280
287
|
- containerPort: 8080
|
|
@@ -329,7 +336,7 @@ spec:
|
|
|
329
336
|
spec:
|
|
330
337
|
containers:
|
|
331
338
|
- name: claude-agent
|
|
332
|
-
image: claude-agent
|
|
339
|
+
image: tribexal/tribe:latest-claude-agent
|
|
333
340
|
imagePullPolicy: IfNotPresent
|
|
334
341
|
env:
|
|
335
342
|
- name: ROLE
|