-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathplugin-metadata.ts
More file actions
28 lines (26 loc) · 1.22 KB
/
plugin-metadata.ts
File metadata and controls
28 lines (26 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import { ConsolePluginBuildMetadata } from '@openshift-console/dynamic-plugin-sdk-webpack';
const metadata: ConsolePluginBuildMetadata = {
dependencies: {
'@console/pluginAPI': '*',
},
name: "gitops-plugin",
displayName: 'GitOps Plugin',
version: "0.0.15",
description: "OpenShift Console Plugin for GitOps",
exposedModules: {
"environments": "./components/ApplicationListPage",
"detailsPage": "./components/EnvironmentDetailsPageTabs",
"gitopsFlags": "./components/utils/flags",
"topology": "./components/topology",
ApplicationList: "./gitops/components/application/ApplicationListTab.tsx",
ApplicationDetails: "./gitops/components/application/ApplicationNavPage.tsx",
RolloutList: "./gitops/components/rollout/RolloutListTab.tsx",
RolloutDetails: "./gitops/components/rollout/RolloutNavPage.tsx",
ApplicationSetList: "./gitops/components/application/ApplicationSetListTab.tsx",
ApplicationSetDetailsPage: "./gitops/components/appset/ApplicationSetDetailsPage.tsx",
ProjectList: "./gitops/components/project/ProjectListTab.tsx",
ProjectDetailsPage: "./gitops/components/project/ProjectDetailsPage.tsx",
yamlTemplates: "./gitops/templates/index.ts"
}
};
export default metadata;