Feature: 11055 Support of several node groups in clusters created by OSM

	- Added control plane support in managed post
	- When aws vim account is selected paylaod will get differed
	- Added details page in clusters to view node and ksu for
	  specified cluster
	- Fixed Bug 2402 - Unable to create Ns Config template from Ui
	  bug by chnaging api

Change-Id: I4eb327fd86b0c4a706b05a8ed10524e4d2c5bc95
Signed-off-by: SANDHYA.JS <sandhya.j@tataelxsi.co.in>
diff --git a/src/app/k8s/K8sModule.ts b/src/app/k8s/K8sModule.ts
index 4b9ff15..913353c 100644
--- a/src/app/k8s/K8sModule.ts
+++ b/src/app/k8s/K8sModule.ts
@@ -35,6 +35,7 @@
 import { K8sAttachProfileComponent } from 'K8sAttachProfileComponent';
 import { K8sClusterComponent } from 'K8sClusterComponent';
 import { K8sComponent } from 'K8sComponent';
+import { K8sInfoComponent } from 'K8sInfoComponent';
 import { K8sInfraConfigAddComponent } from 'K8sInfraConfigAddComponent';
 import { K8sInfraConfigProfileComponent } from 'K8sInfraConfigProfileComponent';
 import { K8sInfraControllerProfileComponent } from 'K8sInfraControllerProfileComponent';
@@ -44,6 +45,7 @@
 import { KSUComponent } from 'KSUComponent';
 import { LoaderModule } from 'LoaderModule';
 import { Ng2SmartTableModule } from 'ng2-smart-table';
+import { NodeAddComponent } from 'NodeAddComponent';
 import { PagePerRowModule } from 'PagePerRowModule';
 import { PageReloadModule } from 'PageReloadModule';
 
@@ -67,6 +69,14 @@
         component: K8sClusterComponent
       },
       {
+        path: 'details/:id',
+        data: {
+          breadcrumb: [{ title: 'PAGE.DASHBOARD.DASHBOARD', url: '/' }, { title: 'PAGE.DASHBOARD.PROJECTS', url: '/projects' },
+            projectInfo, { title: 'PAGE.K8S.MENUK8SCLUSTER', url: '/k8s/cluster' }, { title: '{id}', url: null }]
+        },
+        component: K8sInfoComponent
+      },
+      {
         path: 'infra-config-profile',
         data: {
           breadcrumb: [{ title: 'PAGE.DASHBOARD.DASHBOARD', url: '/' }, { title: 'PAGE.DASHBOARD.PROJECTS', url: '/projects' },
@@ -149,7 +159,9 @@
     K8sAppProfileComponent,
     K8sResourceProfileComponent,
     KSUComponent,
-    KSUAddComponent
+    KSUAddComponent,
+    K8sInfoComponent,
+    NodeAddComponent,
   ],
   providers: [DataService],
   schemas: [CUSTOM_ELEMENTS_SCHEMA]