adding deploy feature 18/112618/1
authorShaabanEltanany <shaaban.eltanany.ext@orange.com>
Mon, 14 Sep 2020 13:59:39 +0000 (15:59 +0200)
committerShaabanEltanany <shaaban.eltanany.ext@orange.com>
Mon, 14 Sep 2020 13:59:39 +0000 (15:59 +0200)
Issue-ID: CCSDK-2299
Signed-off-by: ShaabanEltanany <shaaban.eltanany.ext@orange.com>
Change-Id: I1b4ac4d12d18371cd4db9226ca8cbd215f01b3b3

cds-ui/designer-client/src/app/modules/feature-modules/packages/configuration-dashboard/configuration-dashboard.component.ts
cds-ui/server/src/controllers/blueprint-rest.controller.ts

index 09434bc..8639b15 100644 (file)
@@ -312,9 +312,10 @@ export class ConfigurationDashboardComponent extends ComponentCanDeactivate impl
         this.create();
         this.zipFile.generateAsync({type: 'blob'})
             .then(blob => {
-                this.packageCreationService.enrichPackage(blob).subscribe(response => {
-                    console.log('success');
-                    console.log(response);
+                this.packageCreationService.deploy(blob).subscribe(response => {
+                    this.toastService.info('deployed successfully ');
+                    const id = response.toString().split('id')[1].split(':')[1].split('"')[1];
+                    this.router.navigate(['/packages/package/' + id]);
                 });
             }, error => {
                 this.toastService.error('error happened when deploying ' + error.message);
index 870f979..91d7e66 100644 (file)
@@ -307,7 +307,7 @@ export class BlueprintRestController {
         if (appConfig.action.grpcEnabled)
           return this.uploadFileToBlueprintProcessorGrpc(file, 'PUBLISH', response);
         else
-          return this.uploadFileToBlueprintProcessor(file, '/execution-service/upload/', response);
+          return this.uploadFileToBlueprintProcessor(file, '/blueprint-model/publish', response);
       }, err => {
         reject(err);
       });