@_xtribe/cli 1.0.9 → 1.0.10
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 +4 -5
- package/package.json +1 -1
package/install-tribe.js
CHANGED
|
@@ -156,7 +156,7 @@ async function installK3s() {
|
|
|
156
156
|
if (isContainer) {
|
|
157
157
|
spinner.warn('Running in container/CI - K3s installation skipped');
|
|
158
158
|
log.info('K3s requires systemd and privileged access');
|
|
159
|
-
log.info('For containers, consider using
|
|
159
|
+
log.info('For containers, consider using an external cluster');
|
|
160
160
|
return true; // Don't fail in containers
|
|
161
161
|
}
|
|
162
162
|
|
|
@@ -274,7 +274,6 @@ async function installColima() {
|
|
|
274
274
|
|
|
275
275
|
// Lima installation removed - Colima handles virtualization
|
|
276
276
|
|
|
277
|
-
// KIND installation removed - using Colima's built-in Kubernetes
|
|
278
277
|
|
|
279
278
|
async function installKubectl() {
|
|
280
279
|
// Linux with K3s already has kubectl
|
|
@@ -783,7 +782,7 @@ async function startContainerRuntime() {
|
|
|
783
782
|
|
|
784
783
|
if (isContainer) {
|
|
785
784
|
spinner.info('Running in container - K3s requires systemd');
|
|
786
|
-
log.info('For containers,
|
|
785
|
+
log.info('For containers, connect to an external cluster');
|
|
787
786
|
return true; // Don't fail
|
|
788
787
|
}
|
|
789
788
|
|
|
@@ -801,7 +800,7 @@ async function startContainerRuntime() {
|
|
|
801
800
|
return true;
|
|
802
801
|
} catch (error) {
|
|
803
802
|
spinner.warn('K3s not available - requires systemd');
|
|
804
|
-
log.info('K3s requires systemd. Install K3s manually or
|
|
803
|
+
log.info('K3s requires systemd. Install K3s manually or connect to external cluster');
|
|
805
804
|
return true; // Don't fail
|
|
806
805
|
}
|
|
807
806
|
}
|
|
@@ -1378,7 +1377,7 @@ async function main() {
|
|
|
1378
1377
|
|
|
1379
1378
|
// 4. Check for existing Kubernetes installations
|
|
1380
1379
|
const k8sTools = [];
|
|
1381
|
-
const checkTools = ['minikube', 'microk8s', '
|
|
1380
|
+
const checkTools = ['minikube', 'microk8s', 'k3d', 'kubectl'];
|
|
1382
1381
|
for (const tool of checkTools) {
|
|
1383
1382
|
try {
|
|
1384
1383
|
execSync(`which ${tool}`, { stdio: 'ignore' });
|