Skip to content
Open
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
3 changes: 3 additions & 0 deletions src/Assets/IconV2/ic-binoculars.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions src/Common/Constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ const APPLICATION_MANAGEMENT_ROOT = '/application-management'
const APPLICATION_MANAGEMENT_TEMPLATES_DEVTRON_APP = `${APPLICATION_MANAGEMENT_ROOT}/templates/devtron-app`
const APPLICATION_MANAGEMENT_CONFIGURATIONS = `${APPLICATION_MANAGEMENT_ROOT}/configurations`
const INFRASTRUCTURE_MANAGEMENT_ROOT = '/infrastructure-management'
const OBSERVABILITY_ROOT = '/observability'
const SOFTWARE_RELEASE_MANAGEMENT_ROOT = '/software-release-management'
const COST_VISIBILITY_ROOT = '/cost-visibility'
const SECURITY_CENTER_ROOT = '/security-center'
Expand Down Expand Up @@ -116,6 +117,10 @@ export const URLS = {
INFRASTRUCTURE_MANAGEMENT_CHART_STORE_DISCOVER: `${INFRASTRUCTURE_MANAGEMENT_ROOT}/chart-store/discover`,
INFRASTRUCTURE_MANAGEMENT_RESOURCE_BROWSER: `${INFRASTRUCTURE_MANAGEMENT_ROOT}/resource-browser`,
INFRASTRUCTURE_MANAGEMENT_RESOURCE_WATCHER: `${INFRASTRUCTURE_MANAGEMENT_ROOT}/resource-watcher`,
// OBSERVABILITY
OBSERVABILITY: OBSERVABILITY_ROOT,
OBSERVABILITY_OVERVIEW: `${OBSERVABILITY_ROOT}/overview`,
OBSERVABILITY_CUSTOMER_LIST: `${OBSERVABILITY_ROOT}/customers`,
// SOFTWARE RELEASE MANAGEMENT
SOFTWARE_RELEASE_MANAGEMENT: SOFTWARE_RELEASE_MANAGEMENT_ROOT,
// COST VISIBILITY
Expand Down
2 changes: 2 additions & 0 deletions src/Shared/Components/Icon/Icon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ import { ReactComponent as ICBgProject } from '@IconsV2/ic-bg-project.svg'
import { ReactComponent as ICBgScan } from '@IconsV2/ic-bg-scan.svg'
import { ReactComponent as ICBgWebhook } from '@IconsV2/ic-bg-webhook.svg'
import { ReactComponent as ICBharatpe } from '@IconsV2/ic-bharatpe.svg'
import { ReactComponent as ICBinoculars } from '@IconsV2/ic-binoculars.svg'
import { ReactComponent as ICBitbucket } from '@IconsV2/ic-bitbucket.svg'
import { ReactComponent as ICBookOpen } from '@IconsV2/ic-book-open.svg'
import { ReactComponent as ICBot } from '@IconsV2/ic-bot.svg'
Expand Down Expand Up @@ -342,6 +343,7 @@ export const iconMap = {
'ic-bg-scan': ICBgScan,
'ic-bg-webhook': ICBgWebhook,
'ic-bharatpe': ICBharatpe,
'ic-binoculars': ICBinoculars,
'ic-bitbucket': ICBitbucket,
'ic-book-open': ICBookOpen,
'ic-bot': ICBot,
Expand Down
2 changes: 2 additions & 0 deletions src/Shared/Hooks/useUserPreferences/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ export type NavigationItemID =
| 'infrastructure-management-resource-browser'
| 'infrastructure-management-resource-watcher'
| 'infrastructure-management-catalog-framework'
| 'observability-overview'
| 'observability-vms'
| 'software-release-management-overview'
| 'software-release-management-release-hub'
| 'software-release-management-tenants'
Expand Down