@@ -4,8 +4,6 @@ import namespaceService from "./namespace.service";
4
4
import { StringUtils } from "../utils/string.utils" ;
5
5
import crypto from "crypto" ;
6
6
import { FancyConsoleUtils } from "../utils/fancy-console.utils" ;
7
- import deploymentService from "./deployment.service" ;
8
- import podService from "./pod.service" ;
9
7
10
8
class QuickStackService {
11
9
@@ -26,7 +24,7 @@ class QuickStackService {
26
24
await this . createOrUpdatePvc ( ) ;
27
25
await this . createOrUpdateDeployment ( undefined , nextAuthSecret ) ;
28
26
await this . createOrUpdateService ( true ) ;
29
- await this . waitUntilQuickstackIsRunning ( ) ;
27
+ // await this.waitUntilQuickstackIsRunning();
30
28
console . log ( 'QuickStack successfully initialized' ) ;
31
29
console . log ( '' ) ;
32
30
console . log ( '------------------------------------------------' ) ;
@@ -39,7 +37,8 @@ class QuickStackService {
39
37
console . log ( '------------------------------------------------' ) ;
40
38
console . log ( '' ) ;
41
39
}
42
-
40
+ /*
41
+ TODO enable again: error in setup process because of error: Cannot find module '@/model/service.exception.model'
43
42
async waitUntilQuickstackIsRunning() {
44
43
console.log('Waiting for QuickStack to be running...');
45
44
await new Promise((resolve) => setTimeout(resolve, 5000));
@@ -51,7 +50,7 @@ class QuickStackService {
51
50
}
52
51
await podService.waitUntilPodIsRunningFailedOrSucceded(this.QUICKSTACK_NAMESPACE, quickStackPod.podName);
53
52
console.log('QuickStack is now running');
54
- }
53
+ }*/
55
54
56
55
async createOrUpdateIngress ( hostname : string ) {
57
56
const ingressName = StringUtils . getIngressName ( this . QUICKSTACK_NAMESPACE ) ;
0 commit comments