@_xtribe/cli 1.0.24 → 1.0.26
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 +8 -5
package/package.json
CHANGED
package/tribe-deployment.yaml
CHANGED
|
@@ -355,6 +355,8 @@ spec:
|
|
|
355
355
|
- name: claude-agent
|
|
356
356
|
image: tribexal/tribe:latest-claude-agent
|
|
357
357
|
imagePullPolicy: IfNotPresent
|
|
358
|
+
ports:
|
|
359
|
+
- containerPort: 8080
|
|
358
360
|
env:
|
|
359
361
|
- name: ROLE
|
|
360
362
|
value: worker
|
|
@@ -376,13 +378,14 @@ spec:
|
|
|
376
378
|
- name: config
|
|
377
379
|
mountPath: /app/minimal-config
|
|
378
380
|
readinessProbe:
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
- -c
|
|
383
|
-
- test -f /tmp/worker-ready
|
|
381
|
+
httpGet:
|
|
382
|
+
path: /health
|
|
383
|
+
port: 8080
|
|
384
384
|
initialDelaySeconds: 30
|
|
385
385
|
periodSeconds: 10
|
|
386
|
+
timeoutSeconds: 5
|
|
387
|
+
successThreshold: 1
|
|
388
|
+
failureThreshold: 3
|
|
386
389
|
volumes:
|
|
387
390
|
- name: workspace
|
|
388
391
|
emptyDir: {}
|