├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ └── bug.yaml ├── labeler.yml ├── pull_request_template.md └── workflows │ ├── build.yml │ ├── publish-chart.yaml │ ├── pull-request-labeler.yaml │ └── release.yaml ├── .gitignore ├── .goreleaser.yml ├── .husky └── pre-commit ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── FEATURES.md ├── LICENSE ├── Makefile ├── README.md ├── artifacthub-repo.yml ├── charts └── helm-dashboard │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ ├── NOTES.txt │ ├── _commons.tpl │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── ingress.yaml │ ├── pvc.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── tests │ │ └── test-connection.yaml │ └── values.yaml ├── ci ├── build-ui.sh └── bump-versions.sh ├── frontend ├── .env ├── .flowbite-react │ ├── .gitignore │ ├── config.json │ └── init.tsx ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc.yaml ├── .storybook │ ├── main.ts │ ├── preview-body.html │ ├── preview-head.html │ └── preview.tsx ├── README.md ├── cypress.config.ts ├── cypress │ ├── e2e │ │ └── addRepository.cy.ts │ ├── fixtures │ │ ├── defaultReleases.json │ │ ├── example.json │ │ ├── history.json │ │ ├── releases.json │ │ ├── repositories.json │ │ └── status.json │ └── support │ │ ├── commands.ts │ │ ├── component-index.html │ │ ├── component.ts │ │ └── e2e.ts ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── public │ ├── analytics.js │ ├── logo.svg │ └── openapi.json ├── src │ ├── API │ │ ├── apiService.ts │ │ ├── interfaces.ts │ │ ├── k8s.ts │ │ ├── other.ts │ │ ├── releases.ts │ │ ├── repositories.ts │ │ ├── scanners.ts │ │ └── shared.ts │ ├── App.css │ ├── App.tsx │ ├── assets │ │ ├── arrow-down-icon.svg │ │ ├── body-background.svg │ │ ├── close.png │ │ ├── code-brackets.svg │ │ ├── colors.svg │ │ ├── comments.svg │ │ ├── direction.svg │ │ ├── flow.svg │ │ ├── helm-gray-50.svg │ │ ├── k8s-watcher.svg │ │ ├── logo-header.svg │ │ ├── packges-header.svg │ │ ├── plugin.svg │ │ ├── react.svg │ │ ├── repo.svg │ │ └── stackalt.svg │ ├── components │ │ ├── Badge.stories.tsx │ │ ├── Badge.tsx │ │ ├── Button.cy.tsx │ │ ├── Button.stories.tsx │ │ ├── Button.tsx │ │ ├── ClustersList.cy.tsx │ │ ├── ClustersList.stories.tsx │ │ ├── ClustersList.tsx │ │ ├── InstalledPackages │ │ │ ├── HealthStatus.tsx │ │ │ ├── InstalledPackageCard.stories.tsx │ │ │ ├── InstalledPackageCard.tsx │ │ │ ├── InstalledPackagesHeader.stories.tsx │ │ │ ├── InstalledPackagesHeader.tsx │ │ │ ├── InstalledPackagesList.stories.tsx │ │ │ └── InstalledPackagesList.tsx │ │ ├── LinkWithSearchParams.tsx │ │ ├── SelectMenu.stories.tsx │ │ ├── SelectMenu.tsx │ │ ├── ShutDownButton.stories.tsx │ │ ├── ShutDownButton.tsx │ │ ├── Spinner │ │ │ └── index.tsx │ │ ├── Tabs.stories.tsx │ │ ├── Tabs.tsx │ │ ├── TabsBar.stories.tsx │ │ ├── TabsBar.tsx │ │ ├── TextInput.cy.tsx │ │ ├── TextInput.stories.tsx │ │ ├── TextInput.tsx │ │ ├── Tooltip.tsx │ │ ├── Troubleshoot.stories.tsx │ │ ├── Troubleshoot.tsx │ │ ├── common │ │ │ ├── Button │ │ │ │ ├── Button.stories.tsx │ │ │ │ ├── Button.tsx │ │ │ │ └── button.css │ │ │ ├── DropDown.stories.tsx │ │ │ ├── DropDown.tsx │ │ │ ├── Header │ │ │ │ ├── Header.stories.tsx │ │ │ │ ├── Header.tsx │ │ │ │ └── header.css │ │ │ ├── Page │ │ │ │ ├── Page.tsx │ │ │ │ └── page.css │ │ │ ├── StatusLabel.stories.tsx │ │ │ └── StatusLabel.tsx │ │ ├── modal │ │ │ ├── AddRepositoryModal.stories.tsx │ │ │ ├── AddRepositoryModal.tsx │ │ │ ├── ErrorModal.stories.tsx │ │ │ ├── ErrorModal.tsx │ │ │ ├── GlobalErrorModal.tsx │ │ │ ├── InstallChartModal │ │ │ │ ├── ChartValues.tsx │ │ │ │ ├── DefinedValues.tsx │ │ │ │ ├── GeneralDetails.tsx │ │ │ │ ├── InstallReleaseChartModal.tsx │ │ │ │ ├── InstallRepoChartModal.tsx │ │ │ │ ├── InstallUpgradeTitle.tsx │ │ │ │ ├── ManifestDiff.tsx │ │ │ │ ├── UserDefinedValues.tsx │ │ │ │ └── VersionToInstall.tsx │ │ │ ├── Modal.stories.tsx │ │ │ └── Modal.tsx │ │ ├── repository │ │ │ ├── ChartViewer.stories.tsx │ │ │ ├── ChartViewer.tsx │ │ │ ├── RepositoriesList.stories.tsx │ │ │ ├── RepositoriesList.tsx │ │ │ ├── RepositoryViewer.stories.tsx │ │ │ └── RepositoryViewer.tsx │ │ └── revision │ │ │ ├── RevisionDetails.tsx │ │ │ ├── RevisionDiff.tsx │ │ │ ├── RevisionResource.tsx │ │ │ └── RevisionsList.tsx │ ├── context │ │ ├── AppContext.tsx │ │ └── ErrorModalContext.tsx │ ├── data │ │ └── types.ts │ ├── hooks │ │ ├── useAlertError.ts │ │ ├── useCustomSearchParams.ts │ │ ├── useDebounce.tsx │ │ └── useNavigateWithSearchParams.ts │ ├── index.css │ ├── layout │ │ ├── Header.tsx │ │ └── Sidebar.tsx │ ├── main.tsx │ ├── pages │ │ ├── DocsPage.tsx │ │ ├── Installed.tsx │ │ ├── NotFound.tsx │ │ ├── Repository.tsx │ │ └── Revision.tsx │ ├── stories │ │ └── Introduction.mdx │ ├── timeUtils.ts │ ├── utils.ts │ └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock ├── go.mod ├── go.sum ├── images ├── logo-header-inverted.svg ├── logo-header.svg ├── logo.png ├── logo.svg ├── screenshot.png ├── screenshot_basic_info.png ├── screenshot_local_charts.png ├── screenshot_manifest_diff_prev.png ├── screenshot_manifest_diff_specific.png ├── screenshot_manifest_view.png ├── screenshot_multicluster.png ├── screenshot_notes_diff_prev.png ├── screenshot_notes_diff_specific_version.png ├── screenshot_notes_view.png ├── screenshot_release.png ├── screenshot_release1.png ├── screenshot_release2.png ├── screenshot_release3.png ├── screenshot_release4.png ├── screenshot_release5.png ├── screenshot_release_detail.png ├── screenshot_release_detail1.png ├── screenshot_repository.png ├── screenshot_repository2.png ├── screenshot_repository3.png ├── screenshot_repository4.png ├── screenshot_repository5.png ├── screenshot_repository6.png ├── screenshot_repository7.png ├── screenshot_reset_cache.png ├── screenshot_resource.png ├── screenshot_run_tests.png ├── screenshot_scan_manifest.png ├── screenshot_scan_resource.png ├── screenshot_shut_down.png ├── screenshot_test_results.png ├── screenshot_upgrade_available.png ├── screenshot_upgrade_available2.png ├── screenshot_upgrade_complete.png ├── screenshot_upgrade_confirmation.png ├── screenshot_values_diff_prev.png └── screenshot_values_view.png ├── main.go ├── pkg ├── dashboard │ ├── api.go │ ├── api_test.go │ ├── handlers │ │ ├── common.go │ │ ├── helmHandlers.go │ │ └── kubeHandlers.go │ ├── objects │ │ ├── app.go │ │ ├── artifacthub.go │ │ ├── cache.go │ │ ├── data.go │ │ ├── data_test.go │ │ ├── kubectl.go │ │ ├── releases.go │ │ ├── releases_test.go │ │ ├── repos.go │ │ ├── repos_test.go │ │ └── testdata │ │ │ ├── repositories-invalid-cache-file.yaml │ │ │ ├── repositories-malformed-manifest.yaml │ │ │ ├── repositories.yaml │ │ │ └── testing-index.yaml │ ├── server.go │ ├── static │ │ └── .gitignore │ └── utils │ │ ├── utils.go │ │ └── utils_test.go └── frontend │ └── fs.go ├── plugin.yaml └── scripts └── install_plugin.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | *.md 3 | bin 4 | .idea 5 | .git 6 | frontend/node_modules -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/.github/ISSUE_TEMPLATE/bug.yaml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/publish-chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/.github/workflows/publish-chart.yaml -------------------------------------------------------------------------------- /.github/workflows/pull-request-labeler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/.github/workflows/pull-request-labeler.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | cd frontend || exit 1 2 | npm run pre:commit -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/Dockerfile -------------------------------------------------------------------------------- /FEATURES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/FEATURES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /artifacthub-repo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/artifacthub-repo.yml -------------------------------------------------------------------------------- /charts/helm-dashboard/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/charts/helm-dashboard/.helmignore -------------------------------------------------------------------------------- /charts/helm-dashboard/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/charts/helm-dashboard/Chart.yaml -------------------------------------------------------------------------------- /charts/helm-dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/charts/helm-dashboard/README.md -------------------------------------------------------------------------------- /charts/helm-dashboard/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/charts/helm-dashboard/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/helm-dashboard/templates/_commons.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/charts/helm-dashboard/templates/_commons.tpl -------------------------------------------------------------------------------- /charts/helm-dashboard/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/charts/helm-dashboard/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/helm-dashboard/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/charts/helm-dashboard/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/helm-dashboard/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/charts/helm-dashboard/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/helm-dashboard/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/charts/helm-dashboard/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/helm-dashboard/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/charts/helm-dashboard/templates/service.yaml -------------------------------------------------------------------------------- /charts/helm-dashboard/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/charts/helm-dashboard/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/helm-dashboard/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/charts/helm-dashboard/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/helm-dashboard/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/charts/helm-dashboard/values.yaml -------------------------------------------------------------------------------- /ci/build-ui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/ci/build-ui.sh -------------------------------------------------------------------------------- /ci/bump-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/ci/bump-versions.sh -------------------------------------------------------------------------------- /frontend/.env: -------------------------------------------------------------------------------- 1 | VITE_SERVER_PORT=8080 2 | -------------------------------------------------------------------------------- /frontend/.flowbite-react/.gitignore: -------------------------------------------------------------------------------- 1 | class-list.json 2 | pid -------------------------------------------------------------------------------- /frontend/.flowbite-react/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/.flowbite-react/config.json -------------------------------------------------------------------------------- /frontend/.flowbite-react/init.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/.flowbite-react/init.tsx -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true 2 | -------------------------------------------------------------------------------- /frontend/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/.prettierignore -------------------------------------------------------------------------------- /frontend/.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/.prettierrc.yaml -------------------------------------------------------------------------------- /frontend/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/.storybook/main.ts -------------------------------------------------------------------------------- /frontend/.storybook/preview-body.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /frontend/.storybook/preview-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/.storybook/preview-head.html -------------------------------------------------------------------------------- /frontend/.storybook/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/.storybook/preview.tsx -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/cypress.config.ts -------------------------------------------------------------------------------- /frontend/cypress/e2e/addRepository.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/cypress/e2e/addRepository.cy.ts -------------------------------------------------------------------------------- /frontend/cypress/fixtures/defaultReleases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/cypress/fixtures/defaultReleases.json -------------------------------------------------------------------------------- /frontend/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/cypress/fixtures/example.json -------------------------------------------------------------------------------- /frontend/cypress/fixtures/history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/cypress/fixtures/history.json -------------------------------------------------------------------------------- /frontend/cypress/fixtures/releases.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /frontend/cypress/fixtures/repositories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/cypress/fixtures/repositories.json -------------------------------------------------------------------------------- /frontend/cypress/fixtures/status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/cypress/fixtures/status.json -------------------------------------------------------------------------------- /frontend/cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/cypress/support/commands.ts -------------------------------------------------------------------------------- /frontend/cypress/support/component-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/cypress/support/component-index.html -------------------------------------------------------------------------------- /frontend/cypress/support/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/cypress/support/component.ts -------------------------------------------------------------------------------- /frontend/cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/cypress/support/e2e.ts -------------------------------------------------------------------------------- /frontend/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/eslint.config.js -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/public/analytics.js -------------------------------------------------------------------------------- /frontend/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/public/logo.svg -------------------------------------------------------------------------------- /frontend/public/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/public/openapi.json -------------------------------------------------------------------------------- /frontend/src/API/apiService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/API/apiService.ts -------------------------------------------------------------------------------- /frontend/src/API/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/API/interfaces.ts -------------------------------------------------------------------------------- /frontend/src/API/k8s.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/API/k8s.ts -------------------------------------------------------------------------------- /frontend/src/API/other.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/API/other.ts -------------------------------------------------------------------------------- /frontend/src/API/releases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/API/releases.ts -------------------------------------------------------------------------------- /frontend/src/API/repositories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/API/repositories.ts -------------------------------------------------------------------------------- /frontend/src/API/scanners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/API/scanners.ts -------------------------------------------------------------------------------- /frontend/src/API/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/API/shared.ts -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/App.tsx -------------------------------------------------------------------------------- /frontend/src/assets/arrow-down-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/assets/arrow-down-icon.svg -------------------------------------------------------------------------------- /frontend/src/assets/body-background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/assets/body-background.svg -------------------------------------------------------------------------------- /frontend/src/assets/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/assets/close.png -------------------------------------------------------------------------------- /frontend/src/assets/code-brackets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/assets/code-brackets.svg -------------------------------------------------------------------------------- /frontend/src/assets/colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/assets/colors.svg -------------------------------------------------------------------------------- /frontend/src/assets/comments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/assets/comments.svg -------------------------------------------------------------------------------- /frontend/src/assets/direction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/assets/direction.svg -------------------------------------------------------------------------------- /frontend/src/assets/flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/assets/flow.svg -------------------------------------------------------------------------------- /frontend/src/assets/helm-gray-50.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/assets/helm-gray-50.svg -------------------------------------------------------------------------------- /frontend/src/assets/k8s-watcher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/assets/k8s-watcher.svg -------------------------------------------------------------------------------- /frontend/src/assets/logo-header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/assets/logo-header.svg -------------------------------------------------------------------------------- /frontend/src/assets/packges-header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/assets/packges-header.svg -------------------------------------------------------------------------------- /frontend/src/assets/plugin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/assets/plugin.svg -------------------------------------------------------------------------------- /frontend/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/assets/react.svg -------------------------------------------------------------------------------- /frontend/src/assets/repo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/assets/repo.svg -------------------------------------------------------------------------------- /frontend/src/assets/stackalt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/assets/stackalt.svg -------------------------------------------------------------------------------- /frontend/src/components/Badge.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/Badge.stories.tsx -------------------------------------------------------------------------------- /frontend/src/components/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/Badge.tsx -------------------------------------------------------------------------------- /frontend/src/components/Button.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/Button.cy.tsx -------------------------------------------------------------------------------- /frontend/src/components/Button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/Button.stories.tsx -------------------------------------------------------------------------------- /frontend/src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/Button.tsx -------------------------------------------------------------------------------- /frontend/src/components/ClustersList.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/ClustersList.cy.tsx -------------------------------------------------------------------------------- /frontend/src/components/ClustersList.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/ClustersList.stories.tsx -------------------------------------------------------------------------------- /frontend/src/components/ClustersList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/ClustersList.tsx -------------------------------------------------------------------------------- /frontend/src/components/InstalledPackages/HealthStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/InstalledPackages/HealthStatus.tsx -------------------------------------------------------------------------------- /frontend/src/components/InstalledPackages/InstalledPackageCard.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/InstalledPackages/InstalledPackageCard.stories.tsx -------------------------------------------------------------------------------- /frontend/src/components/InstalledPackages/InstalledPackageCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/InstalledPackages/InstalledPackageCard.tsx -------------------------------------------------------------------------------- /frontend/src/components/InstalledPackages/InstalledPackagesHeader.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/InstalledPackages/InstalledPackagesHeader.stories.tsx -------------------------------------------------------------------------------- /frontend/src/components/InstalledPackages/InstalledPackagesHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/InstalledPackages/InstalledPackagesHeader.tsx -------------------------------------------------------------------------------- /frontend/src/components/InstalledPackages/InstalledPackagesList.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/InstalledPackages/InstalledPackagesList.stories.tsx -------------------------------------------------------------------------------- /frontend/src/components/InstalledPackages/InstalledPackagesList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/InstalledPackages/InstalledPackagesList.tsx -------------------------------------------------------------------------------- /frontend/src/components/LinkWithSearchParams.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/LinkWithSearchParams.tsx -------------------------------------------------------------------------------- /frontend/src/components/SelectMenu.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/SelectMenu.stories.tsx -------------------------------------------------------------------------------- /frontend/src/components/SelectMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/SelectMenu.tsx -------------------------------------------------------------------------------- /frontend/src/components/ShutDownButton.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/ShutDownButton.stories.tsx -------------------------------------------------------------------------------- /frontend/src/components/ShutDownButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/ShutDownButton.tsx -------------------------------------------------------------------------------- /frontend/src/components/Spinner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/Spinner/index.tsx -------------------------------------------------------------------------------- /frontend/src/components/Tabs.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/Tabs.stories.tsx -------------------------------------------------------------------------------- /frontend/src/components/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/Tabs.tsx -------------------------------------------------------------------------------- /frontend/src/components/TabsBar.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/TabsBar.stories.tsx -------------------------------------------------------------------------------- /frontend/src/components/TabsBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/TabsBar.tsx -------------------------------------------------------------------------------- /frontend/src/components/TextInput.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/TextInput.cy.tsx -------------------------------------------------------------------------------- /frontend/src/components/TextInput.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/TextInput.stories.tsx -------------------------------------------------------------------------------- /frontend/src/components/TextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/TextInput.tsx -------------------------------------------------------------------------------- /frontend/src/components/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/Tooltip.tsx -------------------------------------------------------------------------------- /frontend/src/components/Troubleshoot.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/Troubleshoot.stories.tsx -------------------------------------------------------------------------------- /frontend/src/components/Troubleshoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/Troubleshoot.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/Button/Button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/common/Button/Button.stories.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/common/Button/Button.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/Button/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/common/Button/button.css -------------------------------------------------------------------------------- /frontend/src/components/common/DropDown.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/common/DropDown.stories.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/DropDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/common/DropDown.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/Header/Header.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/common/Header/Header.stories.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/common/Header/Header.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/Header/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/common/Header/header.css -------------------------------------------------------------------------------- /frontend/src/components/common/Page/Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/common/Page/Page.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/Page/page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/common/Page/page.css -------------------------------------------------------------------------------- /frontend/src/components/common/StatusLabel.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/common/StatusLabel.stories.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/StatusLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/common/StatusLabel.tsx -------------------------------------------------------------------------------- /frontend/src/components/modal/AddRepositoryModal.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/modal/AddRepositoryModal.stories.tsx -------------------------------------------------------------------------------- /frontend/src/components/modal/AddRepositoryModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/modal/AddRepositoryModal.tsx -------------------------------------------------------------------------------- /frontend/src/components/modal/ErrorModal.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/modal/ErrorModal.stories.tsx -------------------------------------------------------------------------------- /frontend/src/components/modal/ErrorModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/modal/ErrorModal.tsx -------------------------------------------------------------------------------- /frontend/src/components/modal/GlobalErrorModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/modal/GlobalErrorModal.tsx -------------------------------------------------------------------------------- /frontend/src/components/modal/InstallChartModal/ChartValues.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/modal/InstallChartModal/ChartValues.tsx -------------------------------------------------------------------------------- /frontend/src/components/modal/InstallChartModal/DefinedValues.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/modal/InstallChartModal/DefinedValues.tsx -------------------------------------------------------------------------------- /frontend/src/components/modal/InstallChartModal/GeneralDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/modal/InstallChartModal/GeneralDetails.tsx -------------------------------------------------------------------------------- /frontend/src/components/modal/InstallChartModal/InstallReleaseChartModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/modal/InstallChartModal/InstallReleaseChartModal.tsx -------------------------------------------------------------------------------- /frontend/src/components/modal/InstallChartModal/InstallRepoChartModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/modal/InstallChartModal/InstallRepoChartModal.tsx -------------------------------------------------------------------------------- /frontend/src/components/modal/InstallChartModal/InstallUpgradeTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/modal/InstallChartModal/InstallUpgradeTitle.tsx -------------------------------------------------------------------------------- /frontend/src/components/modal/InstallChartModal/ManifestDiff.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/modal/InstallChartModal/ManifestDiff.tsx -------------------------------------------------------------------------------- /frontend/src/components/modal/InstallChartModal/UserDefinedValues.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/modal/InstallChartModal/UserDefinedValues.tsx -------------------------------------------------------------------------------- /frontend/src/components/modal/InstallChartModal/VersionToInstall.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/modal/InstallChartModal/VersionToInstall.tsx -------------------------------------------------------------------------------- /frontend/src/components/modal/Modal.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/modal/Modal.stories.tsx -------------------------------------------------------------------------------- /frontend/src/components/modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/modal/Modal.tsx -------------------------------------------------------------------------------- /frontend/src/components/repository/ChartViewer.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/repository/ChartViewer.stories.tsx -------------------------------------------------------------------------------- /frontend/src/components/repository/ChartViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/repository/ChartViewer.tsx -------------------------------------------------------------------------------- /frontend/src/components/repository/RepositoriesList.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/repository/RepositoriesList.stories.tsx -------------------------------------------------------------------------------- /frontend/src/components/repository/RepositoriesList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/repository/RepositoriesList.tsx -------------------------------------------------------------------------------- /frontend/src/components/repository/RepositoryViewer.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/repository/RepositoryViewer.stories.tsx -------------------------------------------------------------------------------- /frontend/src/components/repository/RepositoryViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/repository/RepositoryViewer.tsx -------------------------------------------------------------------------------- /frontend/src/components/revision/RevisionDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/revision/RevisionDetails.tsx -------------------------------------------------------------------------------- /frontend/src/components/revision/RevisionDiff.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/revision/RevisionDiff.tsx -------------------------------------------------------------------------------- /frontend/src/components/revision/RevisionResource.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/revision/RevisionResource.tsx -------------------------------------------------------------------------------- /frontend/src/components/revision/RevisionsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/components/revision/RevisionsList.tsx -------------------------------------------------------------------------------- /frontend/src/context/AppContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/context/AppContext.tsx -------------------------------------------------------------------------------- /frontend/src/context/ErrorModalContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/context/ErrorModalContext.tsx -------------------------------------------------------------------------------- /frontend/src/data/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/data/types.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useAlertError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/hooks/useAlertError.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useCustomSearchParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/hooks/useCustomSearchParams.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useDebounce.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/hooks/useDebounce.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/useNavigateWithSearchParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/hooks/useNavigateWithSearchParams.ts -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/layout/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/layout/Header.tsx -------------------------------------------------------------------------------- /frontend/src/layout/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/layout/Sidebar.tsx -------------------------------------------------------------------------------- /frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/main.tsx -------------------------------------------------------------------------------- /frontend/src/pages/DocsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/pages/DocsPage.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Installed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/pages/Installed.tsx -------------------------------------------------------------------------------- /frontend/src/pages/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/pages/NotFound.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Repository.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/pages/Repository.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Revision.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/pages/Revision.tsx -------------------------------------------------------------------------------- /frontend/src/stories/Introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/stories/Introduction.mdx -------------------------------------------------------------------------------- /frontend/src/timeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/timeUtils.ts -------------------------------------------------------------------------------- /frontend/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komodorio/helm-dashboard/HEAD/frontend/src/utils.ts -------------------------------------------------------------------------------- /frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | ///