Advanced Cluster Management - NGUI
- Added new OKA packages module under packages
- Added Profiless, KSU under k8s section
- Feature 11020. 11022, 11023, 11024, 11025, 11026
Change-Id: Ibddeb4d5693ce24d80e378277693405c810f6e04
Signed-off-by: SANDHYA.JS <sandhya.j@tataelxsi.co.in>
diff --git a/src/environments/environment.prod.ts b/src/environments/environment.prod.ts
index 5168356..fc19af5 100644
--- a/src/environments/environment.prod.ts
+++ b/src/environments/environment.prod.ts
@@ -42,6 +42,12 @@
const ASSETS_PATH: string = 'assets/';
/** OSM Version @constant */
const OSM_VERSION: string = 'osm/version';
+/** OSM Create cluster url @constant */
+const OSM_CLUSTER_ENDPOINT: string = 'osm/k8scluster/v1/';
+/** OSM OKA url @constant */
+const OSM_OKA_ENDPOINT: string = 'osm/oka/v1/';
+/** OSM KSU url @constant */
+const OSM_KSU_ENDPOINT: string = 'osm/ksu/v1/';
/** Grafana End-Point @constant */
// eslint-disable-next-line @microsoft/sdl/no-insecure-url
const GRAFANA_ENDPOINT: string = 'http://' + window.location.hostname + ':3000';
@@ -80,5 +86,12 @@
DOMAIN_URL: OSM_ADMIN_ENDPOINT + 'domains',
OSM_VERSION_URL: OSM_VERSION,
OSMREPOS_URL: OSM_ADMIN_ENDPOINT + 'osmrepos',
- NSCONFIGTEMPLATE_URL: OSM_NSD_ENDPOINT + 'ns_config_template'
+ NSCONFIGTEMPLATE_URL: OSM_NSD_ENDPOINT + 'ns_config_template',
+ K8SCREATECLUSTER_URL: OSM_CLUSTER_ENDPOINT + 'clusters',
+ K8SINFRACONFIGPROFILE_URL: OSM_CLUSTER_ENDPOINT + 'infra_config_profiles',
+ K8SINFRACONTROLLERPROFILE_URL: OSM_CLUSTER_ENDPOINT + 'infra_controller_profiles',
+ K8SAPPPROFILE_URL: OSM_CLUSTER_ENDPOINT + 'app_profiles',
+ K8SRESOURCEPROFILE_URL: OSM_CLUSTER_ENDPOINT + 'resource_profiles',
+ OKAPACKAGES_URL: OSM_OKA_ENDPOINT + 'oka_packages',
+ KSU_URL: OSM_KSU_ENDPOINT + 'ksus'
};