@_xtribe/cli 1.0.0-beta.7 → 1.0.0-beta.8
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/install-tribe.js +3 -2
- package/package.json +1 -1
package/install-tribe.js
CHANGED
|
@@ -674,8 +674,8 @@ async function deployTribeCluster() {
|
|
|
674
674
|
TRIBE_DEPLOYMENT_YAML: destYaml
|
|
675
675
|
};
|
|
676
676
|
|
|
677
|
-
// Execute tribe start
|
|
678
|
-
execSync(`${tribePath} start`, {
|
|
677
|
+
// Execute tribe start without validation (services need time to start)
|
|
678
|
+
execSync(`${tribePath} start --validate=false`, {
|
|
679
679
|
stdio: 'pipe',
|
|
680
680
|
env: env
|
|
681
681
|
});
|
|
@@ -684,6 +684,7 @@ async function deployTribeCluster() {
|
|
|
684
684
|
fs.writeFileSync(deploymentMarker, new Date().toISOString());
|
|
685
685
|
|
|
686
686
|
spinner.succeed('TRIBE cluster deployed successfully');
|
|
687
|
+
log.info('Services are starting up. Check status with: tribe status');
|
|
687
688
|
return true;
|
|
688
689
|
} catch (error) {
|
|
689
690
|
spinner.fail('Failed to deploy TRIBE cluster');
|