├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── docker-publish.yml │ └── helm-publish.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEV_NOTES.md ├── LICENSE.md ├── README.md ├── RELEASE_NOTES.md ├── SECURITY.md ├── deploy ├── helm │ └── trivy-operator-dashboard │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ │ └── values.yaml └── static │ └── trivy-operator-dashboard.yaml ├── docs ├── imgs │ ├── about.png │ ├── alerts.png │ ├── combo.png │ ├── logo.blurred.png │ ├── sbom-compare.png │ ├── sbom-graph-toolbar.png │ ├── sbom-graph.png │ ├── sbom-img-selection.png │ ├── sbom-info.png │ ├── sbom.png │ ├── settings.png │ ├── trivy-report-dependency.png │ ├── vr-combined.png │ ├── vr-compare.png │ ├── vr-dark.png │ ├── vr-detailed.png │ ├── vr-filter.png │ ├── vr-home-details.png │ ├── vr-home.png │ ├── vr-image-usage.png │ └── watcher-status.png ├── install-doc.md ├── main-doc.md ├── snippets.md └── todo-doc.md ├── media └── davinci.projects │ └── trivy.timeline.drp ├── src ├── .editorconfig ├── TrivyOperator.Dashboard.sln ├── TrivyOperator.Dashboard │ ├── Application │ │ ├── Controllers │ │ │ ├── AlertsController.cs │ │ │ ├── AppVersionController.cs │ │ │ ├── BackendSettingsController.cs │ │ │ ├── ClusterComplianceReportController.cs │ │ │ ├── ClusterRbacAssessmentReportController.cs │ │ │ ├── ClusterSbomReportController.cs │ │ │ ├── ClusterVulnerabilityReportController.cs │ │ │ ├── ConfigAuditReportController.cs │ │ │ ├── ExposedSecretReportController.cs │ │ │ ├── NamespacesController.cs │ │ │ ├── RawDomainController.cs │ │ │ ├── RbacAssessmentReportController.cs │ │ │ ├── SbomReportController.cs │ │ │ ├── SeveritiesController.cs │ │ │ ├── TrivyReportDependencyController.cs │ │ │ ├── VulnerabilityReportsController.cs │ │ │ └── WatcherStatusController.cs │ │ ├── HealthChecks │ │ │ ├── WatchersLivenessHealthCheck .cs │ │ │ └── WatchersReadinessHealthCheck.cs │ │ ├── Hubs │ │ │ └── AlertsHub.cs │ │ ├── Internals │ │ │ ├── MultiBucketTimedHostedService.cs │ │ │ └── SingleBucketTimedHostedService.cs │ │ ├── Models │ │ │ ├── Abstracts │ │ │ │ └── ISbomReportDto.cs │ │ │ ├── AlertDto.cs │ │ │ ├── AppVersion.cs │ │ │ ├── BackendSettingsDto.cs │ │ │ ├── ClusterComplianceReportDto.cs │ │ │ ├── ClusterRbacAssessmentReportDto.cs │ │ │ ├── ClusterSbomReportDto.cs │ │ │ ├── ClusterVulnerabilityReportDto.cs │ │ │ ├── ConfigAuditReportDto.cs │ │ │ ├── CycloneDxBom.cs │ │ │ ├── ExposedSecretReportDto.cs │ │ │ ├── GitHubReleaseDto.cs │ │ │ ├── RbacAssessmentReportDto.cs │ │ │ ├── SbomReportDto.cs │ │ │ ├── SeverityDto.cs │ │ │ ├── SpdxBom.cs │ │ │ ├── TrivyReportDependencyDto.cs │ │ │ ├── VulnerabilityReportDto.cs │ │ │ └── WatcherStatusDto.cs │ │ └── Services │ │ │ ├── Alerts │ │ │ ├── Abstractions │ │ │ │ └── IAlertsService.cs │ │ │ ├── Alert.cs │ │ │ ├── AlertsService.cs │ │ │ └── Severity.cs │ │ │ ├── AppVersions │ │ │ ├── Abstractions │ │ │ │ └── IAppVersionService.cs │ │ │ └── AppVersionService.cs │ │ │ ├── BackendSettings │ │ │ ├── Abstractions │ │ │ │ └── IBackendSettingsService.cs │ │ │ └── BackendSettingsService.cs │ │ │ ├── BackgroundQueues │ │ │ ├── Abstractions │ │ │ │ ├── IBackgroundQueue.cs │ │ │ │ └── IKubernetesBackgroundQueue.cs │ │ │ ├── BackgroundQueue.cs │ │ │ └── KubernetesBackgroundQueue.cs │ │ │ ├── BuilderServicesExtensions │ │ │ └── BuilderServicesExtensions.cs │ │ │ ├── CacheRefreshers │ │ │ ├── CacheRefresher.cs │ │ │ └── NamespaceCacheRefresher.cs │ │ │ ├── Common │ │ │ └── OperationResult.cs │ │ │ ├── KubernetesEventCoordinators │ │ │ ├── Abstractions │ │ │ │ ├── IClusterScopedKubernetesEventCoordinator.cs │ │ │ │ ├── IKubernetesEventCoordinator.cs │ │ │ │ └── INamespacedKubernetesEventCoordinator.cs │ │ │ ├── ClusterScopedKubernetesEventCoordinator.cs │ │ │ ├── KubernetesEventCoordinator.cs │ │ │ └── NamespacedKubernetesEventCoordinator.cs │ │ │ ├── KubernetesEventCoordinatorsHandlerHostedService.cs │ │ │ ├── KubernetesEventDispatchers │ │ │ ├── Abstractions │ │ │ │ ├── IKubernetesEventDispatcher.cs │ │ │ │ └── IKubernetesEventProcessor.cs │ │ │ └── KubernetesEventDispatcher.cs │ │ │ ├── Namespaces │ │ │ ├── Abstractions │ │ │ │ └── INamespaceService.cs │ │ │ └── NamespaceService.cs │ │ │ ├── Options │ │ │ ├── BackgroundQueueOptions.cs │ │ │ ├── FileExportOptions.cs │ │ │ ├── GitHubOptions.cs │ │ │ ├── KubernetesOptions.cs │ │ │ └── WatchersOptions.cs │ │ │ ├── RawDomainQueryServices │ │ │ ├── Abstracts │ │ │ │ └── IRawDomainQueryService.cs │ │ │ ├── CacheNotRegisteredException.cs │ │ │ └── RawDomainQueryService.cs │ │ │ ├── Trivy │ │ │ ├── ClusterComplianceReport │ │ │ │ ├── Abstractions │ │ │ │ │ └── IClusterComplianceReportService.cs │ │ │ │ ├── ClusterComplianceReportNullService.cs │ │ │ │ └── ClusterComplianceReportService.cs │ │ │ ├── ClusterRbacAssessmentReport │ │ │ │ ├── Abstractions │ │ │ │ │ └── IClusterRbacAssessmentReportService.cs │ │ │ │ ├── ClusterRbacAssessmentReportNullService.cs │ │ │ │ └── ClusterRbacAssessmentReportService.cs │ │ │ ├── ClusterSbomReport │ │ │ │ ├── Abstractions │ │ │ │ │ └── IClusterSbomReportService.cs │ │ │ │ ├── ClusterSbomReportNullService.cs │ │ │ │ └── ClusterSbomReportService.cs │ │ │ ├── ClusterVulnerabilityReport │ │ │ │ ├── Abstractions │ │ │ │ │ └── IClusterVulnerabilityReportService.cs │ │ │ │ ├── ClusterVulnerabilityReportNullService.cs │ │ │ │ └── ClusterVulnerabilityReportService.cs │ │ │ ├── ConfigAuditReport │ │ │ │ ├── Abstractions │ │ │ │ │ └── IConfigAuditReportService.cs │ │ │ │ ├── ConfigAuditReportNullService.cs │ │ │ │ └── ConfigAuditReportService.cs │ │ │ ├── ExposedSecretReport │ │ │ │ ├── Abstractions │ │ │ │ │ └── IExposedSecretReportService.cs │ │ │ │ ├── ExposedSecretReportNullService.cs │ │ │ │ └── ExposedSecretReportService.cs │ │ │ ├── ImageGroupKey.cs │ │ │ ├── RbacAssessmentReport │ │ │ │ ├── Abstractions │ │ │ │ │ └── IRbacAssessmentReportService.cs │ │ │ │ ├── RbacAssessmentReportNullService.cs │ │ │ │ └── RbacAssessmentReportService.cs │ │ │ ├── SbomReport │ │ │ │ ├── Abstractions │ │ │ │ │ └── ISbomReportService.cs │ │ │ │ ├── SbomReportNullService.cs │ │ │ │ └── SbomReportService.cs │ │ │ └── VulnerabilityReport │ │ │ │ ├── Abstractions │ │ │ │ └── IVulnerabilityReportService.cs │ │ │ │ ├── VulnerabilityReportNullService.cs │ │ │ │ └── VulnerabilityReportService.cs │ │ │ ├── TrivyReportDependencies │ │ │ ├── Abstractions │ │ │ │ └── ITrivyReportDependency.cs │ │ │ └── TrivyReportDependency.cs │ │ │ ├── WatcherEvents │ │ │ ├── Abstractions │ │ │ │ └── IWatcherEvent.cs │ │ │ ├── WatcherEvent.cs │ │ │ └── WatcherEventType.cs │ │ │ ├── WatcherStateAlertRefreshers │ │ │ └── WatcherStateAlertRefresh.cs │ │ │ ├── WatcherStateCacheTimedHostedService.cs │ │ │ ├── WatcherStates │ │ │ ├── Abstractions │ │ │ │ ├── IWatcherState.cs │ │ │ │ └── IWatcherStatusService.cs │ │ │ ├── StaleWatcheCacheException.cs │ │ │ ├── WatcherState.cs │ │ │ ├── WatcherStateInfo.cs │ │ │ ├── WatcherStateStatus.cs │ │ │ └── WatcherStatusService.cs │ │ │ └── Watchers │ │ │ ├── Abstractions │ │ │ ├── IClusterScopedWatcher.cs │ │ │ ├── IKubernetesWatcher.cs │ │ │ ├── INamespacedWatcher.cs │ │ │ └── KubernetesWatcher.cs │ │ │ ├── ClusterScopedWatcher.cs │ │ │ ├── NamespacedWatcher.cs │ │ │ ├── SbomReportWatcher.cs │ │ │ ├── StaticNamespaceWatcher.cs │ │ │ └── TaskWithCts.cs │ ├── ClientApp │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .postcssrc.json │ │ ├── .prettierignore │ │ ├── .prettierrc.js │ │ ├── angular.json │ │ ├── backend-api.yaml │ │ ├── build │ │ │ └── preBuild.js │ │ ├── eslint.config.js │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── proxy.conf.js │ │ ├── src │ │ │ ├── app │ │ │ │ ├── abstracts │ │ │ │ │ └── reactive-map.ts │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.config.ts │ │ │ │ ├── app.routes.ts │ │ │ │ ├── app.server.module.ts │ │ │ │ ├── constants │ │ │ │ │ └── migration.constants.ts │ │ │ │ ├── pages │ │ │ │ │ ├── about │ │ │ │ │ │ ├── about.component.html │ │ │ │ │ │ ├── about.component.scss │ │ │ │ │ │ ├── about.component.ts │ │ │ │ │ │ └── about.types.ts │ │ │ │ │ ├── alerts │ │ │ │ │ │ ├── alerts.component.html │ │ │ │ │ │ ├── alerts.component.scss │ │ │ │ │ │ └── alerts.component.ts │ │ │ │ │ ├── constants │ │ │ │ │ │ └── watcher-state.constants.ts │ │ │ │ │ ├── home │ │ │ │ │ │ ├── dashboard-cluster-rbac-assessment-reports │ │ │ │ │ │ │ ├── dashboard-cluster-rbac-assessment-reports.component.html │ │ │ │ │ │ │ ├── dashboard-cluster-rbac-assessment-reports.component.scss │ │ │ │ │ │ │ └── dashboard-cluster-rbac-assessment-reports.component.ts │ │ │ │ │ │ ├── dashboard-config-audit-reports │ │ │ │ │ │ │ ├── dashboard-config-audit-reports.component.html │ │ │ │ │ │ │ ├── dashboard-config-audit-reports.component.scss │ │ │ │ │ │ │ ├── dashboard-config-audit-reports.component.ts │ │ │ │ │ │ │ └── dashboard-config-audit-reports.types.ts │ │ │ │ │ │ ├── dashboard-exposed-secret-reports │ │ │ │ │ │ │ ├── dashboard-exposed-secret-reports.component.html │ │ │ │ │ │ │ ├── dashboard-exposed-secret-reports.component.scss │ │ │ │ │ │ │ ├── dashboard-exposed-secret-reports.component.ts │ │ │ │ │ │ │ └── dashboard-exposed-secret-reports.types.ts │ │ │ │ │ │ ├── dashboard-vulnerability-reports │ │ │ │ │ │ │ ├── dashboard-vulnerability-reports.component.html │ │ │ │ │ │ │ ├── dashboard-vulnerability-reports.component.scss │ │ │ │ │ │ │ ├── dashboard-vulnerability-reports.component.ts │ │ │ │ │ │ │ └── dashboard-vulnerability-reports.types.ts │ │ │ │ │ │ ├── home.component.html │ │ │ │ │ │ ├── home.component.scss │ │ │ │ │ │ └── home.component.ts │ │ │ │ │ ├── settings │ │ │ │ │ │ ├── settings.component.html │ │ │ │ │ │ ├── settings.component.scss │ │ │ │ │ │ ├── settings.component.ts │ │ │ │ │ │ └── settings.types.ts │ │ │ │ │ └── watcher-state │ │ │ │ │ │ ├── watcher-state.component.html │ │ │ │ │ │ ├── watcher-state.component.scss │ │ │ │ │ │ └── watcher-state.component.ts │ │ │ │ ├── pipes │ │ │ │ │ ├── boolean-css-style.pipe.ts │ │ │ │ │ ├── capitalize-first.pipe.ts │ │ │ │ │ ├── cell-row-array.pipe.ts │ │ │ │ │ ├── cron.pipe.ts │ │ │ │ │ ├── generic-object-array-summary.pipe.ts │ │ │ │ │ ├── line-height.pipe.ts │ │ │ │ │ ├── local-time.pipe.ts │ │ │ │ │ ├── semaphore-css-style-by-name.pipe.ts │ │ │ │ │ ├── severity-css-style-by-id.pipe.ts │ │ │ │ │ ├── severity-name-by-id.pipe.ts │ │ │ │ │ ├── severity-names-max-display.pipe.ts │ │ │ │ │ ├── un-pascal-case.pipe.ts │ │ │ │ │ └── vulnerability-count.pipe.ts │ │ │ │ ├── services │ │ │ │ │ ├── alerts.service.ts │ │ │ │ │ ├── dark-mode.service.ts │ │ │ │ │ ├── main-app-init.service.ts │ │ │ │ │ ├── migration.service.ts │ │ │ │ │ ├── router-event-emitter.service.ts │ │ │ │ │ ├── settings.service.ts │ │ │ │ │ └── title.service.ts │ │ │ │ ├── tests │ │ │ │ │ ├── tests.component.html │ │ │ │ │ ├── tests.component.scss │ │ │ │ │ ├── tests.component.ts │ │ │ │ │ └── tests.pipe.ts │ │ │ │ ├── themes │ │ │ │ │ ├── trivy-operator-dashboard.preset.ts │ │ │ │ │ └── trivy-operator-dashboard.variables.css │ │ │ │ ├── trivy-reports │ │ │ │ │ ├── abstracts │ │ │ │ │ │ ├── trivy-report-image.ts │ │ │ │ │ │ └── trivy-report.ts │ │ │ │ │ ├── cluster-compliance-reports-detailed │ │ │ │ │ │ ├── cluster-compliance-reports-detailed.component.html │ │ │ │ │ │ ├── cluster-compliance-reports-detailed.component.scss │ │ │ │ │ │ └── cluster-compliance-reports-detailed.component.ts │ │ │ │ │ ├── cluster-compliance-reports │ │ │ │ │ │ ├── cluster-compliance-reports.component.html │ │ │ │ │ │ ├── cluster-compliance-reports.component.scss │ │ │ │ │ │ └── cluster-compliance-reports.component.ts │ │ │ │ │ ├── cluster-rbac-assessment-reports-detailed │ │ │ │ │ │ ├── cluster-rbac-assessment-reports-detailed.component.html │ │ │ │ │ │ ├── cluster-rbac-assessment-reports-detailed.component.scss │ │ │ │ │ │ └── cluster-rbac-assessment-reports-detailed.component.ts │ │ │ │ │ ├── cluster-rbac-assessment-reports │ │ │ │ │ │ ├── cluster-rbac-assessment-reports.component.html │ │ │ │ │ │ ├── cluster-rbac-assessment-reports.component.scss │ │ │ │ │ │ └── cluster-rbac-assessment-reports.component.ts │ │ │ │ │ ├── cluster-sbom-reports-detailed │ │ │ │ │ │ ├── cluster-sbom-reports-detailed.component.html │ │ │ │ │ │ ├── cluster-sbom-reports-detailed.component.scss │ │ │ │ │ │ └── cluster-sbom-reports-detailed.component.ts │ │ │ │ │ ├── cluster-sbom-reports │ │ │ │ │ │ ├── cluster-sbom-reports.component.html │ │ │ │ │ │ ├── cluster-sbom-reports.component.scss │ │ │ │ │ │ └── cluster-sbom-reports.component.ts │ │ │ │ │ ├── cluster-vulnerability-reports-detailed │ │ │ │ │ │ ├── cluster-vulnerability-reports-detailed.component.html │ │ │ │ │ │ ├── cluster-vulnerability-reports-detailed.component.scss │ │ │ │ │ │ └── cluster-vulnerability-reports-detailed.component.ts │ │ │ │ │ ├── cluster-vulnerability-reports │ │ │ │ │ │ ├── cluster-vulnerability-reports.component.html │ │ │ │ │ │ ├── cluster-vulnerability-reports.component.scss │ │ │ │ │ │ └── cluster-vulnerability-reports.component.ts │ │ │ │ │ ├── config-audit-reports-detailed │ │ │ │ │ │ ├── config-audit-reports-detailed.component.html │ │ │ │ │ │ ├── config-audit-reports-detailed.component.scss │ │ │ │ │ │ └── config-audit-reports-detailed.component.ts │ │ │ │ │ ├── config-audit-reports │ │ │ │ │ │ ├── config-audit-reports.component.html │ │ │ │ │ │ ├── config-audit-reports.component.scss │ │ │ │ │ │ └── config-audit-reports.component.ts │ │ │ │ │ ├── constants │ │ │ │ │ │ ├── cluster-compliance-reports.constants.ts │ │ │ │ │ │ ├── cluster-vulnerability-reports.constants.ts │ │ │ │ │ │ ├── config-audit-reports.constants.ts │ │ │ │ │ │ ├── exposed-secret-reports.constants.ts │ │ │ │ │ │ ├── generic.constants.ts │ │ │ │ │ │ ├── rbac-assessment-reports.constants.ts │ │ │ │ │ │ ├── sbom-reports.constans.ts │ │ │ │ │ │ └── vulnerability-reports.constants.ts │ │ │ │ │ ├── exposed-secret-reports-detailed │ │ │ │ │ │ ├── exposed-secret-reports-detailed.component.html │ │ │ │ │ │ ├── exposed-secret-reports-detailed.component.scss │ │ │ │ │ │ └── exposed-secret-reports-detailed.component.ts │ │ │ │ │ ├── exposed-secret-reports │ │ │ │ │ │ ├── exposed-secret-reports.component.html │ │ │ │ │ │ ├── exposed-secret-reports.component.scss │ │ │ │ │ │ └── exposed-secret-reports.component.ts │ │ │ │ │ ├── rbac-assessment-reports-detailed │ │ │ │ │ │ ├── rbac-assessment-reports-detailed.component.html │ │ │ │ │ │ ├── rbac-assessment-reports-detailed.component.scss │ │ │ │ │ │ └── rbac-assessment-reports-detailed.component.ts │ │ │ │ │ ├── rbac-assessment-reports │ │ │ │ │ │ ├── rbac-assessment-reports.component.html │ │ │ │ │ │ ├── rbac-assessment-reports.component.scss │ │ │ │ │ │ └── rbac-assessment-reports.component.ts │ │ │ │ │ ├── sbom-reports-detailed │ │ │ │ │ │ ├── sbom-reports-detailed.component.html │ │ │ │ │ │ ├── sbom-reports-detailed.component.scss │ │ │ │ │ │ └── sbom-reports-detailed.component.ts │ │ │ │ │ ├── sbom-reports │ │ │ │ │ │ ├── sbom-reports.component.html │ │ │ │ │ │ ├── sbom-reports.component.scss │ │ │ │ │ │ ├── sbom-reports.component.ts │ │ │ │ │ │ └── sbom-reports.types.ts │ │ │ │ │ ├── vulnerability-reports-detailed │ │ │ │ │ │ ├── vulnerability-reports-detailed.component.html │ │ │ │ │ │ ├── vulnerability-reports-detailed.component.scss │ │ │ │ │ │ └── vulnerability-reports-detailed.component.ts │ │ │ │ │ └── vulnerability-reports │ │ │ │ │ │ ├── vulnerability-reports.component.html │ │ │ │ │ │ ├── vulnerability-reports.component.scss │ │ │ │ │ │ └── vulnerability-reports.component.ts │ │ │ │ ├── ui-elements │ │ │ │ │ ├── fcose-help │ │ │ │ │ │ ├── fcose-help.component.html │ │ │ │ │ │ ├── fcose-help.component.scss │ │ │ │ │ │ └── fcose-help.component.ts │ │ │ │ │ ├── fcose │ │ │ │ │ │ ├── fcose.component.html │ │ │ │ │ │ ├── fcose.component.scss │ │ │ │ │ │ ├── fcose.component.ts │ │ │ │ │ │ └── fcose.types.ts │ │ │ │ │ ├── generic-master-detail │ │ │ │ │ │ ├── generic-master-detail.component.html │ │ │ │ │ │ ├── generic-master-detail.component.scss │ │ │ │ │ │ └── generic-master-detail.component.ts │ │ │ │ │ ├── generic-reports-compare │ │ │ │ │ │ ├── generic-reports-compare.component.html │ │ │ │ │ │ ├── generic-reports-compare.component.scss │ │ │ │ │ │ └── generic-reports-compare.component.ts │ │ │ │ │ ├── generic-sbom │ │ │ │ │ │ ├── generic-sbom.component.html │ │ │ │ │ │ ├── generic-sbom.component.scss │ │ │ │ │ │ ├── generic-sbom.component.ts │ │ │ │ │ │ ├── generic-sbom.constans.ts │ │ │ │ │ │ └── generic-sbom.types.ts │ │ │ │ │ ├── icon │ │ │ │ │ │ ├── icon.component.html │ │ │ │ │ │ ├── icon.component.scss │ │ │ │ │ │ └── icon.component.ts │ │ │ │ │ ├── namespace-image-selector │ │ │ │ │ │ ├── namespace-image-selector.component.html │ │ │ │ │ │ ├── namespace-image-selector.component.scss │ │ │ │ │ │ ├── namespace-image-selector.component.ts │ │ │ │ │ │ └── namespace-image-selector.types.ts │ │ │ │ │ ├── nav-menu │ │ │ │ │ │ ├── nav-menu.component.html │ │ │ │ │ │ ├── nav-menu.component.scss │ │ │ │ │ │ └── nav-menu.component.ts │ │ │ │ │ ├── trivy-dependency │ │ │ │ │ │ ├── trivy-dependency.component.html │ │ │ │ │ │ ├── trivy-dependency.component.scss │ │ │ │ │ │ └── trivy-dependency.component.ts │ │ │ │ │ ├── trivy-table │ │ │ │ │ │ ├── trivy-table.component.html │ │ │ │ │ │ ├── trivy-table.component.scss │ │ │ │ │ │ ├── trivy-table.component.ts │ │ │ │ │ │ └── trivy-table.types.ts │ │ │ │ │ └── trivy-toolbar │ │ │ │ │ │ ├── trivy-toolbar.component.html │ │ │ │ │ │ ├── trivy-toolbar.component.scss │ │ │ │ │ │ └── trivy-toolbar.component.ts │ │ │ │ └── utils │ │ │ │ │ ├── color.utils.ts │ │ │ │ │ ├── cron.utils.ts │ │ │ │ │ ├── local-storage.utils.ts │ │ │ │ │ ├── number-string.utils.ts │ │ │ │ │ ├── primeng-chart.utils.ts │ │ │ │ │ ├── primeng-table-state.util.ts │ │ │ │ │ ├── retry-policy.utils.ts │ │ │ │ │ ├── semaphore-status.utils.ts │ │ │ │ │ ├── severity.utils.ts │ │ │ │ │ ├── trivy-table.utils.ts │ │ │ │ │ └── version.utils.ts │ │ │ ├── assets │ │ │ │ ├── angular-js.png │ │ │ │ ├── dotnet.png │ │ │ │ ├── icons │ │ │ │ │ ├── admin_panel_settings.svg │ │ │ │ │ ├── assignment.svg │ │ │ │ │ ├── chat_info.svg │ │ │ │ │ ├── commit.svg │ │ │ │ │ ├── dynamic_feed.svg │ │ │ │ │ ├── graph_2.svg │ │ │ │ │ ├── graph_3.svg │ │ │ │ │ ├── home.svg │ │ │ │ │ ├── key_off.svg │ │ │ │ │ ├── mystery.svg │ │ │ │ │ ├── policy.svg │ │ │ │ │ ├── redo.svg │ │ │ │ │ ├── security.svg │ │ │ │ │ ├── settings.svg │ │ │ │ │ ├── settings_applications.svg │ │ │ │ │ ├── storage.svg │ │ │ │ │ ├── undo.svg │ │ │ │ │ └── visibility.svg │ │ │ │ ├── logo.blurred.png │ │ │ │ ├── logo_AL.ico │ │ │ │ ├── opentelemetry.png │ │ │ │ ├── primeng.png │ │ │ │ ├── tailwind.png │ │ │ │ └── trivy-operator-logo.png │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.scss │ │ │ ├── styles │ │ │ │ ├── p-breadcrumb.scss │ │ │ │ ├── p-card.scss │ │ │ │ ├── p-inputswitch.scss │ │ │ │ ├── p-panel.scss │ │ │ │ └── tailwind.local.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ └── tsconfig.spec.json │ ├── Constants.cs │ ├── Domain │ │ ├── Services │ │ │ ├── Abstractions │ │ │ │ ├── ClusterScopedResourceDomainService.cs │ │ │ │ ├── IClusterScopedResourceQueryDomainService.cs │ │ │ │ ├── IClusterScopedResourceWatchDomainService.cs │ │ │ │ ├── ICustomResourceDefinitionFactory.cs │ │ │ │ ├── INamespacedResourceWatchDomainService.cs │ │ │ │ ├── KubernetesResourceDomainService.cs │ │ │ │ └── NamespacedResourceDomainService.cs │ │ │ ├── ClusterScopedTrivyReportDomainService.cs │ │ │ ├── CustomResourceDefinitionFactory.cs │ │ │ ├── NamespaceDomainService.cs │ │ │ ├── NamespacedTrivyReportDomainService.cs │ │ │ └── StaticNamespaceDomainService.cs │ │ └── Trivy │ │ │ ├── ClusterComplianceReport │ │ │ ├── Check.cs │ │ │ ├── ClusterComplianceReportCr.cs │ │ │ ├── ClusterComplianceReportCrd.cs │ │ │ ├── Compliance.cs │ │ │ ├── Control.cs │ │ │ ├── ControlCheck.cs │ │ │ ├── Spec.cs │ │ │ ├── Status.cs │ │ │ ├── Summary.cs │ │ │ └── SummaryReport.cs │ │ │ ├── ClusterRbacAssessmentReport │ │ │ ├── Check.cs │ │ │ ├── ClusterRbacAssessmentReportCr.cs │ │ │ ├── ClusterRbacAssessmentReportCrd.cs │ │ │ ├── Report.cs │ │ │ ├── Scanner.cs │ │ │ └── Summary.cs │ │ │ ├── ClusterSbomReport │ │ │ ├── Artifact.cs │ │ │ ├── ClusterSbomReportCr.cs │ │ │ ├── ClusterSbomReportCrd.cs │ │ │ ├── Components.cs │ │ │ ├── ComponentsComponent.cs │ │ │ ├── ComponentsMetadata.cs │ │ │ ├── Dependency.cs │ │ │ ├── Property.cs │ │ │ ├── Registry.cs │ │ │ ├── Report.cs │ │ │ ├── Scanner.cs │ │ │ ├── Summary.cs │ │ │ ├── Tools.cs │ │ │ └── ToolsComponent.cs │ │ │ ├── ClusterVulnerabilityReport │ │ │ ├── Artifact.cs │ │ │ ├── ClusterVulnerabilityReportCr.cs │ │ │ ├── ClusterVulnerabilityReportCrd.cs │ │ │ ├── Os.cs │ │ │ ├── Registry.cs │ │ │ ├── Report.cs │ │ │ ├── Scanner.cs │ │ │ ├── Summary.cs │ │ │ └── Vulnerability.cs │ │ │ ├── ConfigAuditReport │ │ │ ├── Check.cs │ │ │ ├── ConfigAuditReportCr.cs │ │ │ ├── ConfigAuditReportCrd.cs │ │ │ ├── Report.cs │ │ │ ├── Scanner.cs │ │ │ └── Summary.cs │ │ │ ├── CustomResources │ │ │ └── Abstractions │ │ │ │ ├── CustomResource.cs │ │ │ │ ├── CustomResourceDefinition.cs │ │ │ │ └── CustomResourceList.cs │ │ │ ├── ExposedSecretReport │ │ │ ├── Artifact.cs │ │ │ ├── ExposedSecretReportCr.cs │ │ │ ├── ExposedSecretReportCrd.cs │ │ │ ├── Registry.cs │ │ │ ├── Report.cs │ │ │ ├── Scanner.cs │ │ │ ├── Secret.cs │ │ │ └── Summary.cs │ │ │ ├── RbacAssessmentReport │ │ │ ├── Check.cs │ │ │ ├── RbacAssessmentReportCr.cs │ │ │ ├── RbacAssessmentReportCrd.cs │ │ │ ├── Report.cs │ │ │ ├── Scanner.cs │ │ │ └── Summary.cs │ │ │ ├── SbomReport │ │ │ ├── Artifact.cs │ │ │ ├── Components.cs │ │ │ ├── ComponentsComponent.cs │ │ │ ├── ComponentsMetadata.cs │ │ │ ├── Dependency.cs │ │ │ ├── License.cs │ │ │ ├── Property.cs │ │ │ ├── Registry.cs │ │ │ ├── Report.cs │ │ │ ├── SbomReportCr.cs │ │ │ ├── SbomReportCrd.cs │ │ │ ├── Scanner.cs │ │ │ ├── Summary.cs │ │ │ ├── Supplier.cs │ │ │ ├── Tools.cs │ │ │ └── ToolsComponent.cs │ │ │ ├── TrivyDomainUtils.cs │ │ │ ├── TrivyReport │ │ │ └── Abstractions │ │ │ │ ├── IArtifact.cs │ │ │ │ ├── IRegistry.cs │ │ │ │ └── ITrivyReportWithImage.cs │ │ │ ├── TrivySeverity.cs │ │ │ └── VulnerabilityReport │ │ │ ├── Artifact.cs │ │ │ ├── Os.cs │ │ │ ├── Registry.cs │ │ │ ├── Report.cs │ │ │ ├── Scanner.cs │ │ │ ├── Summary.cs │ │ │ ├── Vulnerability.cs │ │ │ ├── VulnerabilityReportCr.cs │ │ │ └── VulnerabilityReportCrd.cs │ ├── Infrastructure │ │ ├── Abstractions │ │ │ ├── IConcurrentCache.cs │ │ │ ├── IConcurrentDictionaryCache.cs │ │ │ ├── IGitHubClient.cs │ │ │ ├── IK8sClientFactory.cs │ │ │ └── IMetricsService.cs │ │ ├── Clients │ │ │ ├── GitHubClient.cs │ │ │ ├── GitHubReleaseCacheTimedHostedService.cs │ │ │ ├── KubernetesClientFactory.cs │ │ │ ├── MetricsService.cs │ │ │ └── Models │ │ │ │ └── GitHubRelease.cs │ │ └── Services │ │ │ ├── ConcurrentCache.cs │ │ │ ├── ConcurrentDictionaryCache.cs │ │ │ └── DictionaryCounter.cs │ ├── Pages │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ └── _ViewImports.cshtml │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── TrivyOperator.Dashboard.csproj │ ├── Utils │ │ ├── CacheUtils.cs │ │ ├── GuidUtils.cs │ │ ├── JsonConverters │ │ │ ├── DateTimeJsonConverter.cs │ │ │ ├── DateTimeNullableJsonConverter.cs │ │ │ ├── FilteredStringConverter.cs │ │ │ └── StringInternalsJsonConverter.cs │ │ ├── PortUtils.cs │ │ ├── RetryDurationCalculator.cs │ │ └── TrivyUtils.cs │ ├── appsettings.json │ ├── serilog.config.json │ └── wwwroot │ │ └── favicon.ico └── global.json └── tools └── k8s.create.kubeconfig.for.sa.ps1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.github/workflows/helm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/.github/workflows/helm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEV_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/DEV_NOTES.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/SECURITY.md -------------------------------------------------------------------------------- /deploy/helm/trivy-operator-dashboard/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/deploy/helm/trivy-operator-dashboard/.helmignore -------------------------------------------------------------------------------- /deploy/helm/trivy-operator-dashboard/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/deploy/helm/trivy-operator-dashboard/Chart.yaml -------------------------------------------------------------------------------- /deploy/helm/trivy-operator-dashboard/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/deploy/helm/trivy-operator-dashboard/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/helm/trivy-operator-dashboard/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/deploy/helm/trivy-operator-dashboard/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/helm/trivy-operator-dashboard/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/deploy/helm/trivy-operator-dashboard/templates/clusterrole.yaml -------------------------------------------------------------------------------- /deploy/helm/trivy-operator-dashboard/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/deploy/helm/trivy-operator-dashboard/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /deploy/helm/trivy-operator-dashboard/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/deploy/helm/trivy-operator-dashboard/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/helm/trivy-operator-dashboard/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/deploy/helm/trivy-operator-dashboard/templates/ingress.yaml -------------------------------------------------------------------------------- /deploy/helm/trivy-operator-dashboard/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/deploy/helm/trivy-operator-dashboard/templates/service.yaml -------------------------------------------------------------------------------- /deploy/helm/trivy-operator-dashboard/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/deploy/helm/trivy-operator-dashboard/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /deploy/helm/trivy-operator-dashboard/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/deploy/helm/trivy-operator-dashboard/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /deploy/helm/trivy-operator-dashboard/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/deploy/helm/trivy-operator-dashboard/values.yaml -------------------------------------------------------------------------------- /deploy/static/trivy-operator-dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/deploy/static/trivy-operator-dashboard.yaml -------------------------------------------------------------------------------- /docs/imgs/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/docs/imgs/about.png -------------------------------------------------------------------------------- /docs/imgs/alerts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/docs/imgs/alerts.png -------------------------------------------------------------------------------- /docs/imgs/combo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/docs/imgs/combo.png -------------------------------------------------------------------------------- /docs/imgs/logo.blurred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/docs/imgs/logo.blurred.png -------------------------------------------------------------------------------- /docs/imgs/sbom-compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/docs/imgs/sbom-compare.png -------------------------------------------------------------------------------- /docs/imgs/sbom-graph-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/docs/imgs/sbom-graph-toolbar.png -------------------------------------------------------------------------------- /docs/imgs/sbom-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/docs/imgs/sbom-graph.png -------------------------------------------------------------------------------- /docs/imgs/sbom-img-selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/docs/imgs/sbom-img-selection.png -------------------------------------------------------------------------------- /docs/imgs/sbom-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/docs/imgs/sbom-info.png -------------------------------------------------------------------------------- /docs/imgs/sbom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/docs/imgs/sbom.png -------------------------------------------------------------------------------- /docs/imgs/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/docs/imgs/settings.png -------------------------------------------------------------------------------- /docs/imgs/trivy-report-dependency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/docs/imgs/trivy-report-dependency.png -------------------------------------------------------------------------------- /docs/imgs/vr-combined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/docs/imgs/vr-combined.png -------------------------------------------------------------------------------- /docs/imgs/vr-compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/docs/imgs/vr-compare.png -------------------------------------------------------------------------------- /docs/imgs/vr-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/docs/imgs/vr-dark.png -------------------------------------------------------------------------------- /docs/imgs/vr-detailed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/docs/imgs/vr-detailed.png -------------------------------------------------------------------------------- /docs/imgs/vr-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/docs/imgs/vr-filter.png -------------------------------------------------------------------------------- /docs/imgs/vr-home-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/docs/imgs/vr-home-details.png -------------------------------------------------------------------------------- /docs/imgs/vr-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/docs/imgs/vr-home.png -------------------------------------------------------------------------------- /docs/imgs/vr-image-usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/docs/imgs/vr-image-usage.png -------------------------------------------------------------------------------- /docs/imgs/watcher-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/docs/imgs/watcher-status.png -------------------------------------------------------------------------------- /docs/install-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/docs/install-doc.md -------------------------------------------------------------------------------- /docs/main-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/docs/main-doc.md -------------------------------------------------------------------------------- /docs/snippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/docs/snippets.md -------------------------------------------------------------------------------- /docs/todo-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/docs/todo-doc.md -------------------------------------------------------------------------------- /media/davinci.projects/trivy.timeline.drp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/media/davinci.projects/trivy.timeline.drp -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard.sln -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Controllers/AlertsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Controllers/AlertsController.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Controllers/AppVersionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Controllers/AppVersionController.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Controllers/BackendSettingsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Controllers/BackendSettingsController.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Controllers/ClusterComplianceReportController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Controllers/ClusterComplianceReportController.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Controllers/ClusterRbacAssessmentReportController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Controllers/ClusterRbacAssessmentReportController.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Controllers/ClusterSbomReportController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Controllers/ClusterSbomReportController.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Controllers/ClusterVulnerabilityReportController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Controllers/ClusterVulnerabilityReportController.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Controllers/ConfigAuditReportController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Controllers/ConfigAuditReportController.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Controllers/ExposedSecretReportController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Controllers/ExposedSecretReportController.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Controllers/NamespacesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Controllers/NamespacesController.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Controllers/RawDomainController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Controllers/RawDomainController.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Controllers/RbacAssessmentReportController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Controllers/RbacAssessmentReportController.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Controllers/SbomReportController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Controllers/SbomReportController.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Controllers/SeveritiesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Controllers/SeveritiesController.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Controllers/TrivyReportDependencyController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Controllers/TrivyReportDependencyController.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Controllers/VulnerabilityReportsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Controllers/VulnerabilityReportsController.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Controllers/WatcherStatusController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Controllers/WatcherStatusController.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/HealthChecks/WatchersLivenessHealthCheck .cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/HealthChecks/WatchersLivenessHealthCheck .cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/HealthChecks/WatchersReadinessHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/HealthChecks/WatchersReadinessHealthCheck.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Hubs/AlertsHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Hubs/AlertsHub.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Internals/MultiBucketTimedHostedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Internals/MultiBucketTimedHostedService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Internals/SingleBucketTimedHostedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Internals/SingleBucketTimedHostedService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Models/Abstracts/ISbomReportDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Models/Abstracts/ISbomReportDto.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Models/AlertDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Models/AlertDto.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Models/AppVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Models/AppVersion.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Models/BackendSettingsDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Models/BackendSettingsDto.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Models/ClusterComplianceReportDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Models/ClusterComplianceReportDto.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Models/ClusterRbacAssessmentReportDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Models/ClusterRbacAssessmentReportDto.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Models/ClusterSbomReportDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Models/ClusterSbomReportDto.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Models/ClusterVulnerabilityReportDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Models/ClusterVulnerabilityReportDto.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Models/ConfigAuditReportDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Models/ConfigAuditReportDto.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Models/CycloneDxBom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Models/CycloneDxBom.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Models/ExposedSecretReportDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Models/ExposedSecretReportDto.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Models/GitHubReleaseDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Models/GitHubReleaseDto.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Models/RbacAssessmentReportDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Models/RbacAssessmentReportDto.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Models/SbomReportDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Models/SbomReportDto.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Models/SeverityDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Models/SeverityDto.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Models/SpdxBom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Models/SpdxBom.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Models/TrivyReportDependencyDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Models/TrivyReportDependencyDto.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Models/VulnerabilityReportDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Models/VulnerabilityReportDto.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Models/WatcherStatusDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Models/WatcherStatusDto.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Alerts/Abstractions/IAlertsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Alerts/Abstractions/IAlertsService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Alerts/Alert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Alerts/Alert.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Alerts/AlertsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Alerts/AlertsService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Alerts/Severity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Alerts/Severity.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/AppVersions/Abstractions/IAppVersionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/AppVersions/Abstractions/IAppVersionService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/AppVersions/AppVersionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/AppVersions/AppVersionService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/BackendSettings/Abstractions/IBackendSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/BackendSettings/Abstractions/IBackendSettingsService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/BackendSettings/BackendSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/BackendSettings/BackendSettingsService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/BackgroundQueues/Abstractions/IBackgroundQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/BackgroundQueues/Abstractions/IBackgroundQueue.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/BackgroundQueues/Abstractions/IKubernetesBackgroundQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/BackgroundQueues/Abstractions/IKubernetesBackgroundQueue.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/BackgroundQueues/BackgroundQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/BackgroundQueues/BackgroundQueue.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/BackgroundQueues/KubernetesBackgroundQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/BackgroundQueues/KubernetesBackgroundQueue.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/BuilderServicesExtensions/BuilderServicesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/BuilderServicesExtensions/BuilderServicesExtensions.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/CacheRefreshers/CacheRefresher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/CacheRefreshers/CacheRefresher.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/CacheRefreshers/NamespaceCacheRefresher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/CacheRefreshers/NamespaceCacheRefresher.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Common/OperationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Common/OperationResult.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/KubernetesEventCoordinators/Abstractions/IClusterScopedKubernetesEventCoordinator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/KubernetesEventCoordinators/Abstractions/IClusterScopedKubernetesEventCoordinator.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/KubernetesEventCoordinators/Abstractions/IKubernetesEventCoordinator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/KubernetesEventCoordinators/Abstractions/IKubernetesEventCoordinator.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/KubernetesEventCoordinators/Abstractions/INamespacedKubernetesEventCoordinator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/KubernetesEventCoordinators/Abstractions/INamespacedKubernetesEventCoordinator.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/KubernetesEventCoordinators/ClusterScopedKubernetesEventCoordinator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/KubernetesEventCoordinators/ClusterScopedKubernetesEventCoordinator.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/KubernetesEventCoordinators/KubernetesEventCoordinator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/KubernetesEventCoordinators/KubernetesEventCoordinator.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/KubernetesEventCoordinators/NamespacedKubernetesEventCoordinator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/KubernetesEventCoordinators/NamespacedKubernetesEventCoordinator.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/KubernetesEventCoordinatorsHandlerHostedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/KubernetesEventCoordinatorsHandlerHostedService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/KubernetesEventDispatchers/Abstractions/IKubernetesEventDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/KubernetesEventDispatchers/Abstractions/IKubernetesEventDispatcher.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/KubernetesEventDispatchers/Abstractions/IKubernetesEventProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/KubernetesEventDispatchers/Abstractions/IKubernetesEventProcessor.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/KubernetesEventDispatchers/KubernetesEventDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/KubernetesEventDispatchers/KubernetesEventDispatcher.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Namespaces/Abstractions/INamespaceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Namespaces/Abstractions/INamespaceService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Namespaces/NamespaceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Namespaces/NamespaceService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Options/BackgroundQueueOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Options/BackgroundQueueOptions.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Options/FileExportOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Options/FileExportOptions.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Options/GitHubOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Options/GitHubOptions.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Options/KubernetesOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Options/KubernetesOptions.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Options/WatchersOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Options/WatchersOptions.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/RawDomainQueryServices/Abstracts/IRawDomainQueryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/RawDomainQueryServices/Abstracts/IRawDomainQueryService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/RawDomainQueryServices/CacheNotRegisteredException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/RawDomainQueryServices/CacheNotRegisteredException.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/RawDomainQueryServices/RawDomainQueryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/RawDomainQueryServices/RawDomainQueryService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Trivy/ClusterComplianceReport/Abstractions/IClusterComplianceReportService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Trivy/ClusterComplianceReport/Abstractions/IClusterComplianceReportService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Trivy/ClusterComplianceReport/ClusterComplianceReportNullService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Trivy/ClusterComplianceReport/ClusterComplianceReportNullService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Trivy/ClusterComplianceReport/ClusterComplianceReportService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Trivy/ClusterComplianceReport/ClusterComplianceReportService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Trivy/ClusterRbacAssessmentReport/Abstractions/IClusterRbacAssessmentReportService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Trivy/ClusterRbacAssessmentReport/Abstractions/IClusterRbacAssessmentReportService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Trivy/ClusterRbacAssessmentReport/ClusterRbacAssessmentReportNullService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Trivy/ClusterRbacAssessmentReport/ClusterRbacAssessmentReportNullService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Trivy/ClusterRbacAssessmentReport/ClusterRbacAssessmentReportService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Trivy/ClusterRbacAssessmentReport/ClusterRbacAssessmentReportService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Trivy/ClusterSbomReport/Abstractions/IClusterSbomReportService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Trivy/ClusterSbomReport/Abstractions/IClusterSbomReportService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Trivy/ClusterSbomReport/ClusterSbomReportNullService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Trivy/ClusterSbomReport/ClusterSbomReportNullService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Trivy/ClusterSbomReport/ClusterSbomReportService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Trivy/ClusterSbomReport/ClusterSbomReportService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Trivy/ClusterVulnerabilityReport/Abstractions/IClusterVulnerabilityReportService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Trivy/ClusterVulnerabilityReport/Abstractions/IClusterVulnerabilityReportService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Trivy/ClusterVulnerabilityReport/ClusterVulnerabilityReportNullService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Trivy/ClusterVulnerabilityReport/ClusterVulnerabilityReportNullService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Trivy/ClusterVulnerabilityReport/ClusterVulnerabilityReportService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Trivy/ClusterVulnerabilityReport/ClusterVulnerabilityReportService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Trivy/ConfigAuditReport/Abstractions/IConfigAuditReportService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Trivy/ConfigAuditReport/Abstractions/IConfigAuditReportService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Trivy/ConfigAuditReport/ConfigAuditReportNullService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Trivy/ConfigAuditReport/ConfigAuditReportNullService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Trivy/ConfigAuditReport/ConfigAuditReportService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Trivy/ConfigAuditReport/ConfigAuditReportService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Trivy/ExposedSecretReport/Abstractions/IExposedSecretReportService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Trivy/ExposedSecretReport/Abstractions/IExposedSecretReportService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Trivy/ExposedSecretReport/ExposedSecretReportNullService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Trivy/ExposedSecretReport/ExposedSecretReportNullService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Trivy/ExposedSecretReport/ExposedSecretReportService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Trivy/ExposedSecretReport/ExposedSecretReportService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Trivy/ImageGroupKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Trivy/ImageGroupKey.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Trivy/RbacAssessmentReport/Abstractions/IRbacAssessmentReportService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Trivy/RbacAssessmentReport/Abstractions/IRbacAssessmentReportService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Trivy/RbacAssessmentReport/RbacAssessmentReportNullService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Trivy/RbacAssessmentReport/RbacAssessmentReportNullService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Trivy/RbacAssessmentReport/RbacAssessmentReportService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Trivy/RbacAssessmentReport/RbacAssessmentReportService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Trivy/SbomReport/Abstractions/ISbomReportService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Trivy/SbomReport/Abstractions/ISbomReportService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Trivy/SbomReport/SbomReportNullService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Trivy/SbomReport/SbomReportNullService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Trivy/SbomReport/SbomReportService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Trivy/SbomReport/SbomReportService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Trivy/VulnerabilityReport/Abstractions/IVulnerabilityReportService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Trivy/VulnerabilityReport/Abstractions/IVulnerabilityReportService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Trivy/VulnerabilityReport/VulnerabilityReportNullService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Trivy/VulnerabilityReport/VulnerabilityReportNullService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Trivy/VulnerabilityReport/VulnerabilityReportService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Trivy/VulnerabilityReport/VulnerabilityReportService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/TrivyReportDependencies/Abstractions/ITrivyReportDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/TrivyReportDependencies/Abstractions/ITrivyReportDependency.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/TrivyReportDependencies/TrivyReportDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/TrivyReportDependencies/TrivyReportDependency.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/WatcherEvents/Abstractions/IWatcherEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/WatcherEvents/Abstractions/IWatcherEvent.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/WatcherEvents/WatcherEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/WatcherEvents/WatcherEvent.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/WatcherEvents/WatcherEventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/WatcherEvents/WatcherEventType.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/WatcherStateAlertRefreshers/WatcherStateAlertRefresh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/WatcherStateAlertRefreshers/WatcherStateAlertRefresh.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/WatcherStateCacheTimedHostedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/WatcherStateCacheTimedHostedService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/WatcherStates/Abstractions/IWatcherState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/WatcherStates/Abstractions/IWatcherState.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/WatcherStates/Abstractions/IWatcherStatusService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/WatcherStates/Abstractions/IWatcherStatusService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/WatcherStates/StaleWatcheCacheException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/WatcherStates/StaleWatcheCacheException.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/WatcherStates/WatcherState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/WatcherStates/WatcherState.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/WatcherStates/WatcherStateInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/WatcherStates/WatcherStateInfo.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/WatcherStates/WatcherStateStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/WatcherStates/WatcherStateStatus.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/WatcherStates/WatcherStatusService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/WatcherStates/WatcherStatusService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Watchers/Abstractions/IClusterScopedWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Watchers/Abstractions/IClusterScopedWatcher.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Watchers/Abstractions/IKubernetesWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Watchers/Abstractions/IKubernetesWatcher.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Watchers/Abstractions/INamespacedWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Watchers/Abstractions/INamespacedWatcher.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Watchers/Abstractions/KubernetesWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Watchers/Abstractions/KubernetesWatcher.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Watchers/ClusterScopedWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Watchers/ClusterScopedWatcher.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Watchers/NamespacedWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Watchers/NamespacedWatcher.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Watchers/SbomReportWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Watchers/SbomReportWatcher.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Watchers/StaticNamespaceWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Watchers/StaticNamespaceWatcher.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Application/Services/Watchers/TaskWithCts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Application/Services/Watchers/TaskWithCts.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/.editorconfig -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/.gitignore -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/.postcssrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/.postcssrc.json -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/.prettierignore: -------------------------------------------------------------------------------- 1 | /.angular 2 | /dist 3 | /coverage 4 | /node_modules 5 | /src/api 6 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/.prettierrc.js -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/angular.json -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/backend-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/backend-api.yaml -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/build/preBuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/build/preBuild.js -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/eslint.config.js -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/karma.conf.js -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/package-lock.json -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/package.json -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/proxy.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/proxy.conf.js -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/abstracts/reactive-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/abstracts/reactive-map.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/app.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/app.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/app.config.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/app.routes.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/app.server.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/app.server.module.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/constants/migration.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/constants/migration.constants.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/about/about.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pages/about/about.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/about/about.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/about/about.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pages/about/about.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/about/about.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pages/about/about.types.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/alerts/alerts.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pages/alerts/alerts.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/alerts/alerts.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/alerts/alerts.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pages/alerts/alerts.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/constants/watcher-state.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pages/constants/watcher-state.constants.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/dashboard-cluster-rbac-assessment-reports/dashboard-cluster-rbac-assessment-reports.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/dashboard-cluster-rbac-assessment-reports/dashboard-cluster-rbac-assessment-reports.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/dashboard-cluster-rbac-assessment-reports/dashboard-cluster-rbac-assessment-reports.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/dashboard-cluster-rbac-assessment-reports/dashboard-cluster-rbac-assessment-reports.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/dashboard-cluster-rbac-assessment-reports/dashboard-cluster-rbac-assessment-reports.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/dashboard-config-audit-reports/dashboard-config-audit-reports.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/dashboard-config-audit-reports/dashboard-config-audit-reports.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/dashboard-config-audit-reports/dashboard-config-audit-reports.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/dashboard-config-audit-reports/dashboard-config-audit-reports.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/dashboard-config-audit-reports/dashboard-config-audit-reports.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/dashboard-config-audit-reports/dashboard-config-audit-reports.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/dashboard-config-audit-reports/dashboard-config-audit-reports.types.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/dashboard-exposed-secret-reports/dashboard-exposed-secret-reports.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/dashboard-exposed-secret-reports/dashboard-exposed-secret-reports.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/dashboard-exposed-secret-reports/dashboard-exposed-secret-reports.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/dashboard-exposed-secret-reports/dashboard-exposed-secret-reports.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/dashboard-exposed-secret-reports/dashboard-exposed-secret-reports.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/dashboard-exposed-secret-reports/dashboard-exposed-secret-reports.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/dashboard-exposed-secret-reports/dashboard-exposed-secret-reports.types.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/dashboard-vulnerability-reports/dashboard-vulnerability-reports.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/dashboard-vulnerability-reports/dashboard-vulnerability-reports.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/dashboard-vulnerability-reports/dashboard-vulnerability-reports.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/dashboard-vulnerability-reports/dashboard-vulnerability-reports.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/dashboard-vulnerability-reports/dashboard-vulnerability-reports.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/dashboard-vulnerability-reports/dashboard-vulnerability-reports.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/dashboard-vulnerability-reports/dashboard-vulnerability-reports.types.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/home.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/home.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/home.component.scss -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pages/home/home.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/settings/settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pages/settings/settings.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/settings/settings.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/settings/settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pages/settings/settings.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/settings/settings.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pages/settings/settings.types.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/watcher-state/watcher-state.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pages/watcher-state/watcher-state.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/watcher-state/watcher-state.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pages/watcher-state/watcher-state.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pages/watcher-state/watcher-state.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pipes/boolean-css-style.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pipes/boolean-css-style.pipe.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pipes/capitalize-first.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pipes/capitalize-first.pipe.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pipes/cell-row-array.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pipes/cell-row-array.pipe.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pipes/cron.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pipes/cron.pipe.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pipes/generic-object-array-summary.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pipes/generic-object-array-summary.pipe.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pipes/line-height.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pipes/line-height.pipe.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pipes/local-time.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pipes/local-time.pipe.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pipes/semaphore-css-style-by-name.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pipes/semaphore-css-style-by-name.pipe.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pipes/severity-css-style-by-id.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pipes/severity-css-style-by-id.pipe.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pipes/severity-name-by-id.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pipes/severity-name-by-id.pipe.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pipes/severity-names-max-display.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pipes/severity-names-max-display.pipe.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pipes/un-pascal-case.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pipes/un-pascal-case.pipe.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/pipes/vulnerability-count.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/pipes/vulnerability-count.pipe.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/services/alerts.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/services/alerts.service.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/services/dark-mode.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/services/dark-mode.service.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/services/main-app-init.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/services/main-app-init.service.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/services/migration.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/services/migration.service.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/services/router-event-emitter.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/services/router-event-emitter.service.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/services/settings.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/services/settings.service.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/services/title.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/services/title.service.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/tests/tests.component.html: -------------------------------------------------------------------------------- 1 |
Test works
2 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/tests/tests.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/tests/tests.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/tests/tests.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/tests/tests.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/tests/tests.pipe.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/themes/trivy-operator-dashboard.preset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/themes/trivy-operator-dashboard.preset.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/themes/trivy-operator-dashboard.variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/themes/trivy-operator-dashboard.variables.css -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/abstracts/trivy-report-image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/abstracts/trivy-report-image.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/abstracts/trivy-report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/abstracts/trivy-report.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-compliance-reports-detailed/cluster-compliance-reports-detailed.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-compliance-reports-detailed/cluster-compliance-reports-detailed.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-compliance-reports-detailed/cluster-compliance-reports-detailed.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-compliance-reports-detailed/cluster-compliance-reports-detailed.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-compliance-reports-detailed/cluster-compliance-reports-detailed.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-compliance-reports/cluster-compliance-reports.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-compliance-reports/cluster-compliance-reports.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-compliance-reports/cluster-compliance-reports.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-compliance-reports/cluster-compliance-reports.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-compliance-reports/cluster-compliance-reports.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-rbac-assessment-reports-detailed/cluster-rbac-assessment-reports-detailed.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-rbac-assessment-reports-detailed/cluster-rbac-assessment-reports-detailed.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-rbac-assessment-reports-detailed/cluster-rbac-assessment-reports-detailed.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-rbac-assessment-reports-detailed/cluster-rbac-assessment-reports-detailed.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-rbac-assessment-reports-detailed/cluster-rbac-assessment-reports-detailed.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-rbac-assessment-reports/cluster-rbac-assessment-reports.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-rbac-assessment-reports/cluster-rbac-assessment-reports.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-rbac-assessment-reports/cluster-rbac-assessment-reports.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-rbac-assessment-reports/cluster-rbac-assessment-reports.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-rbac-assessment-reports/cluster-rbac-assessment-reports.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-sbom-reports-detailed/cluster-sbom-reports-detailed.component.html: -------------------------------------------------------------------------------- 1 |cluster-sbom-reports-detailed works!
2 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-sbom-reports-detailed/cluster-sbom-reports-detailed.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-sbom-reports-detailed/cluster-sbom-reports-detailed.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-sbom-reports-detailed/cluster-sbom-reports-detailed.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-sbom-reports/cluster-sbom-reports.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-sbom-reports/cluster-sbom-reports.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-sbom-reports/cluster-sbom-reports.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-sbom-reports/cluster-sbom-reports.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-sbom-reports/cluster-sbom-reports.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-vulnerability-reports-detailed/cluster-vulnerability-reports-detailed.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-vulnerability-reports-detailed/cluster-vulnerability-reports-detailed.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-vulnerability-reports-detailed/cluster-vulnerability-reports-detailed.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-vulnerability-reports-detailed/cluster-vulnerability-reports-detailed.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-vulnerability-reports-detailed/cluster-vulnerability-reports-detailed.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-vulnerability-reports/cluster-vulnerability-reports.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-vulnerability-reports/cluster-vulnerability-reports.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-vulnerability-reports/cluster-vulnerability-reports.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-vulnerability-reports/cluster-vulnerability-reports.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/cluster-vulnerability-reports/cluster-vulnerability-reports.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/config-audit-reports-detailed/config-audit-reports-detailed.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/config-audit-reports-detailed/config-audit-reports-detailed.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/config-audit-reports-detailed/config-audit-reports-detailed.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/config-audit-reports-detailed/config-audit-reports-detailed.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/config-audit-reports-detailed/config-audit-reports-detailed.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/config-audit-reports/config-audit-reports.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/config-audit-reports/config-audit-reports.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/config-audit-reports/config-audit-reports.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/config-audit-reports/config-audit-reports.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/config-audit-reports/config-audit-reports.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/constants/cluster-compliance-reports.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/constants/cluster-compliance-reports.constants.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/constants/cluster-vulnerability-reports.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/constants/cluster-vulnerability-reports.constants.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/constants/config-audit-reports.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/constants/config-audit-reports.constants.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/constants/exposed-secret-reports.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/constants/exposed-secret-reports.constants.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/constants/generic.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/constants/generic.constants.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/constants/rbac-assessment-reports.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/constants/rbac-assessment-reports.constants.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/constants/sbom-reports.constans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/constants/sbom-reports.constans.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/constants/vulnerability-reports.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/constants/vulnerability-reports.constants.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/exposed-secret-reports-detailed/exposed-secret-reports-detailed.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/exposed-secret-reports-detailed/exposed-secret-reports-detailed.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/exposed-secret-reports-detailed/exposed-secret-reports-detailed.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/exposed-secret-reports-detailed/exposed-secret-reports-detailed.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/exposed-secret-reports-detailed/exposed-secret-reports-detailed.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/exposed-secret-reports/exposed-secret-reports.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/exposed-secret-reports/exposed-secret-reports.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/exposed-secret-reports/exposed-secret-reports.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/exposed-secret-reports/exposed-secret-reports.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/exposed-secret-reports/exposed-secret-reports.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/rbac-assessment-reports-detailed/rbac-assessment-reports-detailed.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/rbac-assessment-reports-detailed/rbac-assessment-reports-detailed.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/rbac-assessment-reports-detailed/rbac-assessment-reports-detailed.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/rbac-assessment-reports-detailed/rbac-assessment-reports-detailed.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/rbac-assessment-reports-detailed/rbac-assessment-reports-detailed.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/rbac-assessment-reports/rbac-assessment-reports.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/rbac-assessment-reports/rbac-assessment-reports.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/rbac-assessment-reports/rbac-assessment-reports.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/rbac-assessment-reports/rbac-assessment-reports.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/rbac-assessment-reports/rbac-assessment-reports.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/sbom-reports-detailed/sbom-reports-detailed.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/sbom-reports-detailed/sbom-reports-detailed.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/sbom-reports-detailed/sbom-reports-detailed.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/sbom-reports-detailed/sbom-reports-detailed.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/sbom-reports-detailed/sbom-reports-detailed.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/sbom-reports/sbom-reports.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/sbom-reports/sbom-reports.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/sbom-reports/sbom-reports.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/sbom-reports/sbom-reports.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/sbom-reports/sbom-reports.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/sbom-reports/sbom-reports.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/sbom-reports/sbom-reports.types.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/vulnerability-reports-detailed/vulnerability-reports-detailed.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/vulnerability-reports-detailed/vulnerability-reports-detailed.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/vulnerability-reports-detailed/vulnerability-reports-detailed.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/vulnerability-reports-detailed/vulnerability-reports-detailed.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/vulnerability-reports-detailed/vulnerability-reports-detailed.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/vulnerability-reports/vulnerability-reports.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/vulnerability-reports/vulnerability-reports.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/vulnerability-reports/vulnerability-reports.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/vulnerability-reports/vulnerability-reports.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/trivy-reports/vulnerability-reports/vulnerability-reports.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/fcose-help/fcose-help.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/fcose-help/fcose-help.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/fcose-help/fcose-help.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/fcose-help/fcose-help.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/fcose-help/fcose-help.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/fcose/fcose.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/fcose/fcose.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/fcose/fcose.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/fcose/fcose.component.scss -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/fcose/fcose.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/fcose/fcose.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/fcose/fcose.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/fcose/fcose.types.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/generic-master-detail/generic-master-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/generic-master-detail/generic-master-detail.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/generic-master-detail/generic-master-detail.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/generic-master-detail/generic-master-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/generic-master-detail/generic-master-detail.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/generic-reports-compare/generic-reports-compare.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/generic-reports-compare/generic-reports-compare.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/generic-reports-compare/generic-reports-compare.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/generic-reports-compare/generic-reports-compare.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/generic-reports-compare/generic-reports-compare.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/generic-sbom/generic-sbom.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/generic-sbom/generic-sbom.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/generic-sbom/generic-sbom.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/generic-sbom/generic-sbom.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/generic-sbom/generic-sbom.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/generic-sbom/generic-sbom.constans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/generic-sbom/generic-sbom.constans.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/generic-sbom/generic-sbom.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/generic-sbom/generic-sbom.types.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/icon/icon.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/icon/icon.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/icon/icon.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/icon/icon.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/icon/icon.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/namespace-image-selector/namespace-image-selector.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/namespace-image-selector/namespace-image-selector.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/namespace-image-selector/namespace-image-selector.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/namespace-image-selector/namespace-image-selector.component.scss -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/namespace-image-selector/namespace-image-selector.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/namespace-image-selector/namespace-image-selector.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/namespace-image-selector/namespace-image-selector.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/namespace-image-selector/namespace-image-selector.types.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/nav-menu/nav-menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/nav-menu/nav-menu.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/nav-menu/nav-menu.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/nav-menu/nav-menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/nav-menu/nav-menu.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/trivy-dependency/trivy-dependency.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/trivy-dependency/trivy-dependency.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/trivy-dependency/trivy-dependency.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/trivy-dependency/trivy-dependency.component.scss -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/trivy-dependency/trivy-dependency.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/trivy-dependency/trivy-dependency.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/trivy-table/trivy-table.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/trivy-table/trivy-table.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/trivy-table/trivy-table.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/trivy-table/trivy-table.component.scss -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/trivy-table/trivy-table.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/trivy-table/trivy-table.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/trivy-table/trivy-table.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/trivy-table/trivy-table.types.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/trivy-toolbar/trivy-toolbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/trivy-toolbar/trivy-toolbar.component.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/trivy-toolbar/trivy-toolbar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/trivy-toolbar/trivy-toolbar.component.scss -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/trivy-toolbar/trivy-toolbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/ui-elements/trivy-toolbar/trivy-toolbar.component.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/utils/color.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/utils/color.utils.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/utils/cron.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/utils/cron.utils.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/utils/local-storage.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/utils/local-storage.utils.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/utils/number-string.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/utils/number-string.utils.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/utils/primeng-chart.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/utils/primeng-chart.utils.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/utils/primeng-table-state.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/utils/primeng-table-state.util.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/utils/retry-policy.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/utils/retry-policy.utils.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/utils/semaphore-status.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/utils/semaphore-status.utils.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/utils/severity.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/utils/severity.utils.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/utils/trivy-table.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/utils/trivy-table.utils.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/app/utils/version.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/app/utils/version.utils.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/assets/angular-js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/assets/angular-js.png -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/assets/dotnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/assets/dotnet.png -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/admin_panel_settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/admin_panel_settings.svg -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/assignment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/assignment.svg -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/chat_info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/chat_info.svg -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/commit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/commit.svg -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/dynamic_feed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/dynamic_feed.svg -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/graph_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/graph_2.svg -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/graph_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/graph_3.svg -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/home.svg -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/key_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/key_off.svg -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/mystery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/mystery.svg -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/policy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/policy.svg -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/redo.svg -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/security.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/security.svg -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/settings.svg -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/settings_applications.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/settings_applications.svg -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/storage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/storage.svg -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/undo.svg -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/visibility.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/assets/icons/visibility.svg -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/assets/logo.blurred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/assets/logo.blurred.png -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/assets/logo_AL.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/assets/logo_AL.ico -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/assets/opentelemetry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/assets/opentelemetry.png -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/assets/primeng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/assets/primeng.png -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/assets/tailwind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/assets/tailwind.png -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/assets/trivy-operator-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/assets/trivy-operator-logo.png -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | baseUrl: '', 4 | }; 5 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/environments/environment.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/index.html -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/main.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/polyfills.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/styles.scss -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/styles/p-breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/styles/p-breadcrumb.scss -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/styles/p-card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/styles/p-card.scss -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/styles/p-inputswitch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/styles/p-inputswitch.scss -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/styles/p-panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/styles/p-panel.scss -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/styles/tailwind.local.css: -------------------------------------------------------------------------------- 1 | @import "tailwindcss"; 2 | -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/src/test.ts -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/tsconfig.app.json -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/tsconfig.json -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/ClientApp/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/ClientApp/tsconfig.spec.json -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Constants.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Services/Abstractions/ClusterScopedResourceDomainService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Services/Abstractions/ClusterScopedResourceDomainService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Services/Abstractions/IClusterScopedResourceQueryDomainService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Services/Abstractions/IClusterScopedResourceQueryDomainService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Services/Abstractions/IClusterScopedResourceWatchDomainService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Services/Abstractions/IClusterScopedResourceWatchDomainService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Services/Abstractions/ICustomResourceDefinitionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Services/Abstractions/ICustomResourceDefinitionFactory.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Services/Abstractions/INamespacedResourceWatchDomainService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Services/Abstractions/INamespacedResourceWatchDomainService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Services/Abstractions/KubernetesResourceDomainService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Services/Abstractions/KubernetesResourceDomainService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Services/Abstractions/NamespacedResourceDomainService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Services/Abstractions/NamespacedResourceDomainService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Services/ClusterScopedTrivyReportDomainService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Services/ClusterScopedTrivyReportDomainService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Services/CustomResourceDefinitionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Services/CustomResourceDefinitionFactory.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Services/NamespaceDomainService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Services/NamespaceDomainService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Services/NamespacedTrivyReportDomainService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Services/NamespacedTrivyReportDomainService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Services/StaticNamespaceDomainService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Services/StaticNamespaceDomainService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterComplianceReport/Check.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterComplianceReport/Check.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterComplianceReport/ClusterComplianceReportCr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterComplianceReport/ClusterComplianceReportCr.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterComplianceReport/ClusterComplianceReportCrd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterComplianceReport/ClusterComplianceReportCrd.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterComplianceReport/Compliance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterComplianceReport/Compliance.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterComplianceReport/Control.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterComplianceReport/Control.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterComplianceReport/ControlCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterComplianceReport/ControlCheck.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterComplianceReport/Spec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterComplianceReport/Spec.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterComplianceReport/Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterComplianceReport/Status.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterComplianceReport/Summary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterComplianceReport/Summary.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterComplianceReport/SummaryReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterComplianceReport/SummaryReport.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterRbacAssessmentReport/Check.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterRbacAssessmentReport/Check.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterRbacAssessmentReport/ClusterRbacAssessmentReportCr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterRbacAssessmentReport/ClusterRbacAssessmentReportCr.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterRbacAssessmentReport/ClusterRbacAssessmentReportCrd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterRbacAssessmentReport/ClusterRbacAssessmentReportCrd.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterRbacAssessmentReport/Report.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterRbacAssessmentReport/Report.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterRbacAssessmentReport/Scanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterRbacAssessmentReport/Scanner.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterRbacAssessmentReport/Summary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterRbacAssessmentReport/Summary.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterSbomReport/Artifact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterSbomReport/Artifact.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterSbomReport/ClusterSbomReportCr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterSbomReport/ClusterSbomReportCr.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterSbomReport/ClusterSbomReportCrd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterSbomReport/ClusterSbomReportCrd.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterSbomReport/Components.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterSbomReport/Components.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterSbomReport/ComponentsComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterSbomReport/ComponentsComponent.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterSbomReport/ComponentsMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterSbomReport/ComponentsMetadata.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterSbomReport/Dependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterSbomReport/Dependency.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterSbomReport/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterSbomReport/Property.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterSbomReport/Registry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterSbomReport/Registry.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterSbomReport/Report.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterSbomReport/Report.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterSbomReport/Scanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterSbomReport/Scanner.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterSbomReport/Summary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterSbomReport/Summary.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterSbomReport/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterSbomReport/Tools.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterSbomReport/ToolsComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterSbomReport/ToolsComponent.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterVulnerabilityReport/Artifact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterVulnerabilityReport/Artifact.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterVulnerabilityReport/ClusterVulnerabilityReportCr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterVulnerabilityReport/ClusterVulnerabilityReportCr.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterVulnerabilityReport/ClusterVulnerabilityReportCrd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterVulnerabilityReport/ClusterVulnerabilityReportCrd.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterVulnerabilityReport/Os.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterVulnerabilityReport/Os.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterVulnerabilityReport/Registry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterVulnerabilityReport/Registry.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterVulnerabilityReport/Report.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterVulnerabilityReport/Report.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterVulnerabilityReport/Scanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterVulnerabilityReport/Scanner.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterVulnerabilityReport/Summary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterVulnerabilityReport/Summary.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ClusterVulnerabilityReport/Vulnerability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ClusterVulnerabilityReport/Vulnerability.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ConfigAuditReport/Check.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ConfigAuditReport/Check.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ConfigAuditReport/ConfigAuditReportCr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ConfigAuditReport/ConfigAuditReportCr.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ConfigAuditReport/ConfigAuditReportCrd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ConfigAuditReport/ConfigAuditReportCrd.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ConfigAuditReport/Report.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ConfigAuditReport/Report.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ConfigAuditReport/Scanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ConfigAuditReport/Scanner.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ConfigAuditReport/Summary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ConfigAuditReport/Summary.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/CustomResources/Abstractions/CustomResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/CustomResources/Abstractions/CustomResource.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/CustomResources/Abstractions/CustomResourceDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/CustomResources/Abstractions/CustomResourceDefinition.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/CustomResources/Abstractions/CustomResourceList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/CustomResources/Abstractions/CustomResourceList.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ExposedSecretReport/Artifact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ExposedSecretReport/Artifact.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ExposedSecretReport/ExposedSecretReportCr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ExposedSecretReport/ExposedSecretReportCr.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ExposedSecretReport/ExposedSecretReportCrd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ExposedSecretReport/ExposedSecretReportCrd.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ExposedSecretReport/Registry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ExposedSecretReport/Registry.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ExposedSecretReport/Report.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ExposedSecretReport/Report.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ExposedSecretReport/Scanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ExposedSecretReport/Scanner.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ExposedSecretReport/Secret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ExposedSecretReport/Secret.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/ExposedSecretReport/Summary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/ExposedSecretReport/Summary.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/RbacAssessmentReport/Check.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/RbacAssessmentReport/Check.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/RbacAssessmentReport/RbacAssessmentReportCr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/RbacAssessmentReport/RbacAssessmentReportCr.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/RbacAssessmentReport/RbacAssessmentReportCrd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/RbacAssessmentReport/RbacAssessmentReportCrd.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/RbacAssessmentReport/Report.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/RbacAssessmentReport/Report.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/RbacAssessmentReport/Scanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/RbacAssessmentReport/Scanner.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/RbacAssessmentReport/Summary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/RbacAssessmentReport/Summary.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/Artifact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/Artifact.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/Components.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/Components.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/ComponentsComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/ComponentsComponent.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/ComponentsMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/ComponentsMetadata.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/Dependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/Dependency.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/License.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/License.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/Property.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/Registry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/Registry.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/Report.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/Report.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/SbomReportCr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/SbomReportCr.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/SbomReportCrd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/SbomReportCrd.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/Scanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/Scanner.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/Summary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/Summary.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/Supplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/Supplier.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/Tools.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/ToolsComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/SbomReport/ToolsComponent.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/TrivyDomainUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/TrivyDomainUtils.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/TrivyReport/Abstractions/IArtifact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/TrivyReport/Abstractions/IArtifact.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/TrivyReport/Abstractions/IRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/TrivyReport/Abstractions/IRegistry.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/TrivyReport/Abstractions/ITrivyReportWithImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/TrivyReport/Abstractions/ITrivyReportWithImage.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/TrivySeverity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/TrivySeverity.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/VulnerabilityReport/Artifact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/VulnerabilityReport/Artifact.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/VulnerabilityReport/Os.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/VulnerabilityReport/Os.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/VulnerabilityReport/Registry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/VulnerabilityReport/Registry.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/VulnerabilityReport/Report.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/VulnerabilityReport/Report.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/VulnerabilityReport/Scanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/VulnerabilityReport/Scanner.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/VulnerabilityReport/Summary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/VulnerabilityReport/Summary.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/VulnerabilityReport/Vulnerability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/VulnerabilityReport/Vulnerability.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/VulnerabilityReport/VulnerabilityReportCr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/VulnerabilityReport/VulnerabilityReportCr.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Domain/Trivy/VulnerabilityReport/VulnerabilityReportCrd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Domain/Trivy/VulnerabilityReport/VulnerabilityReportCrd.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Infrastructure/Abstractions/IConcurrentCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Infrastructure/Abstractions/IConcurrentCache.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Infrastructure/Abstractions/IConcurrentDictionaryCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Infrastructure/Abstractions/IConcurrentDictionaryCache.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Infrastructure/Abstractions/IGitHubClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Infrastructure/Abstractions/IGitHubClient.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Infrastructure/Abstractions/IK8sClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Infrastructure/Abstractions/IK8sClientFactory.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Infrastructure/Abstractions/IMetricsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Infrastructure/Abstractions/IMetricsService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Infrastructure/Clients/GitHubClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Infrastructure/Clients/GitHubClient.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Infrastructure/Clients/GitHubReleaseCacheTimedHostedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Infrastructure/Clients/GitHubReleaseCacheTimedHostedService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Infrastructure/Clients/KubernetesClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Infrastructure/Clients/KubernetesClientFactory.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Infrastructure/Clients/MetricsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Infrastructure/Clients/MetricsService.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Infrastructure/Clients/Models/GitHubRelease.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Infrastructure/Clients/Models/GitHubRelease.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Infrastructure/Services/ConcurrentCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Infrastructure/Services/ConcurrentCache.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Infrastructure/Services/ConcurrentDictionaryCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Infrastructure/Services/ConcurrentDictionaryCache.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Infrastructure/Services/DictionaryCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Infrastructure/Services/DictionaryCounter.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Pages/Error.cshtml -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Program.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/TrivyOperator.Dashboard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/TrivyOperator.Dashboard.csproj -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Utils/CacheUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Utils/CacheUtils.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Utils/GuidUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Utils/GuidUtils.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Utils/JsonConverters/DateTimeJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Utils/JsonConverters/DateTimeJsonConverter.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Utils/JsonConverters/DateTimeNullableJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Utils/JsonConverters/DateTimeNullableJsonConverter.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Utils/JsonConverters/FilteredStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Utils/JsonConverters/FilteredStringConverter.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Utils/JsonConverters/StringInternalsJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Utils/JsonConverters/StringInternalsJsonConverter.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Utils/PortUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Utils/PortUtils.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Utils/RetryDurationCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Utils/RetryDurationCalculator.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/Utils/TrivyUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/Utils/TrivyUtils.cs -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/appsettings.json -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/serilog.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/serilog.config.json -------------------------------------------------------------------------------- /src/TrivyOperator.Dashboard/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/TrivyOperator.Dashboard/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/src/global.json -------------------------------------------------------------------------------- /tools/k8s.create.kubeconfig.for.sa.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoulx24/trivy-operator-dashboard/HEAD/tools/k8s.create.kubeconfig.for.sa.ps1 --------------------------------------------------------------------------------