Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(kiali): workloads page list #1129

Merged
merged 27 commits into from
Feb 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions plugins/kiali/dev/__fixtures__/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,16 @@ import bookinfoHealthWorkload from './namespaces/bookinfo/health/workload.json';
import bookInfoMetrics from './namespaces/bookinfo/metrics';
/* bookinfo */
import bookinfoTls from './namespaces/bookinfo/tls.json';
/** Workloads **/
import bookinfoWorkloads from './namespaces/bookinfo/workloads.json';
/** health **/
import istioSystemHealthApp from './namespaces/istio-system/health/app.json';
import istioSystemHealthService from './namespaces/istio-system/health/service.json';
import istioSystemHealthWorkload from './namespaces/istio-system/health/workload.json';
import istioSystemMetrics from './namespaces/istio-system/metrics';
/* istio-system */
import istioSystemTls from './namespaces/istio-system/tls.json';
import istioSystemWorkloads from './namespaces/istio-system/workloads.json';
/** health **/

import travelAgencyHealthApp from './namespaces/travel-agency/health/app.json';
Expand All @@ -34,6 +37,7 @@ import travelAgencyHealthWorkload from './namespaces/travel-agency/health/worklo
import travelAgencyMetrics from './namespaces/travel-agency/metrics';
/* Travel agency */
import travelAgencyTls from './namespaces/travel-agency/tls.json';
import travelAgencyWorkloads from './namespaces/travel-agency/workloads.json';
/** health **/

import travelControlHealthApp from './namespaces/travel-control/health/app.json';
Expand All @@ -42,6 +46,7 @@ import travelControlHealthWorkload from './namespaces/travel-control/health/work
import travelControlMetrics from './namespaces/travel-control/metrics';
/* Travel control */
import travelControlTls from './namespaces/travel-control/tls.json';
import travelControlWorkloads from './namespaces/travel-control/workloads.json';
/** health **/

import travelPortalHealthApp from './namespaces/travel-portal/health/app.json';
Expand All @@ -50,6 +55,7 @@ import travelPortalHealthWorkload from './namespaces/travel-portal/health/worklo
import travelPortalMetrics from './namespaces/travel-portal/metrics';
/* Travel portal */
import travelPortalTls from './namespaces/travel-portal/tls.json';
import travelPortalWorkloads from './namespaces/travel-portal/workloads.json';

export const kialiData: { [index: string]: any } = {
auth: anonymousAuth,
Expand Down Expand Up @@ -110,5 +116,12 @@ export const kialiData: { [index: string]: any } = {
},
},
},
workloads: {
'istio-system': istioSystemWorkloads,
bookinfo: bookinfoWorkloads,
'travel-portal': travelPortalWorkloads,
'travel-agency': travelAgencyWorkloads,
'travel-control': travelControlWorkloads,
},
status: status,
};
Loading
Loading