@@ -13,11 +13,11 @@ import {
13
13
PatchUtils ,
14
14
Log as KubeLog ,
15
15
V1Pod ,
16
+ V1Namespace ,
16
17
} from '@kubernetes/client-node'
17
- import { namespace as namespace_chart } from './charts/namespace' ;
18
- import { IPipeline , IKubectlPipeline , IKubectlPipelineList , IKubectlAppList } from './types' ;
19
- import { App , KubectlApp } from './types/application' ;
20
- import { KubectlPipeline } from './types/pipeline' ;
18
+ import { IPipeline , IKubectlPipeline , IKubectlPipelineList , IKubectlAppList } from '../types' ;
19
+ import { App , KubectlApp } from './application' ;
20
+ import { KubectlPipeline } from './pipeline' ;
21
21
import { IAddon , IAddonMinimal } from './addons' ;
22
22
23
23
@@ -161,10 +161,16 @@ export class Kubectl {
161
161
console . log ( "create namespace " ) ;
162
162
163
163
try {
164
- namespace_chart . metadata . name = ns_name ;
165
- console . log ( namespace_chart ) ;
164
+ let ns = new V1Namespace ( ) ;
165
+ ns . metadata = {
166
+ name : ns_name ,
167
+ labels : {
168
+ "managed-by" : "kubero"
169
+ }
170
+ }
171
+ console . log ( ns ) ;
166
172
this . kc . setCurrentContext ( context ) ;
167
- const ret = await this . coreV1Api . createNamespace ( namespace_chart ) ;
173
+ const ret = await this . coreV1Api . createNamespace ( ns ) ;
168
174
//debug.debug(ret);
169
175
} catch ( error ) {
170
176
debug . log ( error ) ;
@@ -284,11 +290,11 @@ export class Kubectl {
284
290
return appslist . body as IKubectlAppList ;
285
291
}
286
292
287
- public async restartApp ( pipelineName : string , phaseName : string , appName : string , context : string ) {
293
+ public async restartApp ( pipelineName : string , phaseName : string , appName : string , workloadType : string , context : string ) {
288
294
this . kc . setCurrentContext ( context ) ;
289
295
290
296
let namespace = pipelineName + '-' + phaseName ;
291
- let deploymentName = appName + '-kuberoapp' ;
297
+ let deploymentName = appName + '-kuberoapp-' + workloadType ;
292
298
const date = new Date ( ) ;
293
299
294
300
// format : https://jsonpatch.com/
@@ -315,7 +321,10 @@ export class Kubectl {
315
321
) . then ( ( ) => {
316
322
console . log ( `Deployment ${ deploymentName } in Pipeline ${ namespace } updated` ) ;
317
323
} ) . catch ( error => {
318
- debug . log ( 'ERROR: ' + error . body . message ) ;
324
+ if ( error . body . message ) {
325
+ debug . log ( 'ERROR: ' + error . body . message ) ;
326
+ }
327
+ debug . log ( 'ERROR: ' + error ) ;
319
328
} ) ;
320
329
} ;
321
330
0 commit comments