Skip to content

Commit 0532385

Browse files
authored
update pds cluster type (#535)
1 parent 5330e51 commit 0532385

File tree

3 files changed

+2
-16
lines changed

3 files changed

+2
-16
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "integreatly-web-app",
3-
"version": "2.20.3",
3+
"version": "2.20.4",
44
"private": true,
55
"proxy": "http://localhost:5001/",
66
"dependencies": {

src/components/installedAppsView/InstalledAppsView.js

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -225,9 +225,6 @@ class InstalledAppsView extends React.Component {
225225
}
226226

227227
static createMasterList(displayServices, apps, customApps, enableLaunch, launchHandler) {
228-
// MF 120219 Testing begin
229-
console.log(`Apps = ${JSON.stringify(apps)}`);
230-
// Testing end
231228
const completeSvcNames = apps
232229
.map(svc => {
233230
if (svc.type === SERVICE_TYPES.PROVISIONED_SERVICE) {
@@ -261,9 +258,6 @@ class InstalledAppsView extends React.Component {
261258
}
262259
return provisionedSvc;
263260
});
264-
// MF 120219 Testing begin
265-
console.log(`completeSvcList is: ${JSON.stringify(completeSvcList)}`);
266-
// Testing end
267261
const masterList = completeSvcList
268262
.sort((cur, next) => {
269263
const curDetails = getProductDetails(cur);
@@ -279,9 +273,6 @@ class InstalledAppsView extends React.Component {
279273
return 0;
280274
})
281275
.map((app, index) => {
282-
// MF 120219 Testing begin
283-
console.log(`App is: ${JSON.stringify(app)}`);
284-
// Testing end
285276
const { description, gaStatus, hidden, prettyName, primaryTask } = getProductDetails(app);
286277
const uniqKey = InstalledAppsView.genUniqueKeyForService(app);
287278
return hidden ? null : (
@@ -379,11 +370,6 @@ class InstalledAppsView extends React.Component {
379370
const managedTooltip = 'Managed services are delivered as a hosted service and supported by Red Hat.';
380371
// const selfManagedTooltip = 'Self-managed services are available for use, but not managed by Red Hat.';
381372

382-
// MF 120219 Testing begin
383-
console.log(appList);
384-
console.log(this.props.apps);
385-
// Testing end
386-
387373
return (
388374
<div>
389375
<div className="integr8ly-tutorial-dashboard-title pf-l-flex pf-u-py-sm">

src/pages/devResources/devResources.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class DevResourcesPage extends React.Component {
3737
clusterType = window.OPENSHIFT_CONFIG.mockData ? 'localhost' : window.OPENSHIFT_CONFIG.clusterType;
3838
}
3939
switch (clusterType) {
40-
case 'rhpds':
40+
case 'pds':
4141
urls.loggingUrl = `https://kibana.apps.${clusterId}.open.redhat.com`;
4242
urls.apiUrl = `https://master.apps.${clusterId}.open.redhat.com`;
4343
urls.registryUrl = `https://registry-console-default.apps.${clusterId}.open.redhat.com`;

0 commit comments

Comments
 (0)