├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── cr.yaml ├── ct.yaml ├── pull_request_template.md └── workflows │ ├── app-artifacts-linux.yml │ ├── app-artifacts-mac.yml │ ├── app-artifacts-win.yml │ ├── app.yml │ ├── backend-embed-test.yml │ ├── backend-test.yml │ ├── build-container.yml │ ├── container-publish.yml │ ├── docker-extension-release.yml │ ├── draft-release.yml │ ├── frontend.yml │ ├── helm-chart-lint-test.yml │ ├── helm-chart-release.yml │ ├── helm-chart-template-test.yml │ ├── nightly-build.yml │ ├── pr-to-update-chart.yml │ ├── pr-to-update-choco.yml │ ├── pr-to-update-minikube.yml │ ├── push-chocolatey-pkg.yml │ ├── push-release-assets.yml │ ├── scorecard-analysis.yml │ ├── trigger-flatpak-update.yml │ └── trigger-website-build.yml ├── .gitignore ├── ADOPTERS.md ├── CONTRIBUTING.md ├── Dockerfile ├── Dockerfile.plugins ├── LICENSE ├── Makefile ├── NOTICE ├── OWNERS ├── OWNERS_ALIASES ├── README.md ├── SECURITY.md ├── SECURITY_CONTACTS ├── app ├── .babelrc ├── .gitignore ├── README.md ├── app-build-manifest.json ├── e2e-tests │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── playwright.config.ts │ └── tests │ │ ├── clusterRename.spec.ts │ │ ├── headlampPage.ts │ │ ├── namespaces.spec.ts │ │ └── namespacesPage.ts ├── electron │ ├── __tests__ │ │ └── test-data │ │ │ └── artifacthub-pkg.yml │ ├── env-paths.ts │ ├── i18n-helper.ts │ ├── i18next-parser.config.js │ ├── i18next.config.ts │ ├── main.ts │ ├── plugin-management.test.ts │ ├── plugin-management.ts │ ├── preload.ts │ ├── runCmd.test.ts │ ├── runCmd.ts │ ├── windowSize.test.ts │ └── windowSize.ts ├── mac │ ├── entitlements.mac.plist │ └── scripts │ │ ├── codeSign.js │ │ └── setup-certificate.sh ├── package-lock.json ├── package.json ├── scripts │ ├── after-pack.js │ ├── build-backend.js │ ├── esrp.js │ ├── push-release-assets │ │ ├── package-lock.json │ │ ├── package.json │ │ └── push-release-assets.js │ ├── setup-plugins.js │ └── start.js ├── tsconfig.json └── windows │ ├── chocolatey │ ├── choco-bump.sh │ ├── headlamp.nuspec │ └── tools │ │ └── chocolateyinstall.ps1 │ ├── codesign.js │ ├── msi │ └── build.js │ ├── sign.js │ └── winget │ ├── templates │ ├── Headlamp.Headlamp.installer.yaml │ ├── Headlamp.Headlamp.locale.en-US.yaml │ └── Headlamp.Headlamp.yaml │ └── winget-create.js ├── backend ├── .air.toml ├── .golangci.yml ├── README.md ├── cmd │ ├── cluster.go │ ├── headlamp.go │ ├── headlamp_test.go │ ├── headlamp_testdata │ │ ├── ca.crt │ │ ├── headlamp.crt │ │ ├── headlamp.key │ │ ├── kubeconfig │ │ ├── kubeconfig_partialcontextvalid │ │ ├── kubeconfig_rename │ │ └── name_validation_test │ ├── multiplexer.go │ ├── multiplexer_test.go │ ├── server.go │ ├── stateless.go │ └── stateless_test.go ├── go.mod ├── go.sum └── pkg │ ├── auth │ ├── auth.go │ ├── auth_test.go │ ├── cookies.go │ └── cookies_test.go │ ├── cache │ ├── cache.go │ └── cache_test.go │ ├── config │ ├── config.go │ ├── config_test.go │ └── test_data │ │ ├── invalid_ca.pem │ │ └── valid_ca.pem │ ├── exec │ ├── exec.go │ ├── exec_test.go │ ├── syscallattr_other.go │ ├── syscallattr_windows.go │ └── testdata │ │ └── test-plugin.sh │ ├── headlampconfig │ └── headlampConfig.go │ ├── helm │ ├── charts.go │ ├── charts_test.go │ ├── handler.go │ ├── release.go │ ├── release_test.go │ ├── repository.go │ └── repository_test.go │ ├── k8cache │ ├── authErrResp.go │ ├── authErrResp_test.go │ ├── authorization.go │ ├── authorization_test.go │ ├── cacheInvalidation.go │ ├── cacheInvalidation_test.go │ ├── cacheStore.go │ ├── cacheStore_test.go │ ├── key.go │ ├── responseCapture.go │ └── responseCapture_test.go │ ├── kubeconfig │ ├── contextStore.go │ ├── contextStore_test.go │ ├── export_test.go │ ├── file.go │ ├── file_test.go │ ├── kubeconfig.go │ ├── kubeconfig_test.go │ ├── test_data │ │ ├── kubeconfig1 │ │ ├── kubeconfig2 │ │ ├── kubeconfig_autherr │ │ ├── kubeconfig_metadata │ │ ├── kubeconfig_metadata_duplicate │ │ ├── kubeconfig_oidc_ca_data │ │ ├── kubeconfig_partialcontextvalid │ │ └── oidc_ca.pem │ ├── useragent_test.go │ ├── watcher.go │ └── watcher_test.go │ ├── logger │ ├── logger.go │ └── logger_test.go │ ├── plugins │ ├── plugins.go │ └── plugins_test.go │ ├── portforward │ ├── handler.go │ ├── handler_test.go │ ├── internal_test.go │ └── store.go │ ├── serviceproxy │ ├── connection.go │ ├── connection_test.go │ ├── handler.go │ ├── handler_test.go │ ├── http.go │ ├── http_test.go │ ├── service.go │ └── service_test.go │ ├── spa │ ├── embed_static.go │ ├── embed_static_fallback.go │ ├── embeddedSPAHandler.go │ ├── embeddedSPAHandler_test.go │ ├── headlamp_testdata │ │ └── static_files │ │ │ ├── example.css │ │ │ └── index.html │ ├── spaHandler.go │ └── spaHandler_test.go │ └── telemetry │ ├── README.md │ ├── metrics.go │ ├── metrics_test.go │ ├── prometheus.yaml │ ├── requesthandler.go │ ├── requesthandler_test.go │ ├── telemetry.go │ ├── telemetry_test.go │ ├── tracing.go │ └── tracing_test.go ├── backstage-test ├── README.md └── index.html ├── charts └── headlamp │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── clusterrolebinding.yaml │ ├── deployment.yaml │ ├── extra-manifests.yaml │ ├── ingress.yaml │ ├── pdb.yaml │ ├── plugin-configmap.yaml │ ├── pvc.yaml │ ├── secret.yaml │ ├── service.yaml │ └── serviceaccount.yaml │ ├── tests │ ├── expected_templates │ │ ├── azure-oidc-with-validators.yaml │ │ ├── default.yaml │ │ ├── extra-args.yaml │ │ ├── extra-manifests.yaml │ │ ├── me-user-info-url-directly.yaml │ │ ├── me-user-info-url.yaml │ │ ├── namespace-override-oidc-create-secret.yaml │ │ ├── namespace-override.yaml │ │ ├── non-azure-oidc.yaml │ │ ├── oidc-create-secret.yaml │ │ ├── oidc-directly-env.yaml │ │ ├── oidc-directly.yaml │ │ ├── oidc-external-secret.yaml │ │ ├── oidc-pkce.yaml │ │ ├── oidc-validator-overrides.yaml │ │ ├── pod-disruption.yaml │ │ ├── security-context.yaml │ │ ├── tls-added.yaml │ │ └── volumes-added.yaml │ ├── readme.md │ ├── test.sh │ ├── test_cases │ │ ├── azure-oidc-with-validators.yaml │ │ ├── extra-args.yaml │ │ ├── extra-manifests.yaml │ │ ├── me-user-info-url-directly.yaml │ │ ├── me-user-info-url.yaml │ │ ├── namespace-override-oidc-create-secret.yaml │ │ ├── namespace-override.yaml │ │ ├── non-azure-oidc.yaml │ │ ├── oidc-create-secret.yaml │ │ ├── oidc-directly-env.yaml │ │ ├── oidc-directly.yaml │ │ ├── oidc-external-secret.yaml │ │ ├── oidc-pkce.yaml │ │ ├── oidc-validator-overrides.yaml │ │ ├── pod-disruption.yaml │ │ ├── security-context.yaml │ │ ├── tls-added.yaml │ │ └── volumes-added.yaml │ └── update-version.sh │ ├── values.schema.json │ └── values.yaml ├── cloudbuild.yaml ├── code-of-conduct.md ├── container ├── build-manifest.json └── fetch-plugins.sh ├── docker-extension ├── .dockerignore ├── Dockerfile ├── README.md ├── docker-compose.yml ├── headlamp.svg └── metadata.json ├── docs ├── contributing.md ├── development │ ├── api │ │ ├── .nojekyll │ │ ├── classes │ │ │ ├── lib_k8s_clusterRole.ClusterRole.md │ │ │ ├── lib_k8s_clusterRoleBinding.ClusterRoleBinding.md │ │ │ ├── lib_k8s_configMap.ConfigMap.md │ │ │ ├── lib_k8s_crd.CustomResourceDefinition.md │ │ │ ├── lib_k8s_cronJob.CronJob.md │ │ │ ├── lib_k8s_daemonSet.DaemonSet.md │ │ │ ├── lib_k8s_deployment.Deployment.md │ │ │ ├── lib_k8s_endpoints.Endpoints.md │ │ │ ├── lib_k8s_event.Event.md │ │ │ ├── lib_k8s_hpa.HPA.md │ │ │ ├── lib_k8s_ingress.Ingress.md │ │ │ ├── lib_k8s_ingressClass.IngressClass.md │ │ │ ├── lib_k8s_job.Job.md │ │ │ ├── lib_k8s_lease.Lease.md │ │ │ ├── lib_k8s_limitRange.LimitRange.md │ │ │ ├── lib_k8s_mutatingWebhookConfiguration.MutatingWebhookConfiguration.md │ │ │ ├── lib_k8s_namespace.Namespace.md │ │ │ ├── lib_k8s_networkpolicy.NetworkPolicy.md │ │ │ ├── lib_k8s_node.Node.md │ │ │ ├── lib_k8s_persistentVolume.PersistentVolume.md │ │ │ ├── lib_k8s_persistentVolumeClaim.PersistentVolumeClaim.md │ │ │ ├── lib_k8s_pod.Pod.md │ │ │ ├── lib_k8s_podDisruptionBudget.PDB.md │ │ │ ├── lib_k8s_priorityClass.PriorityClass.md │ │ │ ├── lib_k8s_replicaSet.ReplicaSet.md │ │ │ ├── lib_k8s_resourceQuota.ResourceQuota.md │ │ │ ├── lib_k8s_role.Role.md │ │ │ ├── lib_k8s_roleBinding.RoleBinding.md │ │ │ ├── lib_k8s_runtime.RuntimeClass.md │ │ │ ├── lib_k8s_secret.Secret.md │ │ │ ├── lib_k8s_service.Service.md │ │ │ ├── lib_k8s_serviceAccount.ServiceAccount.md │ │ │ ├── lib_k8s_statefulSet.StatefulSet.md │ │ │ ├── lib_k8s_storageClass.StorageClass.md │ │ │ ├── lib_k8s_validatingWebhookConfiguration.ValidatingWebhookConfiguration.md │ │ │ ├── lib_k8s_vpa.VPA.md │ │ │ ├── plugin_lib.Headlamp.md │ │ │ ├── plugin_lib.Plugin.md │ │ │ ├── plugin_registry.PluginManager.md │ │ │ └── plugin_registry.Registry.md │ │ ├── enums │ │ │ ├── plugin_registry.DefaultAppBarAction.md │ │ │ ├── plugin_registry.DefaultDetailsViewSection.md │ │ │ └── plugin_registry.DefaultSidebars.md │ │ ├── interfaces │ │ │ ├── lib_k8s_apiProxy.ApiError.md │ │ │ ├── lib_k8s_apiProxy.ApiInfo.md │ │ │ ├── lib_k8s_apiProxy.ClusterRequest.md │ │ │ ├── lib_k8s_apiProxy.ClusterRequestParams.md │ │ │ ├── lib_k8s_apiProxy.QueryParameters.md │ │ │ ├── lib_k8s_apiProxy.RequestParams.md │ │ │ ├── lib_k8s_apiProxy.StreamArgs.md │ │ │ ├── lib_k8s_apiProxy.StreamResultsParams.md │ │ │ ├── lib_k8s_cluster.ApiListOptions.md │ │ │ ├── lib_k8s_cluster.ApiListSingleNamespaceOptions.md │ │ │ ├── lib_k8s_cluster.AuthRequestResourceAttrs.md │ │ │ ├── lib_k8s_cluster.Cluster.md │ │ │ ├── lib_k8s_cluster.ContainerState.md │ │ │ ├── lib_k8s_cluster.KubeCondition.md │ │ │ ├── lib_k8s_cluster.KubeContainer.md │ │ │ ├── lib_k8s_cluster.KubeContainerProbe.md │ │ │ ├── lib_k8s_cluster.KubeContainerStatus.md │ │ │ ├── lib_k8s_cluster.KubeManagedFields.md │ │ │ ├── lib_k8s_cluster.KubeManagedFieldsEntry.md │ │ │ ├── lib_k8s_cluster.KubeMetadata.md │ │ │ ├── lib_k8s_cluster.KubeMetrics.md │ │ │ ├── lib_k8s_cluster.KubeObjectIface.md │ │ │ ├── lib_k8s_cluster.KubeObjectInterface.md │ │ │ ├── lib_k8s_cluster.KubeOwnerReference.md │ │ │ ├── lib_k8s_cluster.LabelSelector.md │ │ │ ├── lib_k8s_cluster.StringDict.md │ │ │ ├── lib_k8s_configMap.KubeConfigMap.md │ │ │ ├── lib_k8s_crd.CRClassArgs.md │ │ │ ├── lib_k8s_crd.KubeCRD.md │ │ │ ├── lib_k8s_cronJob.KubeCronJob.md │ │ │ ├── lib_k8s_daemonSet.KubeDaemonSet.md │ │ │ ├── lib_k8s_deployment.KubeDeployment.md │ │ │ ├── lib_k8s_endpoints.KubeEndpoint.md │ │ │ ├── lib_k8s_endpoints.KubeEndpointAddress.md │ │ │ ├── lib_k8s_endpoints.KubeEndpointPort.md │ │ │ ├── lib_k8s_endpoints.KubeEndpointSubset.md │ │ │ ├── lib_k8s_event.KubeEvent.md │ │ │ ├── lib_k8s_hpa.CrossVersionObjectReference.md │ │ │ ├── lib_k8s_hpa.KubeHPA.md │ │ │ ├── lib_k8s_ingress.IngressBackend.md │ │ │ ├── lib_k8s_ingress.IngressRule.md │ │ │ ├── lib_k8s_ingress.KubeIngress.md │ │ │ ├── lib_k8s_ingressClass.KubeIngressClass.md │ │ │ ├── lib_k8s_job.KubeJob.md │ │ │ ├── lib_k8s_kubeconfig.KubeconfigObject.md │ │ │ ├── lib_k8s_lease.KubeLease.md │ │ │ ├── lib_k8s_lease.LeaseSpec.md │ │ │ ├── lib_k8s_limitRange.KubeLimitRange.md │ │ │ ├── lib_k8s_limitRange.LimitRangeSpec.md │ │ │ ├── lib_k8s_mutatingWebhookConfiguration.KubeMutatingWebhookConfiguration.md │ │ │ ├── lib_k8s_mutatingWebhookConfiguration.KubeRuleWithOperations.md │ │ │ ├── lib_k8s_mutatingWebhookConfiguration.KubeWebhookClientConfig.md │ │ │ ├── lib_k8s_namespace.KubeNamespace.md │ │ │ ├── lib_k8s_networkpolicy.IPBlock.md │ │ │ ├── lib_k8s_networkpolicy.KubeNetworkPolicy.md │ │ │ ├── lib_k8s_networkpolicy.NetworkPolicyEgressRule.md │ │ │ ├── lib_k8s_networkpolicy.NetworkPolicyIngressRule.md │ │ │ ├── lib_k8s_networkpolicy.NetworkPolicyPeer.md │ │ │ ├── lib_k8s_networkpolicy.NetworkPolicyPort.md │ │ │ ├── lib_k8s_node.KubeNode.md │ │ │ ├── lib_k8s_persistentVolume.KubePersistentVolume.md │ │ │ ├── lib_k8s_persistentVolumeClaim.KubePersistentVolumeClaim.md │ │ │ ├── lib_k8s_pod.ExecOptions.md │ │ │ ├── lib_k8s_pod.KubePod.md │ │ │ ├── lib_k8s_pod.KubePodSpec.md │ │ │ ├── lib_k8s_pod.KubeVolume.md │ │ │ ├── lib_k8s_pod.LogOptions.md │ │ │ ├── lib_k8s_podDisruptionBudget.KubePDB.md │ │ │ ├── lib_k8s_priorityClass.KubePriorityClass.md │ │ │ ├── lib_k8s_replicaSet.KubeReplicaSet.md │ │ │ ├── lib_k8s_resourceQuota.KubeResourceQuota.md │ │ │ ├── lib_k8s_role.KubeRole.md │ │ │ ├── lib_k8s_roleBinding.KubeRoleBinding.md │ │ │ ├── lib_k8s_runtime.KubeRuntimeClass.md │ │ │ ├── lib_k8s_secret.KubeSecret.md │ │ │ ├── lib_k8s_service.KubeLoadBalancerIngress.md │ │ │ ├── lib_k8s_service.KubePortStatus.md │ │ │ ├── lib_k8s_service.KubeService.md │ │ │ ├── lib_k8s_serviceAccount.KubeServiceAccount.md │ │ │ ├── lib_k8s_statefulSet.KubeStatefulSet.md │ │ │ ├── lib_k8s_storageClass.KubeStorageClass.md │ │ │ ├── lib_k8s_token.KubeToken.md │ │ │ ├── lib_k8s_validatingWebhookConfiguration.KubeValidatingWebhookConfiguration.md │ │ │ ├── lib_k8s_vpa.KubeVPA.md │ │ │ ├── lib_router.Route.md │ │ │ ├── lib_router.RouteURLProps.md │ │ │ ├── lib_util.TimeAgoOptions.md │ │ │ ├── plugin_lib.AppMenu.md │ │ │ ├── plugin_registry.AppLogoProps.md │ │ │ ├── plugin_registry.ClusterChooserProps.md │ │ │ ├── plugin_registry.CreateResourceEvent.md │ │ │ ├── plugin_registry.DeleteResourceEvent.md │ │ │ ├── plugin_registry.DetailsViewSectionProps.md │ │ │ ├── plugin_registry.EditResourceEvent.md │ │ │ ├── plugin_registry.ErrorBoundaryEvent.md │ │ │ ├── plugin_registry.EventListEvent.md │ │ │ ├── plugin_registry.HeadlampEvent.md │ │ │ ├── plugin_registry.LogsEvent.md │ │ │ ├── plugin_registry.PluginLoadingErrorEvent.md │ │ │ ├── plugin_registry.PluginSettingsDetailsProps.md │ │ │ ├── plugin_registry.PluginsLoadedEvent.md │ │ │ ├── plugin_registry.PodAttachEvent.md │ │ │ ├── plugin_registry.ResourceDetailsViewLoadedEvent.md │ │ │ ├── plugin_registry.ResourceListViewLoadedEvent.md │ │ │ ├── plugin_registry.RestartResourceEvent.md │ │ │ ├── plugin_registry.ScaleResourceEvent.md │ │ │ ├── plugin_registry.SectionFuncProps.md │ │ │ ├── plugin_registry.SidebarEntryProps.md │ │ │ └── plugin_registry.TerminalEvent.md │ │ └── modules │ │ │ ├── lib_k8s.md │ │ │ ├── lib_k8s_apiProxy.md │ │ │ ├── lib_k8s_cluster.md │ │ │ ├── lib_k8s_clusterRole.md │ │ │ ├── lib_k8s_clusterRoleBinding.md │ │ │ ├── lib_k8s_configMap.md │ │ │ ├── lib_k8s_crd.md │ │ │ ├── lib_k8s_cronJob.md │ │ │ ├── lib_k8s_daemonSet.md │ │ │ ├── lib_k8s_deployment.md │ │ │ ├── lib_k8s_endpoints.md │ │ │ ├── lib_k8s_event.md │ │ │ ├── lib_k8s_hpa.md │ │ │ ├── lib_k8s_ingress.md │ │ │ ├── lib_k8s_ingressClass.md │ │ │ ├── lib_k8s_job.md │ │ │ ├── lib_k8s_kubeconfig.md │ │ │ ├── lib_k8s_lease.md │ │ │ ├── lib_k8s_limitRange.md │ │ │ ├── lib_k8s_mutatingWebhookConfiguration.md │ │ │ ├── lib_k8s_namespace.md │ │ │ ├── lib_k8s_networkpolicy.md │ │ │ ├── lib_k8s_node.md │ │ │ ├── lib_k8s_persistentVolume.md │ │ │ ├── lib_k8s_persistentVolumeClaim.md │ │ │ ├── lib_k8s_pod.md │ │ │ ├── lib_k8s_podDisruptionBudget.md │ │ │ ├── lib_k8s_priorityClass.md │ │ │ ├── lib_k8s_priorityClasses.md │ │ │ ├── lib_k8s_replicaSet.md │ │ │ ├── lib_k8s_resourceQuota.md │ │ │ ├── lib_k8s_role.md │ │ │ ├── lib_k8s_roleBinding.md │ │ │ ├── lib_k8s_runtime.md │ │ │ ├── lib_k8s_secret.md │ │ │ ├── lib_k8s_service.md │ │ │ ├── lib_k8s_serviceAccount.md │ │ │ ├── lib_k8s_statefulSet.md │ │ │ ├── lib_k8s_storageClass.md │ │ │ ├── lib_k8s_token.md │ │ │ ├── lib_k8s_validatingWebhookConfiguration.md │ │ │ ├── lib_k8s_vpa.md │ │ │ ├── lib_router.md │ │ │ ├── lib_util.auth.md │ │ │ ├── lib_util.md │ │ │ ├── lib_util.units.md │ │ │ ├── plugin_lib.md │ │ │ └── plugin_registry.md │ ├── architecture.md │ ├── backend.md │ ├── frontend.md │ ├── gateway.md │ ├── i18n │ │ ├── contributing.md │ │ └── index.md │ ├── index.md │ ├── oidc.md │ ├── plugins │ │ ├── building.md │ │ ├── common-patterns.md │ │ ├── functionality │ │ │ ├── extending-the-map.md │ │ │ ├── images │ │ │ │ ├── map-rs-and-pods.png │ │ │ │ ├── node-glance.png │ │ │ │ ├── node-with-an-icon.png │ │ │ │ ├── node-without-an-icon.png │ │ │ │ ├── settings-theme-dropdown.png │ │ │ │ ├── side-panels-example.png │ │ │ │ ├── source-picker-workloads.png │ │ │ │ └── source-picker.png │ │ │ └── index.md │ │ ├── getting-started.md │ │ ├── i18n.md │ │ ├── images │ │ │ ├── app-menus.png │ │ │ ├── change-logo.png │ │ │ ├── cluster-chooser.png │ │ │ ├── details-view.jpeg │ │ │ ├── event-snackbar.png │ │ │ ├── header_actions_screenshot.png │ │ │ ├── plugin-guide-add-repo.png │ │ │ ├── plugin-on-plugin-catalog.png │ │ │ ├── plugin-repo-add-repo-button.png │ │ │ ├── plugin-settings.png │ │ │ ├── podcounter_screenshot.png │ │ │ ├── sidebar.png │ │ │ └── table-context-menu.png │ │ ├── index.md │ │ └── publishing.md │ ├── release-guide.md │ ├── release-version.png │ └── testing.md ├── faq.md ├── headlamp_light.svg ├── images │ ├── icon.png │ └── icon.svg ├── index.md ├── installation │ ├── base-url.md │ ├── desktop │ │ ├── headless.mdx │ │ ├── images │ │ │ ├── plugin-catalog-installed.png │ │ │ ├── plugin-catalog-list.png │ │ │ └── plugin-catalog-view-install-button.png │ │ ├── index.mdx │ │ ├── linux-installation.md │ │ ├── mac-installation.md │ │ ├── plugins-install-desktop.md │ │ └── win-installation.md │ ├── in-cluster │ │ ├── aks-cluster-oauth │ │ │ ├── app_config.png │ │ │ ├── app_config_client.png │ │ │ ├── app_registraion_1.png │ │ │ ├── create_cluster_1.png │ │ │ ├── create_cluster_2.png │ │ │ ├── create_cluster_3.png │ │ │ ├── headlamp_auth.png │ │ │ ├── index.md │ │ │ └── login_page.png │ │ ├── azure-entra-id │ │ │ ├── azure-app-reg-01.png │ │ │ ├── azure-app-reg-02.png │ │ │ ├── azure-app-reg-03.png │ │ │ ├── azure-app-reg-04.png │ │ │ ├── azure-app-reg-05.png │ │ │ ├── azure-app-reg-06.png │ │ │ ├── azure-app-reg-07.png │ │ │ ├── headlamp_auth_screen.png │ │ │ └── index.md │ │ ├── dex │ │ │ ├── headlamp-access1.jpg │ │ │ ├── headlamp-access2.jpg │ │ │ ├── headlamp-access3.jpg │ │ │ ├── headlamp-access4.jpg │ │ │ ├── headlamp-install.jpg │ │ │ ├── index.md │ │ │ ├── minikube-start.jpg │ │ │ ├── oidc-login-install.jpg │ │ │ ├── oidc-login-setup1.jpg │ │ │ └── oidc-login-setup2.jpg │ │ ├── eks │ │ │ ├── cluster │ │ │ │ ├── associate_oidc_identity_provider.png │ │ │ │ ├── configure_addons.png │ │ │ │ ├── configure_cluster1.png │ │ │ │ ├── configure_cluster2.png │ │ │ │ ├── configure_observability.png │ │ │ │ ├── create_cluster.png │ │ │ │ ├── elastic_kubernetes_cluster.png │ │ │ │ ├── select_addons.png │ │ │ │ └── specify_networking.png │ │ │ ├── cognito │ │ │ │ ├── cognito-service.png │ │ │ │ ├── configure-message-delivery.png │ │ │ │ ├── create-user-pool.png │ │ │ │ ├── integrate-your-app1.png │ │ │ │ ├── integrate-your-app2.png │ │ │ │ ├── integrate-your-app3.png │ │ │ │ ├── security-requirements.png │ │ │ │ ├── sign-in-experience.png │ │ │ │ └── sign-up-experience.png │ │ │ ├── cognito_auth.png │ │ │ ├── headlamp_auth_screen.png │ │ │ ├── headlamp_dashboard.png │ │ │ └── index.md │ │ ├── index.md │ │ ├── keycloak │ │ │ ├── headlamp-access1.jpg │ │ │ ├── headlamp-access2.jpg │ │ │ ├── headlamp-access3.jpg │ │ │ ├── headlamp-install.jpg │ │ │ ├── index.md │ │ │ ├── keycloak-admin-panel.jpeg │ │ │ ├── keycloak-clients-list.jpeg │ │ │ ├── keycloak-create-client1.jpeg │ │ │ ├── keycloak-create-client2.jpeg │ │ │ ├── keycloak-create-client3.jpeg │ │ │ ├── keycloak-redirect.jpeg │ │ │ ├── minikube-start.jpg │ │ │ ├── oidc-login-install.jpg │ │ │ ├── oidc-login-setup1.jpg │ │ │ └── oidc-login-setup2.jpg │ │ ├── oidc.md │ │ ├── oidc_button.png │ │ └── tls.md │ ├── index.mdx │ ├── metrics-server.md │ └── no-metrics-server.png ├── learn │ ├── index.md │ ├── local-cluster │ │ ├── ai-assistant-17.png │ │ ├── apply-yaml-5.png │ │ ├── cluster-action-delete-10.png │ │ ├── cluster-overview-8.png │ │ ├── cluster-started-press-home-4.png │ │ ├── create-cluster-start-3.png │ │ ├── delete-confirmation-11.png │ │ ├── index.md │ │ ├── map-view-14.png │ │ ├── nginx-in-browser-7.png │ │ ├── overview-start-stop-13.png │ │ ├── plugin-catalog-16.png │ │ ├── pod-details-6.png │ │ ├── search-results-nginx-9.png │ │ ├── select-add-cluster-1.png │ │ ├── select-local-cluster-provider-2.png │ │ ├── start-stop-buttons-12.png │ │ └── yaml-editor-15.png │ └── projects.md └── platforms.md ├── e2e-tests ├── .gitignore ├── README.md ├── kubernetes-headlamp-ci.yaml ├── kubernetes-headlamp-incluster-ci.yaml ├── package-lock.json ├── package.json ├── playwright.config.ts └── tests │ ├── dynamicCluster.spec.ts │ ├── headlamp.spec.ts │ ├── headlampPage.ts │ ├── incluster-api.spec.ts │ ├── multiCluster.spec.ts │ ├── namespaces.spec.ts │ ├── namespacesPage.ts │ ├── pluginSetting.spec.ts │ ├── podsPage.spec.ts │ ├── podsPage.ts │ ├── securityPage.ts │ └── servicesPage.ts ├── eslint-config ├── .eslintrc.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── Makefile ├── README.md ├── export.js ├── package-lock.json ├── package.json └── prettier-config │ └── index.js ├── frontend ├── .eslintignore ├── .gitignore ├── .prettierignore ├── .storybook │ ├── HeadlampTheme.js │ ├── baseMocks.ts │ ├── main.ts │ ├── manager.js │ └── preview.tsx ├── README.md ├── index.html ├── make-env.js ├── package-lock.json ├── package.json ├── public │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── icon.icns │ ├── icon.ico │ ├── logo-light.svg │ ├── manifest.json │ ├── mockServiceWorker.js │ ├── mstile-150x150.png │ ├── robots.txt │ └── safari-pinned-tab.svg ├── rsbuild.config.ts ├── src │ ├── App.test.tsx │ ├── App.tsx │ ├── assets │ │ ├── fonts │ │ │ └── overpass │ │ │ │ ├── cyrillic-ext.woff2 │ │ │ │ ├── cyrillic.woff2 │ │ │ │ ├── latin-ext.woff2 │ │ │ │ ├── latin.woff2 │ │ │ │ └── vietnamese.woff2 │ │ ├── headlamp-404.svg │ │ └── headlamp-broken.svg │ ├── components │ │ ├── 404 │ │ │ └── index.tsx │ │ ├── App │ │ │ ├── AppContainer.stories.tsx │ │ │ ├── AppContainer.test.tsx │ │ │ ├── AppContainer.tsx │ │ │ ├── AppLogo.stories.tsx │ │ │ ├── AppLogo.tsx │ │ │ ├── CreateCluster │ │ │ │ └── AddCluster.tsx │ │ │ ├── Home │ │ │ │ ├── ClusterContextMenu.tsx │ │ │ │ ├── ClusterTable.tsx │ │ │ │ ├── RecentClusters.stories.tsx │ │ │ │ ├── RecentClusters.tsx │ │ │ │ ├── SquareButton.stories.tsx │ │ │ │ ├── SquareButton.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── RecentClusters.MoreThanThreeClusters.stories.storyshot │ │ │ │ │ ├── RecentClusters.NoClusters.stories.storyshot │ │ │ │ │ ├── RecentClusters.OneExistingCluster.stories.storyshot │ │ │ │ │ ├── RecentClusters.OneRecentCluster.stories.storyshot │ │ │ │ │ ├── RecentClusters.ThreeClusters.stories.storyshot │ │ │ │ │ ├── RecentClusters.TwoExistingClusters.stories.storyshot │ │ │ │ │ ├── RecentClusters.TwoRecentClusters.stories.storyshot │ │ │ │ │ ├── RecentClusters.WithObsoleteClusters.stories.storyshot │ │ │ │ │ ├── SquareButton.Basic.stories.storyshot │ │ │ │ │ ├── SquareButton.DifferentIconColor.stories.storyshot │ │ │ │ │ ├── SquareButton.DifferentIconSize.stories.storyshot │ │ │ │ │ ├── SquareButton.Primary.stories.storyshot │ │ │ │ │ ├── index.Base.stories.storyshot │ │ │ │ │ └── index.LoadingClusters.stories.storyshot │ │ │ │ ├── config.ts │ │ │ │ ├── customClusterNames.ts │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── Layout.stories.tsx │ │ │ ├── Layout.tsx │ │ │ ├── Notifications │ │ │ │ ├── List │ │ │ │ │ ├── List.stories.tsx │ │ │ │ │ ├── List.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Notifications.stories.tsx │ │ │ │ ├── Notifications.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── Notifications.MixedNotifications.stories.storyshot │ │ │ │ │ ├── Notifications.NoNotifications.stories.storyshot │ │ │ │ │ ├── Notifications.WithMultipleClusters.stories.storyshot │ │ │ │ │ ├── Notifications.WithReadNotifications.stories.storyshot │ │ │ │ │ └── Notifications.WithUnreadNotifications.stories.storyshot │ │ │ │ ├── index.tsx │ │ │ │ ├── notificationsSlice.test.ts │ │ │ │ └── notificationsSlice.ts │ │ │ ├── PluginSettings │ │ │ │ ├── PluginSettings.stories.tsx │ │ │ │ ├── PluginSettings.tsx │ │ │ │ ├── PluginSettingsDetails.stories.tsx │ │ │ │ ├── PluginSettingsDetails.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── PluginSettings.DefaultSaveEnable.stories.storyshot │ │ │ │ │ ├── PluginSettings.Empty.stories.storyshot │ │ │ │ │ ├── PluginSettings.EmptyHomepageItems.stories.storyshot │ │ │ │ │ ├── PluginSettings.FewItems.stories.storyshot │ │ │ │ │ ├── PluginSettings.ManyItems.stories.storyshot │ │ │ │ │ ├── PluginSettings.MigrationScenario.stories.storyshot │ │ │ │ │ ├── PluginSettings.MoreItems.stories.storyshot │ │ │ │ │ ├── PluginSettings.MultipleLocations.stories.storyshot │ │ │ │ │ ├── PluginSettingsDetails.WithAutoSave.stories.storyshot │ │ │ │ │ └── PluginSettingsDetails.WithoutAutoSave.stories.storyshot │ │ │ │ └── index.tsx │ │ │ ├── RouteSwitcher.stories.tsx │ │ │ ├── RouteSwitcher.tsx │ │ │ ├── Settings │ │ │ │ ├── ClusterNameEditor.stories.tsx │ │ │ │ ├── ClusterNameEditor.tsx │ │ │ │ ├── ClusterSelector.stories.tsx │ │ │ │ ├── ClusterSelector.tsx │ │ │ │ ├── DrawerModeSettings.tsx │ │ │ │ ├── NodeShellSettings.stories.tsx │ │ │ │ ├── NodeShellSettings.tsx │ │ │ │ ├── NumRowsInput.tsx │ │ │ │ ├── Settings.stories.tsx │ │ │ │ ├── Settings.tsx │ │ │ │ ├── SettingsButton.tsx │ │ │ │ ├── SettingsCluster.tsx │ │ │ │ ├── SettingsClusters.tsx │ │ │ │ ├── ThemePreview.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── ClusterNameEditor.Default.stories.storyshot │ │ │ │ │ ├── ClusterNameEditor.WithInvalidName.stories.storyshot │ │ │ │ │ ├── ClusterNameEditor.WithNewName.stories.storyshot │ │ │ │ │ ├── ClusterSelector.Default.stories.storyshot │ │ │ │ │ ├── ClusterSelector.storyshots.test.tsx.snap │ │ │ │ │ ├── NodeShellSettings.Default.stories.storyshot │ │ │ │ │ ├── Settings.General.stories.storyshot │ │ │ │ │ └── Settings.stories.storyshot │ │ │ │ ├── hook.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── util.tsx │ │ │ ├── TopBar.stories.tsx │ │ │ ├── TopBar.tsx │ │ │ ├── VersionDialog.stories.tsx │ │ │ ├── VersionDialog.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── AppLogo.LargeDark.stories.storyshot │ │ │ │ ├── AppLogo.LargeLight.stories.storyshot │ │ │ │ ├── AppLogo.SmallDark.stories.storyshot │ │ │ │ ├── AppLogo.SmallLight.stories.storyshot │ │ │ │ ├── Layout.Default.stories.storyshot │ │ │ │ ├── Layout.ErrorState.stories.storyshot │ │ │ │ ├── Layout.MultiCluster.stories.storyshot │ │ │ │ ├── Layout.WithClusterRoute.stories.storyshot │ │ │ │ ├── RouteSwitcher.Default.stories.storyshot │ │ │ │ ├── TopBar.EmptyUserInfo.stories.storyshot │ │ │ │ ├── TopBar.NoToken.stories.storyshot │ │ │ │ ├── TopBar.OneCluster.stories.storyshot │ │ │ │ ├── TopBar.ProcessorAction.stories.storyshot │ │ │ │ ├── TopBar.Token.stories.storyshot │ │ │ │ ├── TopBar.TwoCluster.stories.storyshot │ │ │ │ ├── TopBar.UndefinedData.stories.storyshot │ │ │ │ ├── TopBar.WithEmailOnly.stories.storyshot │ │ │ │ ├── TopBar.WithUserInfo.stories.storyshot │ │ │ │ └── VersionDialog.VersionDialog.stories.storyshot │ │ │ ├── defaultAppThemes.ts │ │ │ ├── icons.test.ts │ │ │ ├── icons.ts │ │ │ ├── pluginManager.ts │ │ │ ├── runCommand.ts │ │ │ ├── themeSlice.test.tsx │ │ │ └── themeSlice.ts │ │ ├── DetailsViewSection │ │ │ ├── DetailsViewSection.stories.tsx │ │ │ ├── DetailsViewSection.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── DetailsViewSection.MatchRenderIt.stories.storyshot │ │ │ │ └── DetailsViewSection.NoMatchNoRender.stories.storyshot │ │ │ ├── detailsViewSectionSlice.test.ts │ │ │ ├── detailsViewSectionSlice.ts │ │ │ └── index.tsx │ │ ├── Sidebar │ │ │ ├── HeadlampButton.stories.tsx │ │ │ ├── HeadlampButton.tsx │ │ │ ├── ListItemLink.stories.tsx │ │ │ ├── ListItemLink.tsx │ │ │ ├── NavigationTabs.stories.tsx │ │ │ ├── NavigationTabs.tsx │ │ │ ├── Sidebar.stories.tsx │ │ │ ├── Sidebar.tsx │ │ │ ├── SidebarItem.tsx │ │ │ ├── Sidebaritem.stories.tsx │ │ │ ├── VersionButton.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── HeadlampButton.CollapsedSidebar.stories.storyshot │ │ │ │ ├── HeadlampButton.Disabled.stories.storyshot │ │ │ │ ├── HeadlampButton.ExpandedSidebar.stories.storyshot │ │ │ │ ├── HeadlampButton.MobileOnlyHidden.stories.storyshot │ │ │ │ ├── HeadlampButton.MobileOnlyVisible.stories.storyshot │ │ │ │ ├── ListItemLink.Default.stories.storyshot │ │ │ │ ├── ListItemLink.IconOnly.stories.storyshot │ │ │ │ ├── ListItemLink.IconOnlySelected.stories.storyshot │ │ │ │ ├── ListItemLink.NoIcon.stories.storyshot │ │ │ │ ├── ListItemLink.Selected.stories.storyshot │ │ │ │ ├── ListItemLink.SubItem.stories.storyshot │ │ │ │ ├── ListItemLink.SubItemSelected.stories.storyshot │ │ │ │ ├── ListItemLink.UsingFullWidthPropFalse.stories.storyshot │ │ │ │ ├── ListItemLink.UsingFullWidthPropTrue.stories.storyshot │ │ │ │ ├── ListItemLink.WithDivider.stories.storyshot │ │ │ │ ├── ListItemLink.WithSubtitle.stories.storyshot │ │ │ │ ├── NavigationTabs.ClusterParentSelected.stories.storyshot │ │ │ │ ├── NavigationTabs.ItemWithoutOwnURLSelected.stories.storyshot │ │ │ │ ├── NavigationTabs.NoSubList.stories.storyshot │ │ │ │ ├── NavigationTabs.SettingsParentSelected.stories.storyshot │ │ │ │ ├── NavigationTabs.SidebarOpen.stories.storyshot │ │ │ │ ├── NavigationTabs.WorkloadsChildSelected.stories.storyshot │ │ │ │ ├── NavigationTabs.WorkloadsParentSelected.stories.storyshot │ │ │ │ ├── Sidebar.HomeSidebarClosed.stories.storyshot │ │ │ │ ├── Sidebar.HomeSidebarOpen.stories.storyshot │ │ │ │ ├── Sidebar.InClusterSidebarClosed.stories.storyshot │ │ │ │ ├── Sidebar.InClusterSidebarOpen.stories.storyshot │ │ │ │ ├── Sidebar.NoSidebar.stories.storyshot │ │ │ │ ├── Sidebar.NotVisibleSidebar.stories.storyshot │ │ │ │ ├── Sidebar.SelectedItemWithSidebarOmitted.stories.storyshot │ │ │ │ ├── Sidebaritem.Selected.stories.storyshot │ │ │ │ ├── Sidebaritem.Sublist.stories.storyshot │ │ │ │ ├── Sidebaritem.SublistExpanded.stories.storyshot │ │ │ │ └── Sidebaritem.Unselected.stories.storyshot │ │ │ ├── index.tsx │ │ │ ├── sidebarSlice.test.ts │ │ │ ├── sidebarSlice.ts │ │ │ ├── useSidebarItems.test.tsx │ │ │ └── useSidebarItems.ts │ │ ├── TestHelpers │ │ │ └── theme.ts │ │ ├── account │ │ │ ├── Auth.tsx │ │ │ ├── AuthToken.stories.tsx │ │ │ └── __snapshots__ │ │ │ │ ├── AuthToken.ShowActions.stories.storyshot │ │ │ │ └── AuthToken.ShowError.stories.storyshot │ │ ├── activity │ │ │ ├── Activity.stories.tsx │ │ │ ├── Activity.test.tsx │ │ │ ├── Activity.tsx │ │ │ └── __snapshots__ │ │ │ │ ├── Activity.Basic.stories.storyshot │ │ │ │ └── Activity.EmptyBar.stories.storyshot │ │ ├── advancedSearch │ │ │ ├── AdvancedSearch.stories.tsx │ │ │ ├── AdvancedSearch.tsx │ │ │ ├── ApiResourcePicker.stories.tsx │ │ │ ├── ApiResourcePicker.tsx │ │ │ ├── EmptyResults.stories.tsx │ │ │ ├── EmptyResults.tsx │ │ │ ├── ResourceSearch.stories.tsx │ │ │ ├── ResourceSearch.tsx │ │ │ ├── SearchSettings.stories.tsx │ │ │ ├── SearchSettings.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── AdvancedSearch.Default.stories.storyshot │ │ │ │ ├── ApiResourcePicker.Default.stories.storyshot │ │ │ │ ├── EmptyResults.Default.stories.storyshot │ │ │ │ ├── ResourceSearch.Default.stories.storyshot │ │ │ │ └── SearchSettings.Default.stories.storyshot │ │ │ └── utils │ │ │ │ ├── getTopLevelKeys.tsx │ │ │ │ ├── inferTypes.test.ts │ │ │ │ ├── inferTypes.ts │ │ │ │ ├── searchWithQuery.test.ts │ │ │ │ ├── searchWithQuery.tsx │ │ │ │ ├── useKubeLists.tsx │ │ │ │ └── useTypeDefinition.tsx │ │ ├── authchooser │ │ │ ├── AuthChooser.stories.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── AuthChooser.AnError.stories.storyshot │ │ │ │ ├── AuthChooser.AuthTypeoidc.stories.storyshot │ │ │ │ ├── AuthChooser.BasicAuthChooser.stories.storyshot │ │ │ │ ├── AuthChooser.HaveClusters.stories.storyshot │ │ │ │ └── AuthChooser.Testing.stories.storyshot │ │ │ └── index.tsx │ │ ├── cluster │ │ │ ├── Charts │ │ │ │ ├── ResourceCharts.stories.tsx │ │ │ │ ├── ResourceCharts.tsx │ │ │ │ ├── StatusCharts.stories.tsx │ │ │ │ ├── StatusCharts.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── ResourceCharts.CpuChartNoMetrics.stories.storyshot │ │ │ │ │ ├── ResourceCharts.CpuChartPod.stories.storyshot │ │ │ │ │ ├── ResourceCharts.CpuChartWithMetrics.stories.storyshot │ │ │ │ │ ├── ResourceCharts.MemoryChartNoMetrics.stories.storyshot │ │ │ │ │ ├── ResourceCharts.MemoryChartPod.stories.storyshot │ │ │ │ │ ├── ResourceCharts.MemoryChartWithMetrics.stories.storyshot │ │ │ │ │ ├── StatusCharts.NodesStatusEmpty.stories.storyshot │ │ │ │ │ ├── StatusCharts.NodesStatusLoading.stories.storyshot │ │ │ │ │ ├── StatusCharts.NodesStatusWithMixedStates.stories.storyshot │ │ │ │ │ ├── StatusCharts.PodsStatusEmpty.stories.storyshot │ │ │ │ │ ├── StatusCharts.PodsStatusLoading.stories.storyshot │ │ │ │ │ └── StatusCharts.PodsStatusWithMixedStates.stories.storyshot │ │ │ │ └── index.ts │ │ │ ├── Chooser.stories.tsx │ │ │ ├── Chooser.tsx │ │ │ ├── ClusterChooser.stories.tsx │ │ │ ├── ClusterChooser.tsx │ │ │ ├── ClusterChooserPopup.stories.tsx │ │ │ ├── ClusterChooserPopup.tsx │ │ │ ├── ClusterGroupErrorMessage.stories.tsx │ │ │ ├── ClusterGroupErrorMessage.tsx │ │ │ ├── KubeConfigLoader.tsx │ │ │ ├── Overview.stories.tsx │ │ │ ├── Overview.tsx │ │ │ └── __snapshots__ │ │ │ │ ├── Chooser.Closed.stories.storyshot │ │ │ │ ├── Chooser.ManyClusters.stories.storyshot │ │ │ │ ├── Chooser.NoClusters.stories.storyshot │ │ │ │ ├── Chooser.Normal.stories.storyshot │ │ │ │ ├── Chooser.SingleCluster.stories.storyshot │ │ │ │ ├── ClusterChooser.LongClusterName.stories.storyshot │ │ │ │ ├── ClusterChooser.NoCluster.stories.storyshot │ │ │ │ ├── ClusterChooser.Normal.stories.storyshot │ │ │ │ ├── ClusterChooser.SpecialCharacters.stories.storyshot │ │ │ │ ├── ClusterChooserPopup.NoClustersButRecent.stories.storyshot │ │ │ │ ├── ClusterChooserPopup.NoRecentClusters.stories.storyshot │ │ │ │ ├── ClusterChooserPopup.Normal.stories.storyshot │ │ │ │ ├── ClusterChooserPopup.Scrollbar.stories.storyshot │ │ │ │ ├── ClusterGroupErrorMessage.WithClusterErrors.stories.storyshot │ │ │ │ ├── ClusterGroupErrorMessage.WithMutipleErrorsPerCluster.stories.storyshot │ │ │ │ ├── Overview.EmptyState.stories.storyshot │ │ │ │ ├── Overview.ErrorState.stories.storyshot │ │ │ │ ├── Overview.Events.stories.storyshot │ │ │ │ └── Overview.LoadingState.stories.storyshot │ │ ├── common │ │ │ ├── ActionButton │ │ │ │ ├── ActionButton.stories.tsx │ │ │ │ ├── ActionButton.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── ActionButton.Basic.stories.storyshot │ │ │ │ │ ├── ActionButton.LargeAndColorful.stories.storyshot │ │ │ │ │ └── ActionButton.LongDescription.stories.storyshot │ │ │ │ └── index.tsx │ │ │ ├── ActionsNotifier.stories.tsx │ │ │ ├── ActionsNotifier.tsx │ │ │ ├── AlertNotification.stories.tsx │ │ │ ├── AlertNotification.tsx │ │ │ ├── BackLink │ │ │ │ ├── BackLink.stories.tsx │ │ │ │ ├── BackLink.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── BackLink.CustomLink.stories.storyshot │ │ │ │ │ └── BackLink.Default.stories.storyshot │ │ │ │ └── index.tsx │ │ │ ├── Chart.stories │ │ │ │ ├── PercentBar.stories.tsx │ │ │ │ ├── PercentageCircle.stories.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ ├── PercentBar.NoData.stories.storyshot │ │ │ │ │ ├── PercentBar.Percent100.stories.storyshot │ │ │ │ │ ├── PercentBar.Percent50.stories.storyshot │ │ │ │ │ ├── PercentBar.Tooltip.stories.storyshot │ │ │ │ │ ├── PercentageCircle.NoData.stories.storyshot │ │ │ │ │ ├── PercentageCircle.Percent100.stories.storyshot │ │ │ │ │ └── PercentageCircle.Percent50.stories.storyshot │ │ │ ├── Chart.tsx │ │ │ ├── ConfirmButton.stories.tsx │ │ │ ├── ConfirmButton.tsx │ │ │ ├── ConfirmDialog.stories.tsx │ │ │ ├── ConfirmDialog.tsx │ │ │ ├── CreateResourceButton.stories.tsx │ │ │ ├── CreateResourceButton.tsx │ │ │ ├── Dialog.stories.tsx │ │ │ ├── Dialog.tsx │ │ │ ├── DropZoneBox.stories.tsx │ │ │ ├── DropZoneBox.tsx │ │ │ ├── EmptyContent.stories.tsx │ │ │ ├── EmptyContent.tsx │ │ │ ├── ErrorBoundary │ │ │ │ ├── ErrorBoundary.stories.tsx │ │ │ │ ├── ErrorBoundary.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── ErrorBoundary.BrokenFallback.stories.storyshot │ │ │ │ │ ├── ErrorBoundary.BrokenFallbackElement.stories.storyshot │ │ │ │ │ ├── ErrorBoundary.BrokenNoFallback.stories.storyshot │ │ │ │ │ └── ErrorBoundary.NoProblem.stories.storyshot │ │ │ │ └── index.tsx │ │ │ ├── ErrorPage │ │ │ │ ├── ErrorPage.stories.tsx │ │ │ │ ├── ErrorPage.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── ErrorPage.ComponentMessage.stories.storyshot │ │ │ │ │ ├── ErrorPage.ComponentTitle.stories.storyshot │ │ │ │ │ ├── ErrorPage.Default.stories.storyshot │ │ │ │ │ ├── ErrorPage.DifferentImage.stories.storyshot │ │ │ │ │ ├── ErrorPage.NumberGraphic.stories.storyshot │ │ │ │ │ ├── ErrorPage.StringGraphic.stories.storyshot │ │ │ │ │ ├── ErrorPage.StringMessage.stories.storyshot │ │ │ │ │ └── ErrorPage.WithErrorStack.stories.storyshot │ │ │ │ └── index.tsx │ │ │ ├── InnerTable.stories.tsx │ │ │ ├── InnerTable.tsx │ │ │ ├── Label.stories │ │ │ │ ├── DateLabel.stories.tsx │ │ │ │ ├── HeaderLabel.stories.tsx │ │ │ │ ├── HoverInfoLabel.stories.tsx │ │ │ │ ├── InfoLabel.stories.tsx │ │ │ │ ├── NameLabel.stories.tsx │ │ │ │ ├── StatusLabel.stories.tsx │ │ │ │ ├── ValueLabel.stories.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ ├── DateLabel.Default.stories.storyshot │ │ │ │ │ ├── DateLabel.MiniLabel.stories.storyshot │ │ │ │ │ ├── HeaderLabel.HeaderLabel.stories.storyshot │ │ │ │ │ ├── HeaderLabel.HeaderLabelToolTip.stories.storyshot │ │ │ │ │ ├── HoverInfoLabel.HoverInfoLabel.stories.storyshot │ │ │ │ │ ├── HoverInfoLabel.HoverInfoLabelInfo.stories.storyshot │ │ │ │ │ ├── HoverInfoLabel.IconPosition.stories.storyshot │ │ │ │ │ ├── HoverInfoLabel.LabelProps.stories.storyshot │ │ │ │ │ ├── InfoLabel.InfoLabel.stories.storyshot │ │ │ │ │ ├── NameLabel.NameLabel.stories.storyshot │ │ │ │ │ ├── StatusLabel.Error.stories.storyshot │ │ │ │ │ ├── StatusLabel.Success.stories.storyshot │ │ │ │ │ ├── StatusLabel.Warning.stories.storyshot │ │ │ │ │ └── ValueLabel.ValueLabel.stories.storyshot │ │ │ ├── Label.tsx │ │ │ ├── LabelListItem.stories.tsx │ │ │ ├── LabelListItem.tsx │ │ │ ├── Link.stories.tsx │ │ │ ├── Link.tsx │ │ │ ├── Loader.stories.tsx │ │ │ ├── Loader.test.tsx │ │ │ ├── Loader.tsx │ │ │ ├── LogViewer.stories.tsx │ │ │ ├── LogViewer.tsx │ │ │ ├── NameValueTable │ │ │ │ ├── NameValueTable.stories.tsx │ │ │ │ ├── NameValueTable.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── NameValueTable.Empty.stories.storyshot │ │ │ │ │ ├── NameValueTable.WithChildren.stories.storyshot │ │ │ │ │ └── NameValueTable.WithHiddenLastChildren.stories.storyshot │ │ │ │ └── index.tsx │ │ │ ├── NamespacesAutocomplete.stories.tsx │ │ │ ├── NamespacesAutocomplete.tsx │ │ │ ├── ObjectEventList.stories.tsx │ │ │ ├── ObjectEventList.tsx │ │ │ ├── ReleaseNotes │ │ │ │ ├── ReleaseNotes.stories.tsx │ │ │ │ ├── ReleaseNotes.tsx │ │ │ │ ├── ReleaseNotesModal.stories.tsx │ │ │ │ ├── ReleaseNotesModal.tsx │ │ │ │ ├── UpdatePopup.stories.tsx │ │ │ │ ├── UpdatePopup.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ ├── ReleaseNotes.Default.stories.storyshot │ │ │ │ │ ├── ReleaseNotesModal.Closed.stories.storyshot │ │ │ │ │ ├── ReleaseNotesModal.Show.stories.storyshot │ │ │ │ │ ├── ReleaseNotesModal.ShowNoNotes.stories.storyshot │ │ │ │ │ ├── UpdatePopup.FetchFailed.stories.storyshot │ │ │ │ │ ├── UpdatePopup.Fetching.stories.storyshot │ │ │ │ │ └── UpdatePopup.Show.stories.storyshot │ │ │ ├── Resource │ │ │ │ ├── AuthVisible.tsx │ │ │ │ ├── CircularChart.tsx │ │ │ │ ├── CopyButton.stories.tsx │ │ │ │ ├── CopyButton.tsx │ │ │ │ ├── CreateButton.stories.tsx │ │ │ │ ├── CreateButton.tsx │ │ │ │ ├── DeleteButton.tsx │ │ │ │ ├── DeleteMultipleButton.tsx │ │ │ │ ├── DetailsDrawer.tsx │ │ │ │ ├── DocsViewer.stories.tsx │ │ │ │ ├── DocsViewer.tsx │ │ │ │ ├── EditButton.tsx │ │ │ │ ├── EditorDialog.stories.tsx │ │ │ │ ├── EditorDialog.tsx │ │ │ │ ├── LogsButton.tsx │ │ │ │ ├── MainInfoSection │ │ │ │ │ ├── MainInfoSection.stories.tsx │ │ │ │ │ ├── MainInfoSection.tsx │ │ │ │ │ ├── MainInfoSectionHeader.tsx │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ ├── MainInfoSection.Normal.stories.storyshot │ │ │ │ │ │ └── MainInfoSection.NullBacklink.stories.storyshot │ │ │ │ │ └── index.tsx │ │ │ │ ├── MatchExpressions.stories.tsx │ │ │ │ ├── MatchExpressions.tsx │ │ │ │ ├── MetadataDisplay.stories.tsx │ │ │ │ ├── MetadataDisplay.tsx │ │ │ │ ├── PortForward.tsx │ │ │ │ ├── Resource.tsx │ │ │ │ ├── ResourceListView.stories.tsx │ │ │ │ ├── ResourceListView.tsx │ │ │ │ ├── ResourceTable.stories.tsx │ │ │ │ ├── ResourceTable.tsx │ │ │ │ ├── ResourceTableColumnChooser.tsx │ │ │ │ ├── ResourceTableMultiActions.tsx │ │ │ │ ├── RestartButton.stories.tsx │ │ │ │ ├── RestartButton.tsx │ │ │ │ ├── RestartMultipleButton.stories.tsx │ │ │ │ ├── RestartMultipleButton.tsx │ │ │ │ ├── ScaleButton.stories.tsx │ │ │ │ ├── ScaleButton.tsx │ │ │ │ ├── SimpleEditor.stories.tsx │ │ │ │ ├── SimpleEditor.tsx │ │ │ │ ├── UploadDialog.tsx │ │ │ │ ├── ViewButton.stories.tsx │ │ │ │ ├── ViewButton.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── CopyButton.Default.stories.storyshot │ │ │ │ │ ├── CopyButton.NoTextButton.stories.storyshot │ │ │ │ │ ├── CreateButton.Default.stories.storyshot │ │ │ │ │ ├── CreateButton.NarrowButton.stories.storyshot │ │ │ │ │ ├── DocsViewer.ErrorDocumentation.stories.storyshot │ │ │ │ │ ├── DocsViewer.NoDocumentation.stories.storyshot │ │ │ │ │ ├── DocsViewer.NoMatchingDocumentation.stories.storyshot │ │ │ │ │ ├── DocsViewer.TypicalDocumentation.stories.storyshot │ │ │ │ │ ├── EditorDialog.EditorDialogWithResource.stories.storyshot │ │ │ │ │ ├── EditorDialog.EditorDialogWithResourceClosed.stories.storyshot │ │ │ │ │ ├── EditorDialog.ExtraActions.stories.storyshot │ │ │ │ │ ├── MatchExpressions.Default.stories.storyshot │ │ │ │ │ ├── MatchExpressions.WithExpressions.stories.storyshot │ │ │ │ │ ├── MetadataDisplay.MetadataDisplay.stories.storyshot │ │ │ │ │ ├── MetadataDisplay.WithExtraRows.stories.storyshot │ │ │ │ │ ├── MetadataDisplay.WithManyLabels.stories.storyshot │ │ │ │ │ ├── MetadataDisplay.WithOwnerReferences.stories.storyshot │ │ │ │ │ ├── ResourceListView.OneHiddenColumn.stories.storyshot │ │ │ │ │ ├── ResourceTable.NameSearch.stories.storyshot │ │ │ │ │ ├── ResourceTable.NoFilter.stories.storyshot │ │ │ │ │ ├── ResourceTable.WithHiddenCols.stories.storyshot │ │ │ │ │ ├── RestartButton.DeploymentExample.stories.storyshot │ │ │ │ │ ├── RestartButton.StatefulSetExample.stories.storyshot │ │ │ │ │ ├── RestartMultipleButton.AfterConfirmCallback.stories.storyshot │ │ │ │ │ ├── RestartMultipleButton.Default.stories.storyshot │ │ │ │ │ ├── RestartMultipleButton.MenuButtonStyle.stories.storyshot │ │ │ │ │ ├── ScaleButton.DeploymentExample.stories.storyshot │ │ │ │ │ ├── ScaleButton.ReplicaSetExample.stories.storyshot │ │ │ │ │ ├── ScaleButton.StatefulSetExample.stories.storyshot │ │ │ │ │ ├── SimpleEditor.Simple.stories.storyshot │ │ │ │ │ ├── ViewButton.View.stories.storyshot │ │ │ │ │ └── ViewButton.ViewOpen.stories.storyshot │ │ │ │ ├── index.test.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── resourceTableSlice.test.ts │ │ │ │ └── resourceTableSlice.ts │ │ │ ├── SectionBox.stories.tsx │ │ │ ├── SectionBox.tsx │ │ │ ├── SectionFilterHeader.tsx │ │ │ ├── SectionHeader.stories.tsx │ │ │ ├── SectionHeader.tsx │ │ │ ├── ShowHideLabel │ │ │ │ ├── ShowHideLabel.stories.tsx │ │ │ │ ├── ShowHideLabel.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── ShowHideLabel.Basic.stories.storyshot │ │ │ │ │ ├── ShowHideLabel.Empty.stories.storyshot │ │ │ │ │ ├── ShowHideLabel.Expanded.stories.storyshot │ │ │ │ │ └── ShowHideLabel.ShortText.stories.storyshot │ │ │ │ └── index.tsx │ │ │ ├── SimpleTable.stories.tsx │ │ │ ├── SimpleTable.tsx │ │ │ ├── Table │ │ │ │ ├── Table.stories.tsx │ │ │ │ ├── Table.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── Table.Datum.stories.storyshot │ │ │ │ │ ├── Table.Getter.stories.storyshot │ │ │ │ │ ├── Table.LabelSearch.stories.storyshot │ │ │ │ │ ├── Table.NameSearch.stories.storyshot │ │ │ │ │ ├── Table.NamespaceSearch.stories.storyshot │ │ │ │ │ ├── Table.NamespaceSelect.stories.storyshot │ │ │ │ │ ├── Table.NotFoundMessage.stories.storyshot │ │ │ │ │ ├── Table.NumberSearch.stories.storyshot │ │ │ │ │ ├── Table.ReflectInURL.stories.storyshot │ │ │ │ │ ├── Table.ReflectInURLWithPrefix.stories.storyshot │ │ │ │ │ ├── Table.UIDSearch.stories.storyshot │ │ │ │ │ ├── Table.WithFilterMultiSelect.stories.storyshot │ │ │ │ │ ├── Table.WithGlobalFilter.stories.storyshot │ │ │ │ │ └── Table.WithSorting.stories.storyshot │ │ │ │ └── index.tsx │ │ │ ├── Tabs.stories.tsx │ │ │ ├── Tabs.tsx │ │ │ ├── Terminal.tsx │ │ │ ├── TileChart │ │ │ │ ├── TileChart.stories.tsx │ │ │ │ ├── TileChart.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── TileChart.WithProgress.stories.storyshot │ │ │ │ │ └── TileChart.WithoutProgress.stories.storyshot │ │ │ │ └── index.tsx │ │ │ ├── TimezoneSelect │ │ │ │ ├── TimezoneSelect.stories.tsx │ │ │ │ ├── TimezoneSelect.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── TimezoneSelect.Default.stories.storyshot │ │ │ │ │ └── TimezoneSelect.NoInitialValue.stories.storyshot │ │ │ │ └── index.tsx │ │ │ ├── Tooltip │ │ │ │ ├── TooltipIcon.stories.tsx │ │ │ │ ├── TooltipIcon.tsx │ │ │ │ ├── TooltipLight.stories.tsx │ │ │ │ ├── TooltipLight.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── TooltipIcon.JustText.stories.storyshot │ │ │ │ │ ├── TooltipIcon.WithIcon.stories.storyshot │ │ │ │ │ ├── TooltipLight.Add.stories.storyshot │ │ │ │ │ ├── TooltipLight.Interactive.stories.storyshot │ │ │ │ │ └── TooltipLight.NotInteractive.stories.storyshot │ │ │ │ └── index.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── ActionsNotifier.None.stories.storyshot │ │ │ │ ├── ActionsNotifier.Some.stories.storyshot │ │ │ │ ├── AlertNotification.Error.stories.storyshot │ │ │ │ ├── AlertNotification.ErrorOnCheck.stories.storyshot │ │ │ │ ├── AlertNotification.NoError.stories.storyshot │ │ │ │ ├── AlertNotification.NoErrorInitially.stories.storyshot │ │ │ │ ├── AlertNotification.OnExcludedRoute.stories.storyshot │ │ │ │ ├── AlertNotification.OnNonClusterRoute.stories.storyshot │ │ │ │ ├── AlertNotification.SimulatingOffline.stories.storyshot │ │ │ │ ├── ConfirmButton.Confirm.stories.storyshot │ │ │ │ ├── ConfirmButton.ExtendsButton.stories.storyshot │ │ │ │ ├── ConfirmDialog.ConfirmDialog.stories.storyshot │ │ │ │ ├── ConfirmDialog.ConfirmDialogCancelHidden.stories.storyshot │ │ │ │ ├── ConfirmDialog.ConfirmDialogClosed.stories.storyshot │ │ │ │ ├── CreateResourceButton.ConfigMapStory.stories.storyshot │ │ │ │ ├── CreateResourceButton.InvalidResource.stories.storyshot │ │ │ │ ├── CreateResourceButton.ValidResource.stories.storyshot │ │ │ │ ├── Dialog.Dialog.stories.storyshot │ │ │ │ ├── Dialog.DialogAlreadyInFullScreen.stories.storyshot │ │ │ │ ├── Dialog.DialogWithCloseButton.stories.storyshot │ │ │ │ ├── Dialog.DialogWithFullScreenButton.stories.storyshot │ │ │ │ ├── DropZoneBox.UploadFiles.stories.storyshot │ │ │ │ ├── EmptyContent.Default.stories.storyshot │ │ │ │ ├── EmptyContent.Empty.stories.storyshot │ │ │ │ ├── EmptyContent.WithCustomColor.stories.storyshot │ │ │ │ ├── EmptyContent.WithMultipleChildren.stories.storyshot │ │ │ │ ├── InnerTable.Default.stories.storyshot │ │ │ │ ├── InnerTable.EmptyTable.stories.storyshot │ │ │ │ ├── InnerTable.InsideAnotherComponent.stories.storyshot │ │ │ │ ├── InnerTable.WithFewRows.stories.storyshot │ │ │ │ ├── InnerTable.WithoutTableHeader.stories.storyshot │ │ │ │ ├── LabelListItem.List.stories.storyshot │ │ │ │ ├── Link.AutoTooltip.stories.storyshot │ │ │ │ ├── Link.Basic.stories.storyshot │ │ │ │ ├── Link.ExplicitTooltip.stories.storyshot │ │ │ │ ├── Link.Params.stories.storyshot │ │ │ │ ├── Loader.CustomColor.stories.storyshot │ │ │ │ ├── Loader.CustomSize.stories.storyshot │ │ │ │ ├── Loader.DefaultWithContainer.stories.storyshot │ │ │ │ ├── Loader.InlineNoContainer.stories.storyshot │ │ │ │ ├── Loader.InsideAComponent.stories.storyshot │ │ │ │ ├── Loader.NoTitleProvided.stories.storyshot │ │ │ │ ├── Loader.WithContainer.stories.storyshot │ │ │ │ ├── Loader.WithoutContainer.stories.storyshot │ │ │ │ ├── LogViewer.BasicLogs.stories.storyshot │ │ │ │ ├── LogViewer.ColoredLogs.stories.storyshot │ │ │ │ ├── LogViewer.LiveUpdatingLogs.stories.storyshot │ │ │ │ ├── LogViewer.LogOverflow.stories.storyshot │ │ │ │ ├── LogViewer.ReconnectToSeeLogs.stories.storyshot │ │ │ │ ├── LogViewer.SomeLogs.stories.storyshot │ │ │ │ ├── LogViewer.TopActions.stories.storyshot │ │ │ │ ├── NamespacesAutocomplete.Some.stories.storyshot │ │ │ │ ├── ObjectEventList.ErrorFetching.stories.storyshot │ │ │ │ ├── ObjectEventList.NoEventsForObject.stories.storyshot │ │ │ │ ├── ObjectEventList.WithEvents.stories.storyshot │ │ │ │ ├── SectionBox.CustomTitle.stories.storyshot │ │ │ │ ├── SectionBox.HeaderProps.stories.storyshot │ │ │ │ ├── SectionBox.Titled.stories.storyshot │ │ │ │ ├── SectionBox.TitledChildren.stories.storyshot │ │ │ │ ├── SectionBox.WithChildren.stories.storyshot │ │ │ │ ├── SectionHeader.Actions.stories.storyshot │ │ │ │ ├── SectionHeader.LabelStyle.stories.storyshot │ │ │ │ ├── SectionHeader.LongTitle.stories.storyshot │ │ │ │ ├── SectionHeader.Main.stories.storyshot │ │ │ │ ├── SectionHeader.MainStyle.stories.storyshot │ │ │ │ ├── SectionHeader.NoActionsOrSubtitle.stories.storyshot │ │ │ │ ├── SectionHeader.Normal.stories.storyshot │ │ │ │ ├── SectionHeader.NormalNoPadding.stories.storyshot │ │ │ │ ├── SectionHeader.NormalStyle.stories.storyshot │ │ │ │ ├── SectionHeader.SubSectionStyle.stories.storyshot │ │ │ │ ├── SectionHeader.Subsection.stories.storyshot │ │ │ │ ├── SectionHeader.WithActions.stories.storyshot │ │ │ │ ├── SectionHeader.WithNoPadding.stories.storyshot │ │ │ │ ├── SectionHeader.WithReactNodeAsTitle.stories.storyshot │ │ │ │ ├── SectionHeader.WithTitleSideActions.stories.storyshot │ │ │ │ ├── SimpleTable.Datum.stories.storyshot │ │ │ │ ├── SimpleTable.Getter.stories.storyshot │ │ │ │ ├── SimpleTable.LabelSearch.stories.storyshot │ │ │ │ ├── SimpleTable.NameSearch.stories.storyshot │ │ │ │ ├── SimpleTable.NamespaceSearch.stories.storyshot │ │ │ │ ├── SimpleTable.NamespaceSelect.stories.storyshot │ │ │ │ ├── SimpleTable.NotFoundMessage.stories.storyshot │ │ │ │ ├── SimpleTable.NumberSearch.stories.storyshot │ │ │ │ ├── SimpleTable.ReflectInURL.stories.storyshot │ │ │ │ ├── SimpleTable.ReflectInURLWithPrefix.stories.storyshot │ │ │ │ ├── SimpleTable.UIDSearch.stories.storyshot │ │ │ │ ├── Tabs.BasicTabs.stories.storyshot │ │ │ │ └── Tabs.StartingTab.stories.storyshot │ │ │ ├── index.test.ts │ │ │ └── index.ts │ │ ├── configmap │ │ │ ├── Details.stories.tsx │ │ │ ├── Details.tsx │ │ │ ├── List.stories.tsx │ │ │ ├── List.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── Details.Empty.stories.storyshot │ │ │ │ ├── Details.WithBase.stories.storyshot │ │ │ │ └── List.Items.stories.storyshot │ │ │ └── storyHelper.ts │ │ ├── crd │ │ │ ├── CustomResourceDefinition.stories.tsx │ │ │ ├── CustomResourceDetails.stories.tsx │ │ │ ├── CustomResourceDetails.tsx │ │ │ ├── CustomResourceInstancesList.tsx │ │ │ ├── CustomResourceList.stories.tsx │ │ │ ├── CustomResourceList.tsx │ │ │ ├── Details.tsx │ │ │ ├── List.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── CustomResourceDefinition.Details.stories.storyshot │ │ │ │ ├── CustomResourceDefinition.List.stories.storyshot │ │ │ │ ├── CustomResourceDetails.ErrorGettingCR.stories.storyshot │ │ │ │ ├── CustomResourceDetails.ErrorGettingCRD.stories.storyshot │ │ │ │ ├── CustomResourceDetails.LoadingCRD.stories.storyshot │ │ │ │ ├── CustomResourceDetails.NoError.stories.storyshot │ │ │ │ └── CustomResourceList.List.stories.storyshot │ │ │ └── storyHelper.ts │ │ ├── cronjob │ │ │ ├── CronJobDetails.stories.tsx │ │ │ ├── Details.tsx │ │ │ ├── List.stories.tsx │ │ │ ├── List.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── CronJobDetails.EveryAst.stories.storyshot │ │ │ │ ├── CronJobDetails.EveryMinute.stories.storyshot │ │ │ │ └── List.Items.stories.storyshot │ │ │ └── storyHelper.ts │ │ ├── daemonset │ │ │ ├── Details.tsx │ │ │ ├── List.stories.tsx │ │ │ ├── List.tsx │ │ │ └── __snapshots__ │ │ │ │ └── List.DaemonSets.stories.storyshot │ │ ├── deployments │ │ │ ├── List.stories.tsx │ │ │ ├── List.tsx │ │ │ └── __snapshots__ │ │ │ │ └── List.Deployments.stories.storyshot │ │ ├── endpointSlices │ │ │ ├── Details.tsx │ │ │ ├── EndpointSliceDetails.stories.tsx │ │ │ ├── EndpointSliceList.stories.tsx │ │ │ ├── List.tsx │ │ │ └── __snapshots__ │ │ │ │ ├── EndpointSliceDetails.Default.stories.storyshot │ │ │ │ ├── EndpointSliceDetails.Error.stories.storyshot │ │ │ │ └── EndpointSliceList.Items.stories.storyshot │ │ ├── endpoints │ │ │ ├── Details.tsx │ │ │ ├── EndpointDetails.stories.tsx │ │ │ ├── EndpointList.stories.tsx │ │ │ ├── List.tsx │ │ │ └── __snapshots__ │ │ │ │ ├── EndpointDetails.Default.stories.storyshot │ │ │ │ ├── EndpointDetails.Error.stories.storyshot │ │ │ │ └── EndpointList.Items.stories.storyshot │ │ ├── gateway │ │ │ ├── BackendTLSPolicyDetails.stories.tsx │ │ │ ├── BackendTLSPolicyDetails.tsx │ │ │ ├── BackendTLSPolicyList.stories.tsx │ │ │ ├── BackendTLSPolicyList.tsx │ │ │ ├── BackendTrafficPolicyDetails.stories.tsx │ │ │ ├── BackendTrafficPolicyDetails.tsx │ │ │ ├── BackendTrafficPolicyList.stories.tsx │ │ │ ├── BackendTrafficPolicyList.tsx │ │ │ ├── ClassDetails.stories.tsx │ │ │ ├── ClassDetails.tsx │ │ │ ├── ClassList.stories.tsx │ │ │ ├── ClassList.tsx │ │ │ ├── GRPCRouteDetails.stories.tsx │ │ │ ├── GRPCRouteDetails.tsx │ │ │ ├── GRPCRouteList.stories.tsx │ │ │ ├── GRPCRouteList.tsx │ │ │ ├── GatewayDetails.stories.tsx │ │ │ ├── GatewayDetails.tsx │ │ │ ├── GatewayList.stories.tsx │ │ │ ├── GatewayList.tsx │ │ │ ├── HTTPRouteDetails.stories.tsx │ │ │ ├── HTTPRouteDetails.tsx │ │ │ ├── HTTPRouteList.stories.tsx │ │ │ ├── HTTPRouteList.tsx │ │ │ ├── ReferenceGrantDetails.stories.tsx │ │ │ ├── ReferenceGrantDetails.tsx │ │ │ ├── ReferenceGrantList.stories.tsx │ │ │ ├── ReferenceGrantList.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── BackendTLSPolicyDetails.Basic.stories.storyshot │ │ │ │ ├── BackendTLSPolicyList.Items.stories.storyshot │ │ │ │ ├── BackendTrafficPolicyDetails.Basic.stories.storyshot │ │ │ │ ├── BackendTrafficPolicyList.Items.stories.storyshot │ │ │ │ ├── ClassDetails.Basic.stories.storyshot │ │ │ │ ├── ClassList.Items.stories.storyshot │ │ │ │ ├── GRPCRouteDetails.Basic.stories.storyshot │ │ │ │ ├── GRPCRouteList.Items.stories.storyshot │ │ │ │ ├── GatewayDetails.Basic.stories.storyshot │ │ │ │ ├── GatewayList.Items.stories.storyshot │ │ │ │ ├── HTTPRouteDetails.Basic.stories.storyshot │ │ │ │ ├── HTTPRouteDetails.Empty.stories.storyshot │ │ │ │ ├── HTTPRouteList.Items.stories.storyshot │ │ │ │ ├── ReferenceGrantDetails.Basic.stories.storyshot │ │ │ │ └── ReferenceGrantList.Items.stories.storyshot │ │ │ ├── manifests │ │ │ │ ├── backendtls.yaml │ │ │ │ ├── backendtraffic.yaml │ │ │ │ ├── gateway.yaml │ │ │ │ ├── gatewayclass.yaml │ │ │ │ ├── grpcroute.yaml │ │ │ │ ├── httproute.yaml │ │ │ │ └── referencegrant.yaml │ │ │ ├── storyHelper.ts │ │ │ └── utils.tsx │ │ ├── globalSearch │ │ │ ├── Delayed.tsx │ │ │ ├── GlobalSearch.stories.tsx │ │ │ ├── GlobalSearch.tsx │ │ │ ├── GlobalSearchContent.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── GlobalSearch.BasicExample.stories.storyshot │ │ │ ├── useLocalStorageState.tsx │ │ │ └── useRecent.tsx │ │ ├── horizontalPodAutoscaler │ │ │ ├── Details.tsx │ │ │ ├── HPADetails.stories.tsx │ │ │ ├── HPAList.stories.tsx │ │ │ ├── List.tsx │ │ │ └── __snapshots__ │ │ │ │ ├── HPADetails.Default.stories.storyshot │ │ │ │ ├── HPADetails.Error.stories.storyshot │ │ │ │ ├── HPADetails.NoItemYet.stories.storyshot │ │ │ │ └── HPAList.Items.stories.storyshot │ │ ├── ingress │ │ │ ├── ClassDetails.stories.tsx │ │ │ ├── ClassDetails.tsx │ │ │ ├── ClassList.stories.tsx │ │ │ ├── ClassList.tsx │ │ │ ├── Details.stories.tsx │ │ │ ├── Details.tsx │ │ │ ├── LinkStringFormat.stories.tsx │ │ │ ├── List.stories.tsx │ │ │ ├── List.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── ClassDetails.Basic.stories.storyshot │ │ │ │ ├── ClassDetails.WithDefault.stories.storyshot │ │ │ │ ├── ClassList.Items.stories.storyshot │ │ │ │ ├── Details.WithResource.stories.storyshot │ │ │ │ ├── Details.WithTLS.stories.storyshot │ │ │ │ ├── Details.WithWildcardTLS.stories.storyshot │ │ │ │ ├── LinkStringFormat.Empty.stories.storyshot │ │ │ │ ├── LinkStringFormat.morePath.stories.storyshot │ │ │ │ ├── LinkStringFormat.soloPath.stories.storyshot │ │ │ │ └── List.Items.stories.storyshot │ │ │ └── storyHelper.ts │ │ ├── job │ │ │ ├── JobList.stories.tsx │ │ │ ├── List.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── JobList.Items.stories.storyshot │ │ │ └── storyHelper.ts │ │ ├── lease │ │ │ ├── Details.stories.tsx │ │ │ ├── Details.tsx │ │ │ ├── List.stories.tsx │ │ │ ├── List.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── Details.LeaseDetail.stories.storyshot │ │ │ │ └── List.Items.stories.storyshot │ │ │ └── storyHelper.ts │ │ ├── limitRange │ │ │ ├── Details.stories.tsx │ │ │ ├── Details.tsx │ │ │ ├── List.stories.tsx │ │ │ ├── List.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── Details.LimitRangeDetail.stories.storyshot │ │ │ │ └── List.Items.stories.storyshot │ │ │ └── storyHelper.ts │ │ ├── monaco │ │ │ └── MonacoEditorLoaderInitializer.tsx │ │ ├── namespace │ │ │ ├── CreateNamespaceButton.stories.tsx │ │ │ ├── CreateNamespaceButton.tsx │ │ │ ├── Details.tsx │ │ │ ├── List.tsx │ │ │ ├── NamespaceDetails.stories.tsx │ │ │ ├── NamespaceList.stories.tsx │ │ │ └── __snapshots__ │ │ │ │ ├── CreateNamespaceButton.EmptyName.stories.storyshot │ │ │ │ ├── CreateNamespaceButton.NotValidName.stories.storyshot │ │ │ │ ├── CreateNamespaceButton.NotValidNameLong.stories.storyshot │ │ │ │ ├── CreateNamespaceButton.OkayName.stories.storyshot │ │ │ │ ├── CreateNamespaceButton.badNamespaceData.stories.storyshot │ │ │ │ ├── CreateNamespaceButton.longNamespaceData.stories.storyshot │ │ │ │ ├── CreateNamespaceButton.newNamespaceData.stories.storyshot │ │ │ │ ├── NamespaceDetails.Active.stories.storyshot │ │ │ │ └── NamespaceList.Regular.stories.storyshot │ │ ├── networkpolicy │ │ │ ├── Details.stories.tsx │ │ │ ├── Details.tsx │ │ │ ├── List.stories.tsx │ │ │ ├── List.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── Details.Default.stories.storyshot │ │ │ │ └── List.Items.stories.storyshot │ │ │ └── storyHelper.ts │ │ ├── node │ │ │ ├── Charts.tsx │ │ │ ├── Details.tsx │ │ │ ├── List.stories.tsx │ │ │ ├── List.tsx │ │ │ ├── NodeShellAction.tsx │ │ │ ├── NodeShellTerminal.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── List.Nodes.stories.storyshot │ │ │ ├── storyHelper.ts │ │ │ └── utils.tsx │ │ ├── oidcauth │ │ │ ├── OauthPopup.stories.tsx │ │ │ ├── OauthPopup.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── OauthPopup.Default.stories.storyshot │ │ │ │ └── OauthPopup.WithDimensions.stories.storyshot │ │ │ └── index.tsx │ │ ├── pod │ │ │ ├── Details.tsx │ │ │ ├── List.tsx │ │ │ ├── PodDetails.stories.tsx │ │ │ ├── PodList.stories.tsx │ │ │ ├── PodLogs.stories.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── PodDetails.Error.stories.storyshot │ │ │ │ ├── PodDetails.Initializing.stories.storyshot │ │ │ │ ├── PodDetails.LivenessFailed.stories.storyshot │ │ │ │ ├── PodDetails.PullBackOff.stories.storyshot │ │ │ │ ├── PodDetails.Running.stories.storyshot │ │ │ │ ├── PodDetails.Successful.stories.storyshot │ │ │ │ ├── PodList.Items.stories.storyshot │ │ │ │ ├── PodLogs.BigJsonLogs.stories.storyshot │ │ │ │ ├── PodLogs.FormattedJsonLogs.stories.storyshot │ │ │ │ ├── PodLogs.FormattingLogs.stories.storyshot │ │ │ │ ├── PodLogs.JsonLogs.stories.storyshot │ │ │ │ ├── PodLogs.PlainLogs.stories.storyshot │ │ │ │ ├── podDetailsVolumeSection.Empty.stories.storyshot │ │ │ │ ├── podDetailsVolumeSection.Short.stories.storyshot │ │ │ │ └── podDetailsVolumeSection.Successful.stories.storyshot │ │ │ ├── jsonHandling.test.ts │ │ │ ├── jsonHandling.ts │ │ │ ├── podDetailsVolumeSection.stories.tsx │ │ │ └── storyHelper.ts │ │ ├── podDisruptionBudget │ │ │ ├── Details.tsx │ │ │ ├── List.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── pdbDetails.Default.stories.storyshot │ │ │ │ ├── pdbDetails.Error.stories.storyshot │ │ │ │ ├── pdbDetails.NoItemYet.stories.storyshot │ │ │ │ └── pdbList.Items.stories.storyshot │ │ │ ├── pdbDetails.stories.tsx │ │ │ └── pdbList.stories.tsx │ │ ├── portforward │ │ │ ├── PortForwardStartDialog.tsx │ │ │ └── index.tsx │ │ ├── priorityClass │ │ │ ├── Details.tsx │ │ │ ├── List.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── priorityClassDetails.Default.stories.storyshot │ │ │ │ ├── priorityClassDetails.Error.stories.storyshot │ │ │ │ ├── priorityClassDetails.NoItemYet.stories.storyshot │ │ │ │ └── priorityClassList.Items.stories.storyshot │ │ │ ├── priorityClassDetails.stories.tsx │ │ │ └── priorityClassList.stories.tsx │ │ ├── project │ │ │ ├── NewProjectPopup.tsx │ │ │ ├── ProjectCreateFromYaml.stories.tsx │ │ │ ├── ProjectCreateFromYaml.tsx │ │ │ ├── ProjectDeleteButton.tsx │ │ │ ├── ProjectDeleteDialog.tsx │ │ │ ├── ProjectDetails.stories.tsx │ │ │ ├── ProjectDetails.tsx │ │ │ ├── ProjectList.stories.tsx │ │ │ ├── ProjectList.tsx │ │ │ ├── ProjectResourcesTab.stories.tsx │ │ │ ├── ProjectResourcesTab.tsx │ │ │ ├── ResourceCategoriesList.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── ProjectCreateFromYaml.Default.stories.storyshot │ │ │ │ ├── ProjectDetails.EmptyProject.stories.storyshot │ │ │ │ ├── ProjectDetails.WithLabelsOnly.stories.storyshot │ │ │ │ ├── ProjectForm.CreateNew.stories.storyshot │ │ │ │ ├── ProjectForm.EditExisting.stories.storyshot │ │ │ │ ├── ProjectList.Empty.stories.storyshot │ │ │ │ ├── ProjectList.WithProjects.stories.storyshot │ │ │ │ ├── ProjectResourcesTab.Empty.stories.storyshot │ │ │ │ └── ProjectResourcesTab.WithWorkloads.stories.storyshot │ │ │ ├── projectUtils.test.ts │ │ │ ├── projectUtils.ts │ │ │ └── useProjectResources.ts │ │ ├── replicaset │ │ │ ├── List.stories.tsx │ │ │ ├── List.tsx │ │ │ └── __snapshots__ │ │ │ │ └── List.ReplicaSets.stories.storyshot │ │ ├── resourceMap │ │ │ ├── GraphControls.tsx │ │ │ ├── GraphRenderer.tsx │ │ │ ├── GraphView.css │ │ │ ├── GraphView.stories.tsx │ │ │ ├── GraphView.tsx │ │ │ ├── KubeObjectGlance │ │ │ │ ├── DeploymentGlance.tsx │ │ │ │ ├── EndpointsGlance.tsx │ │ │ │ ├── HorizontalPodAutoscalerGlance.tsx │ │ │ │ ├── KubeObjectGlance.tsx │ │ │ │ ├── NodeGlance.tsx │ │ │ │ ├── PodGlance.tsx │ │ │ │ ├── ReplicaSetGlance.tsx │ │ │ │ └── ServiceGlance.tsx │ │ │ ├── SelectionBreadcrumbs.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── GraphView.BasicExample.stories.storyshot │ │ │ ├── details │ │ │ │ ├── GraphNodeDetails.tsx │ │ │ │ └── KubeNodeDetails.tsx │ │ │ ├── edges │ │ │ │ └── GraphEdgeComponent.tsx │ │ │ ├── graph │ │ │ │ ├── graphFiltering.test.ts │ │ │ │ ├── graphFiltering.ts │ │ │ │ ├── graphGrouping.test.ts │ │ │ │ ├── graphGrouping.tsx │ │ │ │ ├── graphLayout.tsx │ │ │ │ ├── graphLookup.test.ts │ │ │ │ ├── graphLookup.ts │ │ │ │ ├── graphModel.test.ts │ │ │ │ └── graphModel.tsx │ │ │ ├── graphConstants.ts │ │ │ ├── graphViewSlice.tsx │ │ │ ├── kubeIcon │ │ │ │ ├── KubeIcon.tsx │ │ │ │ └── img │ │ │ │ │ ├── c-role.svg │ │ │ │ │ ├── cm.svg │ │ │ │ │ ├── crb.svg │ │ │ │ │ ├── crd.svg │ │ │ │ │ ├── cronjob.svg │ │ │ │ │ ├── deploy.svg │ │ │ │ │ ├── ds.svg │ │ │ │ │ ├── ep.svg │ │ │ │ │ ├── gateway.svg │ │ │ │ │ ├── group.svg │ │ │ │ │ ├── hpa.svg │ │ │ │ │ ├── ing.svg │ │ │ │ │ ├── job.svg │ │ │ │ │ ├── limits.svg │ │ │ │ │ ├── netpol.svg │ │ │ │ │ ├── ns.svg │ │ │ │ │ ├── pod.svg │ │ │ │ │ ├── psp.svg │ │ │ │ │ ├── pv.svg │ │ │ │ │ ├── pvc.svg │ │ │ │ │ ├── quota.svg │ │ │ │ │ ├── rb.svg │ │ │ │ │ ├── role.svg │ │ │ │ │ ├── rs.svg │ │ │ │ │ ├── sa.svg │ │ │ │ │ ├── sc.svg │ │ │ │ │ ├── secret.svg │ │ │ │ │ ├── sts.svg │ │ │ │ │ ├── svc.svg │ │ │ │ │ ├── user.svg │ │ │ │ │ └── vol.svg │ │ │ ├── nodes │ │ │ │ ├── GroupNode.tsx │ │ │ │ ├── KubeObjectNode.tsx │ │ │ │ └── KubeObjectStatus.tsx │ │ │ ├── sources │ │ │ │ ├── GraphSources.tsx │ │ │ │ ├── GraphSourcesView.tsx │ │ │ │ └── definitions │ │ │ │ │ ├── relations.tsx │ │ │ │ │ └── sources.tsx │ │ │ ├── useGraphViewport.ts │ │ │ ├── useQueryParamsState.test.tsx │ │ │ └── useQueryParamsState.tsx │ │ ├── resourceQuota │ │ │ ├── Details.tsx │ │ │ ├── List.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── resourceQuotaDetails.Default.stories.storyshot │ │ │ │ ├── resourceQuotaDetails.Error.stories.storyshot │ │ │ │ ├── resourceQuotaDetails.NoItemYet.stories.storyshot │ │ │ │ └── resourceQuotaList.Items.stories.storyshot │ │ │ ├── resourceQuotaDetails.stories.tsx │ │ │ └── resourceQuotaList.stories.tsx │ │ ├── role │ │ │ ├── BindingDetails.tsx │ │ │ ├── BindingList.tsx │ │ │ ├── Details.tsx │ │ │ └── List.tsx │ │ ├── runtimeClass │ │ │ ├── Details.stories.tsx │ │ │ ├── Details.tsx │ │ │ ├── List.stories.tsx │ │ │ ├── List.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── Details.Base.stories.storyshot │ │ │ │ └── List.Items.stories.storyshot │ │ │ └── storyHelper.ts │ │ ├── secret │ │ │ ├── Details.stories.tsx │ │ │ ├── Details.tsx │ │ │ ├── List.stories.tsx │ │ │ ├── List.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── Details.Empty.stories.storyshot │ │ │ │ ├── Details.WithBase.stories.storyshot │ │ │ │ └── List.Items.stories.storyshot │ │ │ └── storyHelper.ts │ │ ├── service │ │ │ ├── Details.tsx │ │ │ ├── List.tsx │ │ │ ├── ServiceDetails.stories.tsx │ │ │ ├── ServiceList.stories.tsx │ │ │ └── __snapshots__ │ │ │ │ ├── ServiceDetails.Default.stories.storyshot │ │ │ │ ├── ServiceDetails.ErrorWithEndpoints.stories.storyshot │ │ │ │ ├── ServiceList.Default.stories.storyshot │ │ │ │ └── ServiceList.Items.stories.storyshot │ │ ├── serviceaccount │ │ │ ├── Details.tsx │ │ │ └── List.tsx │ │ ├── statefulset │ │ │ ├── Details.stories.tsx │ │ │ ├── Details.tsx │ │ │ ├── List.stories.tsx │ │ │ ├── List.tsx │ │ │ └── __snapshots__ │ │ │ │ ├── Details.Default.stories.storyshot │ │ │ │ ├── Details.WithComplexSelector.stories.storyshot │ │ │ │ ├── Details.WithMultipleContainers.stories.storyshot │ │ │ │ ├── Details.WithOnDeleteStrategy.stories.storyshot │ │ │ │ ├── List.Default.stories.storyshot │ │ │ │ ├── List.EmptyList.stories.storyshot │ │ │ │ ├── List.SingleItem.stories.storyshot │ │ │ │ └── List.WithNotReadyReplicas.stories.storyshot │ │ ├── storage │ │ │ ├── ClaimDetails.stories.tsx │ │ │ ├── ClaimDetails.tsx │ │ │ ├── ClaimList.stories.tsx │ │ │ ├── ClaimList.tsx │ │ │ ├── ClassDetails.stories.tsx │ │ │ ├── ClassDetails.tsx │ │ │ ├── ClassList.stories.tsx │ │ │ ├── ClassList.tsx │ │ │ ├── VolumeDetails.stories.tsx │ │ │ ├── VolumeDetails.tsx │ │ │ ├── VolumeList.stories.tsx │ │ │ ├── VolumeList.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── ClaimDetails.Base.stories.storyshot │ │ │ │ ├── ClaimList.Items.stories.storyshot │ │ │ │ ├── ClassDetails.Base.stories.storyshot │ │ │ │ ├── ClassList.Items.stories.storyshot │ │ │ │ ├── VolumeDetails.Base.stories.storyshot │ │ │ │ └── VolumeList.Items.stories.storyshot │ │ │ ├── storyHelper.ts │ │ │ └── utils.tsx │ │ ├── verticalPodAutoscaler │ │ │ ├── Details.tsx │ │ │ ├── List.tsx │ │ │ ├── VPADetails.stories.tsx │ │ │ ├── VPAList.stories.tsx │ │ │ └── __snapshots__ │ │ │ │ ├── VPADetails.Default.stories.storyshot │ │ │ │ ├── VPADetails.Error.stories.storyshot │ │ │ │ ├── VPADetails.NoItemYet.stories.storyshot │ │ │ │ └── VPAList.List.stories.storyshot │ │ ├── webhookconfiguration │ │ │ ├── Details.tsx │ │ │ ├── MutatingWebhookConfigDetails.stories.tsx │ │ │ ├── MutatingWebhookConfigDetails.tsx │ │ │ ├── MutatingWebhookConfigList.stories.tsx │ │ │ ├── MutatingWebhookConfigList.tsx │ │ │ ├── ValidatingWebhookConfigDetails.stories.tsx │ │ │ ├── ValidatingWebhookConfigDetails.tsx │ │ │ ├── ValidatingWebhookConfigList.stories.tsx │ │ │ ├── ValidatingWebhookConfigList.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── MutatingWebhookConfigDetails.WithService.stories.storyshot │ │ │ │ ├── MutatingWebhookConfigDetails.WithURL.stories.storyshot │ │ │ │ ├── MutatingWebhookConfigList.Items.stories.storyshot │ │ │ │ ├── ValidatingWebhookConfigDetails.WithService.stories.storyshot │ │ │ │ ├── ValidatingWebhookConfigDetails.WithURL.stories.storyshot │ │ │ │ └── ValidatingWebhookConfigList.Items.stories.storyshot │ │ │ └── storyHelper.tsx │ │ └── workload │ │ │ ├── Charts.stories.tsx │ │ │ ├── Charts.tsx │ │ │ ├── Details.tsx │ │ │ ├── Overview.stories.tsx │ │ │ ├── Overview.tsx │ │ │ └── __snapshots__ │ │ │ ├── Charts.AllFailedDeployment.stories.storyshot │ │ │ ├── Charts.AllFailedStatefulSet.stories.storyshot │ │ │ ├── Charts.AllRunningDeployment.stories.storyshot │ │ │ ├── Charts.AllRunningStatefulSet.stories.storyshot │ │ │ ├── Charts.DefaultDeployment.stories.storyshot │ │ │ ├── Charts.DefaultStatefulSet.stories.storyshot │ │ │ ├── Charts.Empty.stories.storyshot │ │ │ ├── Charts.LoadingWorkload.stories.storyshot │ │ │ ├── Charts.MixedWorkloads.stories.storyshot │ │ │ └── Overview.Workloads.stories.storyshot │ ├── filesFilter │ │ ├── filesFilter.test.ts │ │ └── filesFilter.ts │ ├── helpers │ │ ├── addBackstageAuthHeaders.ts │ │ ├── backstageMessageReceiver.ts │ │ ├── clusterSettings.ts │ │ ├── debugVerbose.ts │ │ ├── getAppUrl.ts │ │ ├── getBaseUrl.ts │ │ ├── getHeadlampAPIHeaders.ts │ │ ├── getProductInfo.ts │ │ ├── helpers.test.ts │ │ ├── index.ts │ │ ├── isBackstage.ts │ │ ├── isDevMode.ts │ │ ├── isDockerDesktop.ts │ │ ├── isElectron.ts │ │ ├── recentClusters.ts │ │ ├── tablesRowsPerPage.ts │ │ └── testHelpers.ts │ ├── i18n │ │ ├── LocaleSelect │ │ │ ├── LocaleSelect.stories.tsx │ │ │ ├── LocaleSelect.tsx │ │ │ └── __snapshots__ │ │ │ │ ├── LocaleSelect.Initial.stories.storyshot │ │ │ │ └── LocaleSelect.stories.storyshot │ │ ├── README.md │ │ ├── ThemeProviderNexti18n.tsx │ │ ├── allowlist.json │ │ ├── config.ts │ │ ├── electronI18n.tsx │ │ ├── i18next-parser.config.js │ │ ├── i18nextSharedConfig.mjs │ │ ├── index.test.ts │ │ ├── locales │ │ │ ├── de │ │ │ │ ├── app.json │ │ │ │ ├── glossary.json │ │ │ │ └── translation.json │ │ │ ├── en │ │ │ │ ├── app.json │ │ │ │ ├── glossary.json │ │ │ │ └── translation.json │ │ │ ├── es │ │ │ │ ├── app.json │ │ │ │ ├── glossary.json │ │ │ │ └── translation.json │ │ │ ├── fr │ │ │ │ ├── app.json │ │ │ │ ├── glossary.json │ │ │ │ └── translation.json │ │ │ ├── hi │ │ │ │ ├── app.json │ │ │ │ ├── glossary.json │ │ │ │ └── translation.json │ │ │ ├── it │ │ │ │ ├── app.json │ │ │ │ ├── glossary.json │ │ │ │ └── translation.json │ │ │ ├── ja │ │ │ │ ├── app.json │ │ │ │ ├── glossary.json │ │ │ │ └── translation.json │ │ │ ├── ko │ │ │ │ ├── app.json │ │ │ │ ├── glossary.json │ │ │ │ └── translation.json │ │ │ ├── pt │ │ │ │ ├── app.json │ │ │ │ ├── glossary.json │ │ │ │ └── translation.json │ │ │ ├── ta │ │ │ │ ├── app.json │ │ │ │ ├── glossary.json │ │ │ │ └── translation.json │ │ │ ├── zh-tw │ │ │ │ ├── app.json │ │ │ │ ├── glossary.json │ │ │ │ └── translation.json │ │ │ └── zh │ │ │ │ ├── app.json │ │ │ │ ├── glossary.json │ │ │ │ └── translation.json │ │ └── tools │ │ │ ├── copy-translations.js │ │ │ └── extract-empty-translations.js │ ├── index.css │ ├── index.tsx │ ├── lib │ │ ├── AppTheme.ts │ │ ├── auth.test.ts │ │ ├── auth.ts │ │ ├── cluster.test.ts │ │ ├── cluster.ts │ │ ├── docs.test.ts │ │ ├── docs.ts │ │ ├── k8s │ │ │ ├── KubeMetadata.ts │ │ │ ├── KubeObject.ts │ │ │ ├── PodMetrics.ts │ │ │ ├── ResourceCategory.tsx │ │ │ ├── SelectedClustersContext.ts │ │ │ ├── Workload.ts │ │ │ ├── api │ │ │ │ ├── v1 │ │ │ │ │ ├── apiProxy.test.ts │ │ │ │ │ ├── apply.ts │ │ │ │ │ ├── clusterApi.ts │ │ │ │ │ ├── clusterRequests.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── deleteParameters.ts │ │ │ │ │ ├── drainNode.ts │ │ │ │ │ ├── factories.ts │ │ │ │ │ ├── formatUrl.ts │ │ │ │ │ ├── metricsApi.ts │ │ │ │ │ ├── pluginsApi.ts │ │ │ │ │ ├── portForward.ts │ │ │ │ │ ├── queryParameters.ts │ │ │ │ │ ├── scaleApi.ts │ │ │ │ │ └── streamingApi.ts │ │ │ │ └── v2 │ │ │ │ │ ├── ApiError.tsx │ │ │ │ │ ├── ApiResource.tsx │ │ │ │ │ ├── KubeList.test.ts │ │ │ │ │ ├── KubeList.ts │ │ │ │ │ ├── KubeObjectEndpoint.test.ts │ │ │ │ │ ├── KubeObjectEndpoint.ts │ │ │ │ │ ├── apiDiscovery.test.ts │ │ │ │ │ ├── apiDiscovery.tsx │ │ │ │ │ ├── fetch.test.ts │ │ │ │ │ ├── fetch.ts │ │ │ │ │ ├── hooks.ts │ │ │ │ │ ├── makeUrl.test.ts │ │ │ │ │ ├── makeUrl.ts │ │ │ │ │ ├── useKubeObjectList.test.tsx │ │ │ │ │ ├── useKubeObjectList.ts │ │ │ │ │ ├── webSocket.test.ts │ │ │ │ │ └── webSocket.ts │ │ │ ├── apiProxy │ │ │ │ └── index.ts │ │ │ ├── backendTLSPolicy.ts │ │ │ ├── backendTrafficPolicy.ts │ │ │ ├── cluster.ts │ │ │ ├── clusterRole.ts │ │ │ ├── clusterRoleBinding.ts │ │ │ ├── configMap.ts │ │ │ ├── crd.ts │ │ │ ├── cronJob.ts │ │ │ ├── daemonSet.ts │ │ │ ├── deployment.ts │ │ │ ├── endpointSlices.ts │ │ │ ├── endpoints.ts │ │ │ ├── event.ts │ │ │ ├── gateway.ts │ │ │ ├── gatewayClass.ts │ │ │ ├── grpcRoute.ts │ │ │ ├── hpa.ts │ │ │ ├── httpRoute.ts │ │ │ ├── index.test.ts │ │ │ ├── index.ts │ │ │ ├── ingress.ts │ │ │ ├── ingressClass.ts │ │ │ ├── job.ts │ │ │ ├── kubeconfig.ts │ │ │ ├── lease.ts │ │ │ ├── limitRange.tsx │ │ │ ├── mutatingWebhookConfiguration.ts │ │ │ ├── namespace.ts │ │ │ ├── networkpolicy.tsx │ │ │ ├── node.ts │ │ │ ├── persistentVolume.ts │ │ │ ├── persistentVolumeClaim.ts │ │ │ ├── pod.ts │ │ │ ├── podDisruptionBudget.ts │ │ │ ├── priorityClass.ts │ │ │ ├── priorityClasses.ts │ │ │ ├── referenceGrant.ts │ │ │ ├── replicaSet.ts │ │ │ ├── resourceQuota.ts │ │ │ ├── role.ts │ │ │ ├── roleBinding.ts │ │ │ ├── runtime.ts │ │ │ ├── secret.ts │ │ │ ├── service.ts │ │ │ ├── serviceAccount.ts │ │ │ ├── statefulSet.ts │ │ │ ├── storageClass.ts │ │ │ ├── token.ts │ │ │ ├── validatingWebhookConfiguration.ts │ │ │ └── vpa.ts │ │ ├── notification.tsx │ │ ├── queryClient.ts │ │ ├── router │ │ │ ├── Route.tsx │ │ │ ├── createRouteURL.tsx │ │ │ ├── getDefaultRoutes.tsx │ │ │ ├── getRoute.tsx │ │ │ ├── getRoutePath.tsx │ │ │ ├── getRouteUseClusterURL.tsx │ │ │ └── index.tsx │ │ ├── swagger-parser.k8s.test.ts │ │ ├── themes.test.ts │ │ ├── themes.ts │ │ ├── units.test.ts │ │ ├── units.ts │ │ ├── util.test.ts │ │ └── util.ts │ ├── make-env.test.js │ ├── plugin │ │ ├── Plugins.tsx │ │ ├── __snapshots__ │ │ │ └── pluginLib.snapshot │ │ ├── configStore.ts │ │ ├── filterSources.test.ts │ │ ├── index.ts │ │ ├── lib.ts │ │ ├── pluginConfigSlice.ts │ │ ├── pluginI18n.ts │ │ ├── pluginLib.test.ts │ │ ├── pluginSlice.test.tsx │ │ ├── plugins │ │ │ └── .gitignore │ │ ├── pluginsSlice.ts │ │ ├── registry.tsx │ │ ├── runPlugin.test.ts │ │ ├── runPlugin.ts │ │ └── updateSettingsPackages.test.ts │ ├── redux │ │ ├── actionButtonsSlice.test.ts │ │ ├── actionButtonsSlice.ts │ │ ├── clusterActionSlice.test.ts │ │ ├── clusterActionSlice.ts │ │ ├── clusterProviderSlice.ts │ │ ├── configSlice.test.ts │ │ ├── configSlice.ts │ │ ├── drawerModeSlice.ts │ │ ├── filterSlice.test.ts │ │ ├── filterSlice.ts │ │ ├── headlampEventSlice.test.tsx │ │ ├── headlampEventSlice.ts │ │ ├── hooks.ts │ │ ├── overviewChartsSlice.test.ts │ │ ├── overviewChartsSlice.ts │ │ ├── projectsSlice.ts │ │ ├── reducers │ │ │ └── reducers.tsx │ │ ├── routesSlice.test.tsx │ │ ├── routesSlice.ts │ │ ├── stores │ │ │ └── store.tsx │ │ ├── uiSlice.test.ts │ │ └── uiSlice.ts │ ├── resources │ │ ├── icon-dark.svg │ │ ├── icon-light.svg │ │ ├── logo-dark.svg │ │ └── logo-light.svg │ ├── setupTests.ts │ ├── stateless │ │ ├── deleteClusterKubeconfig.test.ts │ │ ├── deleteClusterKubeconfig.ts │ │ ├── findKubeconfigByClusterName.ts │ │ ├── getUserIdFromLocalStorage.ts │ │ ├── index.test.ts │ │ ├── index.ts │ │ ├── updateStatelessClusterKubeconfig.test.ts │ │ └── updateStatelessClusterKubeconfig.ts │ ├── storybook.test.tsx │ └── test │ │ ├── index.tsx │ │ └── mocker.ts ├── tsconfig.json ├── vite.config.ts └── vitest.config.ts ├── kubernetes-headlamp-ingress-sample.yaml ├── kubernetes-headlamp-monitoring.yaml ├── kubernetes-headlamp.yaml ├── load-tests ├── README.md ├── package-lock.json ├── package.json └── scripts │ ├── create-clusters.js │ ├── create-deployments.js │ ├── create-events.js │ ├── create-nodes.js │ ├── create-pods.js │ └── helpers.js ├── package.json ├── plugins ├── README.md ├── examples │ ├── app-menus │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── headlamp-plugin.d.ts │ │ │ └── index.tsx │ │ └── tsconfig.json │ ├── change-logo │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── ReactiveLogo.stories.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── ReactiveLogo.stories.storyshot │ │ │ ├── headlamp-plugin.d.ts │ │ │ ├── icon-large-light.svg │ │ │ ├── icon-small-light.svg │ │ │ ├── index.tsx │ │ │ ├── settings.tsx │ │ │ └── storybook.test.tsx │ │ └── tsconfig.json │ ├── cluster-chooser │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── headlamp-plugin.d.ts │ │ │ └── index.tsx │ │ └── tsconfig.json │ ├── custom-theme │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── headlamp-plugin.d.ts │ │ │ └── index.tsx │ │ └── tsconfig.json │ ├── customizing-map │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── headlamp-plugin.d.ts │ │ │ └── index.tsx │ │ └── tsconfig.json │ ├── details-view │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── headlamp-plugin.d.ts │ │ │ └── index.tsx │ │ └── tsconfig.json │ ├── dynamic-clusters │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── headlamp-plugin.d.ts │ │ │ └── index.tsx │ │ └── tsconfig.json │ ├── headlamp-events │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── headlamp-plugin.d.ts │ │ │ ├── index.tsx │ │ │ └── storybook.test.tsx │ │ └── tsconfig.json │ ├── pod-counter │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── Message.stories.tsx │ │ │ ├── Message.test.tsx │ │ │ ├── Message.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Message.stories.storyshot │ │ │ ├── headlamp-plugin.d.ts │ │ │ ├── index.tsx │ │ │ ├── storybook.test.tsx │ │ │ └── styles.css │ │ └── tsconfig.json │ ├── projects │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── headlamp-plugin.d.ts │ │ │ └── index.tsx │ │ └── tsconfig.json │ ├── resource-charts │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── headlamp-plugin.d.ts │ │ │ ├── index.tsx │ │ │ ├── storybook.test.tsx │ │ │ └── types.d.ts │ │ └── tsconfig.json │ ├── sidebar │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── headlamp-plugin.d.ts │ │ │ └── index.tsx │ │ └── tsconfig.json │ ├── tables │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── ContextMenu.stories.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── ContextMenu.stories.storyshot │ │ │ ├── headlamp-plugin.d.ts │ │ │ ├── index.tsx │ │ │ └── storybook.test.tsx │ │ └── tsconfig.json │ └── ui-panels │ │ ├── .gitignore │ │ ├── .vscode │ │ ├── extensions.json │ │ ├── settings.json │ │ └── tasks.json │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ ├── headlamp-plugin.d.ts │ │ └── index.tsx │ │ └── tsconfig.json ├── headlamp-plugin │ ├── .gitignore │ ├── README.md │ ├── bin │ │ └── headlamp-plugin.js │ ├── check-storybook.mjs │ ├── config │ │ ├── .storybook │ │ │ ├── HeadlampTheme.js │ │ │ ├── assets │ │ │ │ ├── fonts │ │ │ │ │ └── overpass │ │ │ │ │ │ ├── cyrillic-ext.woff2 │ │ │ │ │ │ ├── cyrillic.woff2 │ │ │ │ │ │ ├── latin-ext.woff2 │ │ │ │ │ │ ├── latin.woff2 │ │ │ │ │ │ └── vietnamese.woff2 │ │ │ │ ├── headlamp-404.svg │ │ │ │ └── headlamp-broken.svg │ │ │ ├── baseMocks.ts │ │ │ ├── headlamp_light.svg │ │ │ ├── index.css │ │ │ ├── main.js │ │ │ ├── manager.js │ │ │ ├── preview.tsx │ │ │ └── public │ │ │ │ └── mockServiceWorker.js │ │ ├── i18next-parser.config.js │ │ ├── plugins-tsconfig.json │ │ ├── setupTests.js │ │ ├── storyshots │ │ │ └── storyshots-test.ts │ │ ├── vite-plugin-name-injection.mjs │ │ └── vite.config.mjs │ ├── dependencies-sync.js │ ├── install-dependencies.sh │ ├── package-lock.json │ ├── package.json │ ├── scripts │ │ ├── copy-package-lock.js │ │ └── copy-static-assets.js │ ├── src │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── ApiProxy.ts │ │ ├── CommonComponents.ts │ │ ├── Crd.ts │ │ ├── Utils.ts │ │ ├── additional.d.ts │ │ └── index.ts │ ├── template │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── headlamp-plugin.d.ts │ │ │ └── index.tsx │ │ └── tsconfig.json │ ├── test-headlamp-plugin-published.js │ ├── test-headlamp-plugin.js │ ├── test-plugins-examples.sh │ └── tsconfig.json ├── pluginctl │ ├── README.md │ ├── bin │ │ └── pluginctl.js │ ├── index.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── multi-plugin-management.js │ │ ├── multi-plugin-management.test.js │ │ ├── plugin-management.e2e.js │ │ ├── plugin-management.js │ │ └── plugin-management.test.js │ └── test-pluginctl.js └── update-deps.sh └── tools ├── releaser ├── .gitignore ├── package-lock.json ├── package.json ├── src │ ├── commands │ │ ├── build.ts │ │ ├── check.ts │ │ ├── get-app-runs.ts │ │ ├── publish.ts │ │ ├── start.ts │ │ └── tag.ts │ ├── index.ts │ └── utils │ │ ├── git.ts │ │ ├── github.ts │ │ └── version.ts └── tsconfig.json └── verify-image-digests.js /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/cr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/.github/cr.yaml -------------------------------------------------------------------------------- /.github/ct.yaml: -------------------------------------------------------------------------------- 1 | target-branch: main 2 | check-version-increment: false 3 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/app-artifacts-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/.github/workflows/app-artifacts-linux.yml -------------------------------------------------------------------------------- /.github/workflows/app-artifacts-mac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/.github/workflows/app-artifacts-mac.yml -------------------------------------------------------------------------------- /.github/workflows/app-artifacts-win.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/.github/workflows/app-artifacts-win.yml -------------------------------------------------------------------------------- /.github/workflows/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/.github/workflows/app.yml -------------------------------------------------------------------------------- /.github/workflows/backend-embed-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/.github/workflows/backend-embed-test.yml -------------------------------------------------------------------------------- /.github/workflows/backend-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/.github/workflows/backend-test.yml -------------------------------------------------------------------------------- /.github/workflows/build-container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/.github/workflows/build-container.yml -------------------------------------------------------------------------------- /.github/workflows/container-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/.github/workflows/container-publish.yml -------------------------------------------------------------------------------- /.github/workflows/docker-extension-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/.github/workflows/docker-extension-release.yml -------------------------------------------------------------------------------- /.github/workflows/draft-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/.github/workflows/draft-release.yml -------------------------------------------------------------------------------- /.github/workflows/frontend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/.github/workflows/frontend.yml -------------------------------------------------------------------------------- /.github/workflows/helm-chart-lint-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/.github/workflows/helm-chart-lint-test.yml -------------------------------------------------------------------------------- /.github/workflows/helm-chart-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/.github/workflows/helm-chart-release.yml -------------------------------------------------------------------------------- /.github/workflows/helm-chart-template-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/.github/workflows/helm-chart-template-test.yml -------------------------------------------------------------------------------- /.github/workflows/nightly-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/.github/workflows/nightly-build.yml -------------------------------------------------------------------------------- /.github/workflows/pr-to-update-chart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/.github/workflows/pr-to-update-chart.yml -------------------------------------------------------------------------------- /.github/workflows/pr-to-update-choco.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/.github/workflows/pr-to-update-choco.yml -------------------------------------------------------------------------------- /.github/workflows/pr-to-update-minikube.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/.github/workflows/pr-to-update-minikube.yml -------------------------------------------------------------------------------- /.github/workflows/push-chocolatey-pkg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/.github/workflows/push-chocolatey-pkg.yml -------------------------------------------------------------------------------- /.github/workflows/push-release-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/.github/workflows/push-release-assets.yml -------------------------------------------------------------------------------- /.github/workflows/scorecard-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/.github/workflows/scorecard-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/trigger-flatpak-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/.github/workflows/trigger-flatpak-update.yml -------------------------------------------------------------------------------- /.github/workflows/trigger-website-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/.github/workflows/trigger-website-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/.gitignore -------------------------------------------------------------------------------- /ADOPTERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/ADOPTERS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/Dockerfile.plugins -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/NOTICE -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/OWNERS -------------------------------------------------------------------------------- /OWNERS_ALIASES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/OWNERS_ALIASES -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/SECURITY_CONTACTS -------------------------------------------------------------------------------- /app/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/.babelrc -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/README.md -------------------------------------------------------------------------------- /app/app-build-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/app-build-manifest.json -------------------------------------------------------------------------------- /app/e2e-tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/e2e-tests/.gitignore -------------------------------------------------------------------------------- /app/e2e-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/e2e-tests/README.md -------------------------------------------------------------------------------- /app/e2e-tests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/e2e-tests/package-lock.json -------------------------------------------------------------------------------- /app/e2e-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/e2e-tests/package.json -------------------------------------------------------------------------------- /app/e2e-tests/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/e2e-tests/playwright.config.ts -------------------------------------------------------------------------------- /app/e2e-tests/tests/clusterRename.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/e2e-tests/tests/clusterRename.spec.ts -------------------------------------------------------------------------------- /app/e2e-tests/tests/headlampPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/e2e-tests/tests/headlampPage.ts -------------------------------------------------------------------------------- /app/e2e-tests/tests/namespaces.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/e2e-tests/tests/namespaces.spec.ts -------------------------------------------------------------------------------- /app/e2e-tests/tests/namespacesPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/e2e-tests/tests/namespacesPage.ts -------------------------------------------------------------------------------- /app/electron/env-paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/electron/env-paths.ts -------------------------------------------------------------------------------- /app/electron/i18n-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/electron/i18n-helper.ts -------------------------------------------------------------------------------- /app/electron/i18next-parser.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/electron/i18next-parser.config.js -------------------------------------------------------------------------------- /app/electron/i18next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/electron/i18next.config.ts -------------------------------------------------------------------------------- /app/electron/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/electron/main.ts -------------------------------------------------------------------------------- /app/electron/plugin-management.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/electron/plugin-management.test.ts -------------------------------------------------------------------------------- /app/electron/plugin-management.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/electron/plugin-management.ts -------------------------------------------------------------------------------- /app/electron/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/electron/preload.ts -------------------------------------------------------------------------------- /app/electron/runCmd.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/electron/runCmd.test.ts -------------------------------------------------------------------------------- /app/electron/runCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/electron/runCmd.ts -------------------------------------------------------------------------------- /app/electron/windowSize.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/electron/windowSize.test.ts -------------------------------------------------------------------------------- /app/electron/windowSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/electron/windowSize.ts -------------------------------------------------------------------------------- /app/mac/entitlements.mac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/mac/entitlements.mac.plist -------------------------------------------------------------------------------- /app/mac/scripts/codeSign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/mac/scripts/codeSign.js -------------------------------------------------------------------------------- /app/mac/scripts/setup-certificate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/mac/scripts/setup-certificate.sh -------------------------------------------------------------------------------- /app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/package-lock.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/package.json -------------------------------------------------------------------------------- /app/scripts/after-pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/scripts/after-pack.js -------------------------------------------------------------------------------- /app/scripts/build-backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/scripts/build-backend.js -------------------------------------------------------------------------------- /app/scripts/esrp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/scripts/esrp.js -------------------------------------------------------------------------------- /app/scripts/push-release-assets/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/scripts/push-release-assets/package-lock.json -------------------------------------------------------------------------------- /app/scripts/push-release-assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/scripts/push-release-assets/package.json -------------------------------------------------------------------------------- /app/scripts/setup-plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/scripts/setup-plugins.js -------------------------------------------------------------------------------- /app/scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/scripts/start.js -------------------------------------------------------------------------------- /app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/tsconfig.json -------------------------------------------------------------------------------- /app/windows/chocolatey/choco-bump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/windows/chocolatey/choco-bump.sh -------------------------------------------------------------------------------- /app/windows/chocolatey/headlamp.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/windows/chocolatey/headlamp.nuspec -------------------------------------------------------------------------------- /app/windows/codesign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/windows/codesign.js -------------------------------------------------------------------------------- /app/windows/msi/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/windows/msi/build.js -------------------------------------------------------------------------------- /app/windows/sign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/windows/sign.js -------------------------------------------------------------------------------- /app/windows/winget/winget-create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/app/windows/winget/winget-create.js -------------------------------------------------------------------------------- /backend/.air.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/.air.toml -------------------------------------------------------------------------------- /backend/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/.golangci.yml -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/cmd/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/cmd/cluster.go -------------------------------------------------------------------------------- /backend/cmd/headlamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/cmd/headlamp.go -------------------------------------------------------------------------------- /backend/cmd/headlamp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/cmd/headlamp_test.go -------------------------------------------------------------------------------- /backend/cmd/headlamp_testdata/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/cmd/headlamp_testdata/ca.crt -------------------------------------------------------------------------------- /backend/cmd/headlamp_testdata/headlamp.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/cmd/headlamp_testdata/headlamp.crt -------------------------------------------------------------------------------- /backend/cmd/headlamp_testdata/headlamp.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/cmd/headlamp_testdata/headlamp.key -------------------------------------------------------------------------------- /backend/cmd/headlamp_testdata/kubeconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/cmd/headlamp_testdata/kubeconfig -------------------------------------------------------------------------------- /backend/cmd/headlamp_testdata/kubeconfig_rename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/cmd/headlamp_testdata/kubeconfig_rename -------------------------------------------------------------------------------- /backend/cmd/multiplexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/cmd/multiplexer.go -------------------------------------------------------------------------------- /backend/cmd/multiplexer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/cmd/multiplexer_test.go -------------------------------------------------------------------------------- /backend/cmd/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/cmd/server.go -------------------------------------------------------------------------------- /backend/cmd/stateless.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/cmd/stateless.go -------------------------------------------------------------------------------- /backend/cmd/stateless_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/cmd/stateless_test.go -------------------------------------------------------------------------------- /backend/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/go.mod -------------------------------------------------------------------------------- /backend/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/go.sum -------------------------------------------------------------------------------- /backend/pkg/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/auth/auth.go -------------------------------------------------------------------------------- /backend/pkg/auth/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/auth/auth_test.go -------------------------------------------------------------------------------- /backend/pkg/auth/cookies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/auth/cookies.go -------------------------------------------------------------------------------- /backend/pkg/auth/cookies_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/auth/cookies_test.go -------------------------------------------------------------------------------- /backend/pkg/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/cache/cache.go -------------------------------------------------------------------------------- /backend/pkg/cache/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/cache/cache_test.go -------------------------------------------------------------------------------- /backend/pkg/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/config/config.go -------------------------------------------------------------------------------- /backend/pkg/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/config/config_test.go -------------------------------------------------------------------------------- /backend/pkg/config/test_data/invalid_ca.pem: -------------------------------------------------------------------------------- 1 | This is not a valid certificate 2 | -------------------------------------------------------------------------------- /backend/pkg/config/test_data/valid_ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/config/test_data/valid_ca.pem -------------------------------------------------------------------------------- /backend/pkg/exec/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/exec/exec.go -------------------------------------------------------------------------------- /backend/pkg/exec/exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/exec/exec_test.go -------------------------------------------------------------------------------- /backend/pkg/exec/syscallattr_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/exec/syscallattr_other.go -------------------------------------------------------------------------------- /backend/pkg/exec/syscallattr_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/exec/syscallattr_windows.go -------------------------------------------------------------------------------- /backend/pkg/exec/testdata/test-plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/exec/testdata/test-plugin.sh -------------------------------------------------------------------------------- /backend/pkg/headlampconfig/headlampConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/headlampconfig/headlampConfig.go -------------------------------------------------------------------------------- /backend/pkg/helm/charts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/helm/charts.go -------------------------------------------------------------------------------- /backend/pkg/helm/charts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/helm/charts_test.go -------------------------------------------------------------------------------- /backend/pkg/helm/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/helm/handler.go -------------------------------------------------------------------------------- /backend/pkg/helm/release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/helm/release.go -------------------------------------------------------------------------------- /backend/pkg/helm/release_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/helm/release_test.go -------------------------------------------------------------------------------- /backend/pkg/helm/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/helm/repository.go -------------------------------------------------------------------------------- /backend/pkg/helm/repository_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/helm/repository_test.go -------------------------------------------------------------------------------- /backend/pkg/k8cache/authErrResp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/k8cache/authErrResp.go -------------------------------------------------------------------------------- /backend/pkg/k8cache/authErrResp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/k8cache/authErrResp_test.go -------------------------------------------------------------------------------- /backend/pkg/k8cache/authorization.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/k8cache/authorization.go -------------------------------------------------------------------------------- /backend/pkg/k8cache/authorization_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/k8cache/authorization_test.go -------------------------------------------------------------------------------- /backend/pkg/k8cache/cacheInvalidation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/k8cache/cacheInvalidation.go -------------------------------------------------------------------------------- /backend/pkg/k8cache/cacheInvalidation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/k8cache/cacheInvalidation_test.go -------------------------------------------------------------------------------- /backend/pkg/k8cache/cacheStore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/k8cache/cacheStore.go -------------------------------------------------------------------------------- /backend/pkg/k8cache/cacheStore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/k8cache/cacheStore_test.go -------------------------------------------------------------------------------- /backend/pkg/k8cache/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/k8cache/key.go -------------------------------------------------------------------------------- /backend/pkg/k8cache/responseCapture.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/k8cache/responseCapture.go -------------------------------------------------------------------------------- /backend/pkg/k8cache/responseCapture_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/k8cache/responseCapture_test.go -------------------------------------------------------------------------------- /backend/pkg/kubeconfig/contextStore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/kubeconfig/contextStore.go -------------------------------------------------------------------------------- /backend/pkg/kubeconfig/contextStore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/kubeconfig/contextStore_test.go -------------------------------------------------------------------------------- /backend/pkg/kubeconfig/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/kubeconfig/export_test.go -------------------------------------------------------------------------------- /backend/pkg/kubeconfig/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/kubeconfig/file.go -------------------------------------------------------------------------------- /backend/pkg/kubeconfig/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/kubeconfig/file_test.go -------------------------------------------------------------------------------- /backend/pkg/kubeconfig/kubeconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/kubeconfig/kubeconfig.go -------------------------------------------------------------------------------- /backend/pkg/kubeconfig/kubeconfig_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/kubeconfig/kubeconfig_test.go -------------------------------------------------------------------------------- /backend/pkg/kubeconfig/test_data/kubeconfig1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/kubeconfig/test_data/kubeconfig1 -------------------------------------------------------------------------------- /backend/pkg/kubeconfig/test_data/kubeconfig2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/kubeconfig/test_data/kubeconfig2 -------------------------------------------------------------------------------- /backend/pkg/kubeconfig/test_data/oidc_ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/kubeconfig/test_data/oidc_ca.pem -------------------------------------------------------------------------------- /backend/pkg/kubeconfig/useragent_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/kubeconfig/useragent_test.go -------------------------------------------------------------------------------- /backend/pkg/kubeconfig/watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/kubeconfig/watcher.go -------------------------------------------------------------------------------- /backend/pkg/kubeconfig/watcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/kubeconfig/watcher_test.go -------------------------------------------------------------------------------- /backend/pkg/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/logger/logger.go -------------------------------------------------------------------------------- /backend/pkg/logger/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/logger/logger_test.go -------------------------------------------------------------------------------- /backend/pkg/plugins/plugins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/plugins/plugins.go -------------------------------------------------------------------------------- /backend/pkg/plugins/plugins_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/plugins/plugins_test.go -------------------------------------------------------------------------------- /backend/pkg/portforward/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/portforward/handler.go -------------------------------------------------------------------------------- /backend/pkg/portforward/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/portforward/handler_test.go -------------------------------------------------------------------------------- /backend/pkg/portforward/internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/portforward/internal_test.go -------------------------------------------------------------------------------- /backend/pkg/portforward/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/portforward/store.go -------------------------------------------------------------------------------- /backend/pkg/serviceproxy/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/serviceproxy/connection.go -------------------------------------------------------------------------------- /backend/pkg/serviceproxy/connection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/serviceproxy/connection_test.go -------------------------------------------------------------------------------- /backend/pkg/serviceproxy/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/serviceproxy/handler.go -------------------------------------------------------------------------------- /backend/pkg/serviceproxy/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/serviceproxy/handler_test.go -------------------------------------------------------------------------------- /backend/pkg/serviceproxy/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/serviceproxy/http.go -------------------------------------------------------------------------------- /backend/pkg/serviceproxy/http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/serviceproxy/http_test.go -------------------------------------------------------------------------------- /backend/pkg/serviceproxy/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/serviceproxy/service.go -------------------------------------------------------------------------------- /backend/pkg/serviceproxy/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/serviceproxy/service_test.go -------------------------------------------------------------------------------- /backend/pkg/spa/embed_static.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/spa/embed_static.go -------------------------------------------------------------------------------- /backend/pkg/spa/embed_static_fallback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/spa/embed_static_fallback.go -------------------------------------------------------------------------------- /backend/pkg/spa/embeddedSPAHandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/spa/embeddedSPAHandler.go -------------------------------------------------------------------------------- /backend/pkg/spa/embeddedSPAHandler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/spa/embeddedSPAHandler_test.go -------------------------------------------------------------------------------- /backend/pkg/spa/headlamp_testdata/static_files/example.css: -------------------------------------------------------------------------------- 1 | .somecss {} 2 | 3 | -------------------------------------------------------------------------------- /backend/pkg/spa/headlamp_testdata/static_files/index.html: -------------------------------------------------------------------------------- 1 | The index. 2 | -------------------------------------------------------------------------------- /backend/pkg/spa/spaHandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/spa/spaHandler.go -------------------------------------------------------------------------------- /backend/pkg/spa/spaHandler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/spa/spaHandler_test.go -------------------------------------------------------------------------------- /backend/pkg/telemetry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/telemetry/README.md -------------------------------------------------------------------------------- /backend/pkg/telemetry/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/telemetry/metrics.go -------------------------------------------------------------------------------- /backend/pkg/telemetry/metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/telemetry/metrics_test.go -------------------------------------------------------------------------------- /backend/pkg/telemetry/prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/telemetry/prometheus.yaml -------------------------------------------------------------------------------- /backend/pkg/telemetry/requesthandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/telemetry/requesthandler.go -------------------------------------------------------------------------------- /backend/pkg/telemetry/requesthandler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/telemetry/requesthandler_test.go -------------------------------------------------------------------------------- /backend/pkg/telemetry/telemetry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/telemetry/telemetry.go -------------------------------------------------------------------------------- /backend/pkg/telemetry/telemetry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/telemetry/telemetry_test.go -------------------------------------------------------------------------------- /backend/pkg/telemetry/tracing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/telemetry/tracing.go -------------------------------------------------------------------------------- /backend/pkg/telemetry/tracing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backend/pkg/telemetry/tracing_test.go -------------------------------------------------------------------------------- /backstage-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backstage-test/README.md -------------------------------------------------------------------------------- /backstage-test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/backstage-test/index.html -------------------------------------------------------------------------------- /charts/headlamp/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/charts/headlamp/.helmignore -------------------------------------------------------------------------------- /charts/headlamp/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/charts/headlamp/Chart.yaml -------------------------------------------------------------------------------- /charts/headlamp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/charts/headlamp/README.md -------------------------------------------------------------------------------- /charts/headlamp/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/charts/headlamp/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/headlamp/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/charts/headlamp/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/headlamp/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/charts/headlamp/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /charts/headlamp/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/charts/headlamp/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/headlamp/templates/extra-manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/charts/headlamp/templates/extra-manifests.yaml -------------------------------------------------------------------------------- /charts/headlamp/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/charts/headlamp/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/headlamp/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/charts/headlamp/templates/pdb.yaml -------------------------------------------------------------------------------- /charts/headlamp/templates/plugin-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/charts/headlamp/templates/plugin-configmap.yaml -------------------------------------------------------------------------------- /charts/headlamp/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/charts/headlamp/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/headlamp/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/charts/headlamp/templates/secret.yaml -------------------------------------------------------------------------------- /charts/headlamp/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/charts/headlamp/templates/service.yaml -------------------------------------------------------------------------------- /charts/headlamp/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/charts/headlamp/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/headlamp/tests/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/charts/headlamp/tests/readme.md -------------------------------------------------------------------------------- /charts/headlamp/tests/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/charts/headlamp/tests/test.sh -------------------------------------------------------------------------------- /charts/headlamp/tests/test_cases/extra-args.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/charts/headlamp/tests/test_cases/extra-args.yaml -------------------------------------------------------------------------------- /charts/headlamp/tests/test_cases/oidc-pkce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/charts/headlamp/tests/test_cases/oidc-pkce.yaml -------------------------------------------------------------------------------- /charts/headlamp/tests/test_cases/tls-added.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/charts/headlamp/tests/test_cases/tls-added.yaml -------------------------------------------------------------------------------- /charts/headlamp/tests/update-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/charts/headlamp/tests/update-version.sh -------------------------------------------------------------------------------- /charts/headlamp/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/charts/headlamp/values.schema.json -------------------------------------------------------------------------------- /charts/headlamp/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/charts/headlamp/values.yaml -------------------------------------------------------------------------------- /cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/cloudbuild.yaml -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /container/build-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/container/build-manifest.json -------------------------------------------------------------------------------- /container/fetch-plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/container/fetch-plugins.sh -------------------------------------------------------------------------------- /docker-extension/.dockerignore: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /docker-extension/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docker-extension/Dockerfile -------------------------------------------------------------------------------- /docker-extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docker-extension/README.md -------------------------------------------------------------------------------- /docker-extension/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docker-extension/docker-compose.yml -------------------------------------------------------------------------------- /docker-extension/headlamp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docker-extension/headlamp.svg -------------------------------------------------------------------------------- /docker-extension/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docker-extension/metadata.json -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/development/api/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/api/.nojekyll -------------------------------------------------------------------------------- /docs/development/api/classes/lib_k8s_hpa.HPA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/api/classes/lib_k8s_hpa.HPA.md -------------------------------------------------------------------------------- /docs/development/api/classes/lib_k8s_job.Job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/api/classes/lib_k8s_job.Job.md -------------------------------------------------------------------------------- /docs/development/api/modules/lib_k8s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/api/modules/lib_k8s.md -------------------------------------------------------------------------------- /docs/development/api/modules/lib_k8s_crd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/api/modules/lib_k8s_crd.md -------------------------------------------------------------------------------- /docs/development/api/modules/lib_k8s_event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/api/modules/lib_k8s_event.md -------------------------------------------------------------------------------- /docs/development/api/modules/lib_k8s_hpa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/api/modules/lib_k8s_hpa.md -------------------------------------------------------------------------------- /docs/development/api/modules/lib_k8s_job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/api/modules/lib_k8s_job.md -------------------------------------------------------------------------------- /docs/development/api/modules/lib_k8s_lease.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/api/modules/lib_k8s_lease.md -------------------------------------------------------------------------------- /docs/development/api/modules/lib_k8s_node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/api/modules/lib_k8s_node.md -------------------------------------------------------------------------------- /docs/development/api/modules/lib_k8s_pod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/api/modules/lib_k8s_pod.md -------------------------------------------------------------------------------- /docs/development/api/modules/lib_k8s_role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/api/modules/lib_k8s_role.md -------------------------------------------------------------------------------- /docs/development/api/modules/lib_k8s_secret.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/api/modules/lib_k8s_secret.md -------------------------------------------------------------------------------- /docs/development/api/modules/lib_k8s_token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/api/modules/lib_k8s_token.md -------------------------------------------------------------------------------- /docs/development/api/modules/lib_k8s_vpa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/api/modules/lib_k8s_vpa.md -------------------------------------------------------------------------------- /docs/development/api/modules/lib_router.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/api/modules/lib_router.md -------------------------------------------------------------------------------- /docs/development/api/modules/lib_util.auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/api/modules/lib_util.auth.md -------------------------------------------------------------------------------- /docs/development/api/modules/lib_util.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/api/modules/lib_util.md -------------------------------------------------------------------------------- /docs/development/api/modules/lib_util.units.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/api/modules/lib_util.units.md -------------------------------------------------------------------------------- /docs/development/api/modules/plugin_lib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/api/modules/plugin_lib.md -------------------------------------------------------------------------------- /docs/development/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/architecture.md -------------------------------------------------------------------------------- /docs/development/backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/backend.md -------------------------------------------------------------------------------- /docs/development/frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/frontend.md -------------------------------------------------------------------------------- /docs/development/gateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/gateway.md -------------------------------------------------------------------------------- /docs/development/i18n/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/i18n/contributing.md -------------------------------------------------------------------------------- /docs/development/i18n/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/i18n/index.md -------------------------------------------------------------------------------- /docs/development/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/index.md -------------------------------------------------------------------------------- /docs/development/oidc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/oidc.md -------------------------------------------------------------------------------- /docs/development/plugins/building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/plugins/building.md -------------------------------------------------------------------------------- /docs/development/plugins/common-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/plugins/common-patterns.md -------------------------------------------------------------------------------- /docs/development/plugins/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/plugins/getting-started.md -------------------------------------------------------------------------------- /docs/development/plugins/i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/plugins/i18n.md -------------------------------------------------------------------------------- /docs/development/plugins/images/app-menus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/plugins/images/app-menus.png -------------------------------------------------------------------------------- /docs/development/plugins/images/sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/plugins/images/sidebar.png -------------------------------------------------------------------------------- /docs/development/plugins/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/plugins/index.md -------------------------------------------------------------------------------- /docs/development/plugins/publishing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/plugins/publishing.md -------------------------------------------------------------------------------- /docs/development/release-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/release-guide.md -------------------------------------------------------------------------------- /docs/development/release-version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/release-version.png -------------------------------------------------------------------------------- /docs/development/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/development/testing.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/headlamp_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/headlamp_light.svg -------------------------------------------------------------------------------- /docs/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/images/icon.png -------------------------------------------------------------------------------- /docs/images/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/images/icon.svg -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation/base-url.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/installation/base-url.md -------------------------------------------------------------------------------- /docs/installation/desktop/headless.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/installation/desktop/headless.mdx -------------------------------------------------------------------------------- /docs/installation/desktop/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/installation/desktop/index.mdx -------------------------------------------------------------------------------- /docs/installation/desktop/mac-installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/installation/desktop/mac-installation.md -------------------------------------------------------------------------------- /docs/installation/desktop/win-installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/installation/desktop/win-installation.md -------------------------------------------------------------------------------- /docs/installation/in-cluster/dex/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/installation/in-cluster/dex/index.md -------------------------------------------------------------------------------- /docs/installation/in-cluster/eks/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/installation/in-cluster/eks/index.md -------------------------------------------------------------------------------- /docs/installation/in-cluster/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/installation/in-cluster/index.md -------------------------------------------------------------------------------- /docs/installation/in-cluster/keycloak/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/installation/in-cluster/keycloak/index.md -------------------------------------------------------------------------------- /docs/installation/in-cluster/oidc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/installation/in-cluster/oidc.md -------------------------------------------------------------------------------- /docs/installation/in-cluster/oidc_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/installation/in-cluster/oidc_button.png -------------------------------------------------------------------------------- /docs/installation/in-cluster/tls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/installation/in-cluster/tls.md -------------------------------------------------------------------------------- /docs/installation/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/installation/index.mdx -------------------------------------------------------------------------------- /docs/installation/metrics-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/installation/metrics-server.md -------------------------------------------------------------------------------- /docs/installation/no-metrics-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/installation/no-metrics-server.png -------------------------------------------------------------------------------- /docs/learn/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/learn/index.md -------------------------------------------------------------------------------- /docs/learn/local-cluster/ai-assistant-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/learn/local-cluster/ai-assistant-17.png -------------------------------------------------------------------------------- /docs/learn/local-cluster/apply-yaml-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/learn/local-cluster/apply-yaml-5.png -------------------------------------------------------------------------------- /docs/learn/local-cluster/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/learn/local-cluster/index.md -------------------------------------------------------------------------------- /docs/learn/local-cluster/map-view-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/learn/local-cluster/map-view-14.png -------------------------------------------------------------------------------- /docs/learn/local-cluster/plugin-catalog-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/learn/local-cluster/plugin-catalog-16.png -------------------------------------------------------------------------------- /docs/learn/local-cluster/pod-details-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/learn/local-cluster/pod-details-6.png -------------------------------------------------------------------------------- /docs/learn/local-cluster/yaml-editor-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/learn/local-cluster/yaml-editor-15.png -------------------------------------------------------------------------------- /docs/learn/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/learn/projects.md -------------------------------------------------------------------------------- /docs/platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/docs/platforms.md -------------------------------------------------------------------------------- /e2e-tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/e2e-tests/.gitignore -------------------------------------------------------------------------------- /e2e-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/e2e-tests/README.md -------------------------------------------------------------------------------- /e2e-tests/kubernetes-headlamp-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/e2e-tests/kubernetes-headlamp-ci.yaml -------------------------------------------------------------------------------- /e2e-tests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/e2e-tests/package-lock.json -------------------------------------------------------------------------------- /e2e-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/e2e-tests/package.json -------------------------------------------------------------------------------- /e2e-tests/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/e2e-tests/playwright.config.ts -------------------------------------------------------------------------------- /e2e-tests/tests/dynamicCluster.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/e2e-tests/tests/dynamicCluster.spec.ts -------------------------------------------------------------------------------- /e2e-tests/tests/headlamp.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/e2e-tests/tests/headlamp.spec.ts -------------------------------------------------------------------------------- /e2e-tests/tests/headlampPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/e2e-tests/tests/headlampPage.ts -------------------------------------------------------------------------------- /e2e-tests/tests/incluster-api.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/e2e-tests/tests/incluster-api.spec.ts -------------------------------------------------------------------------------- /e2e-tests/tests/multiCluster.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/e2e-tests/tests/multiCluster.spec.ts -------------------------------------------------------------------------------- /e2e-tests/tests/namespaces.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/e2e-tests/tests/namespaces.spec.ts -------------------------------------------------------------------------------- /e2e-tests/tests/namespacesPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/e2e-tests/tests/namespacesPage.ts -------------------------------------------------------------------------------- /e2e-tests/tests/pluginSetting.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/e2e-tests/tests/pluginSetting.spec.ts -------------------------------------------------------------------------------- /e2e-tests/tests/podsPage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/e2e-tests/tests/podsPage.spec.ts -------------------------------------------------------------------------------- /e2e-tests/tests/podsPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/e2e-tests/tests/podsPage.ts -------------------------------------------------------------------------------- /e2e-tests/tests/securityPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/e2e-tests/tests/securityPage.ts -------------------------------------------------------------------------------- /e2e-tests/tests/servicesPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/e2e-tests/tests/servicesPage.ts -------------------------------------------------------------------------------- /eslint-config/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/eslint-config/.eslintrc.yml -------------------------------------------------------------------------------- /eslint-config/.gitignore: -------------------------------------------------------------------------------- 1 | /index.js 2 | *~ 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /eslint-config/.npmignore: -------------------------------------------------------------------------------- 1 | export.js 2 | Makefile 3 | .eslintrc.yml 4 | *~ 5 | -------------------------------------------------------------------------------- /eslint-config/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/eslint-config/LICENSE -------------------------------------------------------------------------------- /eslint-config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/eslint-config/Makefile -------------------------------------------------------------------------------- /eslint-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/eslint-config/README.md -------------------------------------------------------------------------------- /eslint-config/export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/eslint-config/export.js -------------------------------------------------------------------------------- /eslint-config/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/eslint-config/package-lock.json -------------------------------------------------------------------------------- /eslint-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/eslint-config/package.json -------------------------------------------------------------------------------- /eslint-config/prettier-config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/eslint-config/prettier-config/index.js -------------------------------------------------------------------------------- /frontend/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/.eslintignore -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/.prettierignore -------------------------------------------------------------------------------- /frontend/.storybook/HeadlampTheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/.storybook/HeadlampTheme.js -------------------------------------------------------------------------------- /frontend/.storybook/baseMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/.storybook/baseMocks.ts -------------------------------------------------------------------------------- /frontend/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/.storybook/main.ts -------------------------------------------------------------------------------- /frontend/.storybook/manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/.storybook/manager.js -------------------------------------------------------------------------------- /frontend/.storybook/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/.storybook/preview.tsx -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/make-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/make-env.js -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /frontend/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /frontend/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/public/apple-touch-icon.png -------------------------------------------------------------------------------- /frontend/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/public/favicon-16x16.png -------------------------------------------------------------------------------- /frontend/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/public/favicon-32x32.png -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/public/icon.icns -------------------------------------------------------------------------------- /frontend/public/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/public/icon.ico -------------------------------------------------------------------------------- /frontend/public/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/public/logo-light.svg -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/mockServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/public/mockServiceWorker.js -------------------------------------------------------------------------------- /frontend/public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/public/mstile-150x150.png -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /frontend/rsbuild.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/rsbuild.config.ts -------------------------------------------------------------------------------- /frontend/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/App.test.tsx -------------------------------------------------------------------------------- /frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/App.tsx -------------------------------------------------------------------------------- /frontend/src/assets/fonts/overpass/latin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/assets/fonts/overpass/latin.woff2 -------------------------------------------------------------------------------- /frontend/src/assets/headlamp-404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/assets/headlamp-404.svg -------------------------------------------------------------------------------- /frontend/src/assets/headlamp-broken.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/assets/headlamp-broken.svg -------------------------------------------------------------------------------- /frontend/src/components/404/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/404/index.tsx -------------------------------------------------------------------------------- /frontend/src/components/App/AppContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/App/AppContainer.tsx -------------------------------------------------------------------------------- /frontend/src/components/App/AppLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/App/AppLogo.tsx -------------------------------------------------------------------------------- /frontend/src/components/App/Home/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/App/Home/config.ts -------------------------------------------------------------------------------- /frontend/src/components/App/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/App/Home/index.tsx -------------------------------------------------------------------------------- /frontend/src/components/App/Layout.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/App/Layout.stories.tsx -------------------------------------------------------------------------------- /frontend/src/components/App/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/App/Layout.tsx -------------------------------------------------------------------------------- /frontend/src/components/App/RouteSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/App/RouteSwitcher.tsx -------------------------------------------------------------------------------- /frontend/src/components/App/Settings/hook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/App/Settings/hook.tsx -------------------------------------------------------------------------------- /frontend/src/components/App/Settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/App/Settings/index.tsx -------------------------------------------------------------------------------- /frontend/src/components/App/Settings/util.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/App/Settings/util.tsx -------------------------------------------------------------------------------- /frontend/src/components/App/TopBar.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/App/TopBar.stories.tsx -------------------------------------------------------------------------------- /frontend/src/components/App/TopBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/App/TopBar.tsx -------------------------------------------------------------------------------- /frontend/src/components/App/VersionDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/App/VersionDialog.tsx -------------------------------------------------------------------------------- /frontend/src/components/App/icons.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/App/icons.test.ts -------------------------------------------------------------------------------- /frontend/src/components/App/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/App/icons.ts -------------------------------------------------------------------------------- /frontend/src/components/App/pluginManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/App/pluginManager.ts -------------------------------------------------------------------------------- /frontend/src/components/App/runCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/App/runCommand.ts -------------------------------------------------------------------------------- /frontend/src/components/App/themeSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/App/themeSlice.ts -------------------------------------------------------------------------------- /frontend/src/components/Sidebar/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/Sidebar/Sidebar.tsx -------------------------------------------------------------------------------- /frontend/src/components/Sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/Sidebar/index.tsx -------------------------------------------------------------------------------- /frontend/src/components/TestHelpers/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/TestHelpers/theme.ts -------------------------------------------------------------------------------- /frontend/src/components/account/Auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/account/Auth.tsx -------------------------------------------------------------------------------- /frontend/src/components/activity/Activity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/activity/Activity.tsx -------------------------------------------------------------------------------- /frontend/src/components/authchooser/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/authchooser/index.tsx -------------------------------------------------------------------------------- /frontend/src/components/cluster/Chooser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/cluster/Chooser.tsx -------------------------------------------------------------------------------- /frontend/src/components/cluster/Overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/cluster/Overview.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/Chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/common/Chart.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/Dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/common/Dialog.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/DropZoneBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/common/DropZoneBox.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/InnerTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/common/InnerTable.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/common/Label.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/common/Link.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/Loader.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/common/Loader.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/common/Loader.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/LogViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/common/LogViewer.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/SectionBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/common/SectionBox.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/SimpleTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/common/SimpleTable.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/Table/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/common/Table/Table.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/Table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/common/Table/index.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/common/Tabs.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/Terminal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/common/Terminal.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/common/index.test.ts -------------------------------------------------------------------------------- /frontend/src/components/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/common/index.ts -------------------------------------------------------------------------------- /frontend/src/components/configmap/Details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/configmap/Details.tsx -------------------------------------------------------------------------------- /frontend/src/components/configmap/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/configmap/List.tsx -------------------------------------------------------------------------------- /frontend/src/components/crd/Details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/crd/Details.tsx -------------------------------------------------------------------------------- /frontend/src/components/crd/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/crd/List.tsx -------------------------------------------------------------------------------- /frontend/src/components/crd/storyHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/crd/storyHelper.ts -------------------------------------------------------------------------------- /frontend/src/components/cronjob/Details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/cronjob/Details.tsx -------------------------------------------------------------------------------- /frontend/src/components/cronjob/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/cronjob/List.tsx -------------------------------------------------------------------------------- /frontend/src/components/cronjob/storyHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/cronjob/storyHelper.ts -------------------------------------------------------------------------------- /frontend/src/components/daemonset/Details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/daemonset/Details.tsx -------------------------------------------------------------------------------- /frontend/src/components/daemonset/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/daemonset/List.tsx -------------------------------------------------------------------------------- /frontend/src/components/deployments/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/deployments/List.tsx -------------------------------------------------------------------------------- /frontend/src/components/endpoints/Details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/endpoints/Details.tsx -------------------------------------------------------------------------------- /frontend/src/components/endpoints/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/endpoints/List.tsx -------------------------------------------------------------------------------- /frontend/src/components/gateway/ClassList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/gateway/ClassList.tsx -------------------------------------------------------------------------------- /frontend/src/components/gateway/storyHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/gateway/storyHelper.ts -------------------------------------------------------------------------------- /frontend/src/components/gateway/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/gateway/utils.tsx -------------------------------------------------------------------------------- /frontend/src/components/ingress/ClassList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/ingress/ClassList.tsx -------------------------------------------------------------------------------- /frontend/src/components/ingress/Details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/ingress/Details.tsx -------------------------------------------------------------------------------- /frontend/src/components/ingress/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/ingress/List.tsx -------------------------------------------------------------------------------- /frontend/src/components/ingress/storyHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/ingress/storyHelper.ts -------------------------------------------------------------------------------- /frontend/src/components/job/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/job/List.tsx -------------------------------------------------------------------------------- /frontend/src/components/job/storyHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/job/storyHelper.ts -------------------------------------------------------------------------------- /frontend/src/components/lease/Details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/lease/Details.tsx -------------------------------------------------------------------------------- /frontend/src/components/lease/List.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/lease/List.stories.tsx -------------------------------------------------------------------------------- /frontend/src/components/lease/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/lease/List.tsx -------------------------------------------------------------------------------- /frontend/src/components/lease/storyHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/lease/storyHelper.ts -------------------------------------------------------------------------------- /frontend/src/components/limitRange/Details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/limitRange/Details.tsx -------------------------------------------------------------------------------- /frontend/src/components/limitRange/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/limitRange/List.tsx -------------------------------------------------------------------------------- /frontend/src/components/namespace/Details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/namespace/Details.tsx -------------------------------------------------------------------------------- /frontend/src/components/namespace/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/namespace/List.tsx -------------------------------------------------------------------------------- /frontend/src/components/networkpolicy/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/networkpolicy/List.tsx -------------------------------------------------------------------------------- /frontend/src/components/node/Charts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/node/Charts.tsx -------------------------------------------------------------------------------- /frontend/src/components/node/Details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/node/Details.tsx -------------------------------------------------------------------------------- /frontend/src/components/node/List.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/node/List.stories.tsx -------------------------------------------------------------------------------- /frontend/src/components/node/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/node/List.tsx -------------------------------------------------------------------------------- /frontend/src/components/node/storyHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/node/storyHelper.ts -------------------------------------------------------------------------------- /frontend/src/components/node/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/node/utils.tsx -------------------------------------------------------------------------------- /frontend/src/components/oidcauth/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/oidcauth/index.tsx -------------------------------------------------------------------------------- /frontend/src/components/pod/Details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/pod/Details.tsx -------------------------------------------------------------------------------- /frontend/src/components/pod/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/pod/List.tsx -------------------------------------------------------------------------------- /frontend/src/components/pod/jsonHandling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/pod/jsonHandling.ts -------------------------------------------------------------------------------- /frontend/src/components/pod/storyHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/pod/storyHelper.ts -------------------------------------------------------------------------------- /frontend/src/components/portforward/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/portforward/index.tsx -------------------------------------------------------------------------------- /frontend/src/components/priorityClass/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/priorityClass/List.tsx -------------------------------------------------------------------------------- /frontend/src/components/replicaset/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/replicaset/List.tsx -------------------------------------------------------------------------------- /frontend/src/components/resourceQuota/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/resourceQuota/List.tsx -------------------------------------------------------------------------------- /frontend/src/components/role/BindingList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/role/BindingList.tsx -------------------------------------------------------------------------------- /frontend/src/components/role/Details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/role/Details.tsx -------------------------------------------------------------------------------- /frontend/src/components/role/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/role/List.tsx -------------------------------------------------------------------------------- /frontend/src/components/runtimeClass/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/runtimeClass/List.tsx -------------------------------------------------------------------------------- /frontend/src/components/secret/Details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/secret/Details.tsx -------------------------------------------------------------------------------- /frontend/src/components/secret/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/secret/List.tsx -------------------------------------------------------------------------------- /frontend/src/components/secret/storyHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/secret/storyHelper.ts -------------------------------------------------------------------------------- /frontend/src/components/service/Details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/service/Details.tsx -------------------------------------------------------------------------------- /frontend/src/components/service/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/service/List.tsx -------------------------------------------------------------------------------- /frontend/src/components/statefulset/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/statefulset/List.tsx -------------------------------------------------------------------------------- /frontend/src/components/storage/ClaimList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/storage/ClaimList.tsx -------------------------------------------------------------------------------- /frontend/src/components/storage/ClassList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/storage/ClassList.tsx -------------------------------------------------------------------------------- /frontend/src/components/storage/VolumeList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/storage/VolumeList.tsx -------------------------------------------------------------------------------- /frontend/src/components/storage/storyHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/storage/storyHelper.ts -------------------------------------------------------------------------------- /frontend/src/components/storage/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/storage/utils.tsx -------------------------------------------------------------------------------- /frontend/src/components/workload/Charts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/workload/Charts.tsx -------------------------------------------------------------------------------- /frontend/src/components/workload/Details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/workload/Details.tsx -------------------------------------------------------------------------------- /frontend/src/components/workload/Overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/components/workload/Overview.tsx -------------------------------------------------------------------------------- /frontend/src/filesFilter/filesFilter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/filesFilter/filesFilter.test.ts -------------------------------------------------------------------------------- /frontend/src/filesFilter/filesFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/filesFilter/filesFilter.ts -------------------------------------------------------------------------------- /frontend/src/helpers/clusterSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/helpers/clusterSettings.ts -------------------------------------------------------------------------------- /frontend/src/helpers/debugVerbose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/helpers/debugVerbose.ts -------------------------------------------------------------------------------- /frontend/src/helpers/getAppUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/helpers/getAppUrl.ts -------------------------------------------------------------------------------- /frontend/src/helpers/getBaseUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/helpers/getBaseUrl.ts -------------------------------------------------------------------------------- /frontend/src/helpers/getHeadlampAPIHeaders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/helpers/getHeadlampAPIHeaders.ts -------------------------------------------------------------------------------- /frontend/src/helpers/getProductInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/helpers/getProductInfo.ts -------------------------------------------------------------------------------- /frontend/src/helpers/helpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/helpers/helpers.test.ts -------------------------------------------------------------------------------- /frontend/src/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/helpers/index.ts -------------------------------------------------------------------------------- /frontend/src/helpers/isBackstage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/helpers/isBackstage.ts -------------------------------------------------------------------------------- /frontend/src/helpers/isDevMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/helpers/isDevMode.ts -------------------------------------------------------------------------------- /frontend/src/helpers/isDockerDesktop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/helpers/isDockerDesktop.ts -------------------------------------------------------------------------------- /frontend/src/helpers/isElectron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/helpers/isElectron.ts -------------------------------------------------------------------------------- /frontend/src/helpers/recentClusters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/helpers/recentClusters.ts -------------------------------------------------------------------------------- /frontend/src/helpers/tablesRowsPerPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/helpers/tablesRowsPerPage.ts -------------------------------------------------------------------------------- /frontend/src/helpers/testHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/helpers/testHelpers.ts -------------------------------------------------------------------------------- /frontend/src/i18n/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/README.md -------------------------------------------------------------------------------- /frontend/src/i18n/ThemeProviderNexti18n.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/ThemeProviderNexti18n.tsx -------------------------------------------------------------------------------- /frontend/src/i18n/allowlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/allowlist.json -------------------------------------------------------------------------------- /frontend/src/i18n/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/config.ts -------------------------------------------------------------------------------- /frontend/src/i18n/electronI18n.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/electronI18n.tsx -------------------------------------------------------------------------------- /frontend/src/i18n/i18next-parser.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/i18next-parser.config.js -------------------------------------------------------------------------------- /frontend/src/i18n/i18nextSharedConfig.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/i18nextSharedConfig.mjs -------------------------------------------------------------------------------- /frontend/src/i18n/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/index.test.ts -------------------------------------------------------------------------------- /frontend/src/i18n/locales/de/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/de/app.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/de/glossary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/de/glossary.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/de/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/de/translation.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/en/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/en/app.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/en/glossary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/en/glossary.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/en/translation.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/es/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/es/app.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/es/glossary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/es/glossary.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/es/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/es/translation.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/fr/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/fr/app.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/fr/glossary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/fr/glossary.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/fr/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/fr/translation.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/hi/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/hi/app.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/hi/glossary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/hi/glossary.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/hi/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/hi/translation.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/it/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/it/app.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/it/glossary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/it/glossary.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/it/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/it/translation.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/ja/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/ja/app.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/ja/glossary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/ja/glossary.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/ja/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/ja/translation.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/ko/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/ko/app.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/ko/glossary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/ko/glossary.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/ko/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/ko/translation.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/pt/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/pt/app.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/pt/glossary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/pt/glossary.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/pt/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/pt/translation.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/ta/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/ta/app.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/ta/glossary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/ta/glossary.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/ta/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/ta/translation.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/zh-tw/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/zh-tw/app.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/zh-tw/glossary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/zh-tw/glossary.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/zh/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/zh/app.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/zh/glossary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/zh/glossary.json -------------------------------------------------------------------------------- /frontend/src/i18n/locales/zh/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/locales/zh/translation.json -------------------------------------------------------------------------------- /frontend/src/i18n/tools/copy-translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/i18n/tools/copy-translations.js -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/index.tsx -------------------------------------------------------------------------------- /frontend/src/lib/AppTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/AppTheme.ts -------------------------------------------------------------------------------- /frontend/src/lib/auth.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/auth.test.ts -------------------------------------------------------------------------------- /frontend/src/lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/auth.ts -------------------------------------------------------------------------------- /frontend/src/lib/cluster.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/cluster.test.ts -------------------------------------------------------------------------------- /frontend/src/lib/cluster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/cluster.ts -------------------------------------------------------------------------------- /frontend/src/lib/docs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/docs.test.ts -------------------------------------------------------------------------------- /frontend/src/lib/docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/docs.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/KubeMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/KubeMetadata.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/KubeObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/KubeObject.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/PodMetrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/PodMetrics.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/ResourceCategory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/ResourceCategory.tsx -------------------------------------------------------------------------------- /frontend/src/lib/k8s/Workload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/Workload.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/api/v1/apiProxy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/api/v1/apiProxy.test.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/api/v1/apply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/api/v1/apply.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/api/v1/clusterApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/api/v1/clusterApi.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/api/v1/clusterRequests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/api/v1/clusterRequests.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/api/v1/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/api/v1/constants.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/api/v1/drainNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/api/v1/drainNode.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/api/v1/factories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/api/v1/factories.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/api/v1/formatUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/api/v1/formatUrl.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/api/v1/metricsApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/api/v1/metricsApi.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/api/v1/pluginsApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/api/v1/pluginsApi.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/api/v1/portForward.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/api/v1/portForward.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/api/v1/queryParameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/api/v1/queryParameters.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/api/v1/scaleApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/api/v1/scaleApi.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/api/v1/streamingApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/api/v1/streamingApi.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/api/v2/ApiError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/api/v2/ApiError.tsx -------------------------------------------------------------------------------- /frontend/src/lib/k8s/api/v2/ApiResource.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/api/v2/ApiResource.tsx -------------------------------------------------------------------------------- /frontend/src/lib/k8s/api/v2/KubeList.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/api/v2/KubeList.test.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/api/v2/KubeList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/api/v2/KubeList.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/api/v2/apiDiscovery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/api/v2/apiDiscovery.tsx -------------------------------------------------------------------------------- /frontend/src/lib/k8s/api/v2/fetch.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/api/v2/fetch.test.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/api/v2/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/api/v2/fetch.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/api/v2/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/api/v2/hooks.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/api/v2/makeUrl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/api/v2/makeUrl.test.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/api/v2/makeUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/api/v2/makeUrl.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/api/v2/webSocket.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/api/v2/webSocket.test.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/api/v2/webSocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/api/v2/webSocket.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/apiProxy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/apiProxy/index.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/backendTLSPolicy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/backendTLSPolicy.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/backendTrafficPolicy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/backendTrafficPolicy.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/cluster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/cluster.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/clusterRole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/clusterRole.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/clusterRoleBinding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/clusterRoleBinding.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/configMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/configMap.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/crd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/crd.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/cronJob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/cronJob.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/daemonSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/daemonSet.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/deployment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/deployment.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/endpointSlices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/endpointSlices.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/endpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/endpoints.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/event.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/gateway.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/gatewayClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/gatewayClass.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/grpcRoute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/grpcRoute.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/hpa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/hpa.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/httpRoute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/httpRoute.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/index.test.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/index.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/ingress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/ingress.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/ingressClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/ingressClass.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/job.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/job.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/kubeconfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/kubeconfig.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/lease.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/lease.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/limitRange.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/limitRange.tsx -------------------------------------------------------------------------------- /frontend/src/lib/k8s/namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/namespace.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/networkpolicy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/networkpolicy.tsx -------------------------------------------------------------------------------- /frontend/src/lib/k8s/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/node.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/persistentVolume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/persistentVolume.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/persistentVolumeClaim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/persistentVolumeClaim.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/pod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/pod.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/podDisruptionBudget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/podDisruptionBudget.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/priorityClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/priorityClass.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/priorityClasses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/priorityClasses.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/referenceGrant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/referenceGrant.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/replicaSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/replicaSet.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/resourceQuota.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/resourceQuota.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/role.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/roleBinding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/roleBinding.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/runtime.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/secret.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/secret.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/service.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/serviceAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/serviceAccount.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/statefulSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/statefulSet.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/storageClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/storageClass.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/token.ts -------------------------------------------------------------------------------- /frontend/src/lib/k8s/vpa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/k8s/vpa.ts -------------------------------------------------------------------------------- /frontend/src/lib/notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/notification.tsx -------------------------------------------------------------------------------- /frontend/src/lib/queryClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/queryClient.ts -------------------------------------------------------------------------------- /frontend/src/lib/router/Route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/router/Route.tsx -------------------------------------------------------------------------------- /frontend/src/lib/router/createRouteURL.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/router/createRouteURL.tsx -------------------------------------------------------------------------------- /frontend/src/lib/router/getDefaultRoutes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/router/getDefaultRoutes.tsx -------------------------------------------------------------------------------- /frontend/src/lib/router/getRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/router/getRoute.tsx -------------------------------------------------------------------------------- /frontend/src/lib/router/getRoutePath.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/router/getRoutePath.tsx -------------------------------------------------------------------------------- /frontend/src/lib/router/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/router/index.tsx -------------------------------------------------------------------------------- /frontend/src/lib/swagger-parser.k8s.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/swagger-parser.k8s.test.ts -------------------------------------------------------------------------------- /frontend/src/lib/themes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/themes.test.ts -------------------------------------------------------------------------------- /frontend/src/lib/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/themes.ts -------------------------------------------------------------------------------- /frontend/src/lib/units.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/units.test.ts -------------------------------------------------------------------------------- /frontend/src/lib/units.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/units.ts -------------------------------------------------------------------------------- /frontend/src/lib/util.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/util.test.ts -------------------------------------------------------------------------------- /frontend/src/lib/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/lib/util.ts -------------------------------------------------------------------------------- /frontend/src/make-env.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/make-env.test.js -------------------------------------------------------------------------------- /frontend/src/plugin/Plugins.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/plugin/Plugins.tsx -------------------------------------------------------------------------------- /frontend/src/plugin/configStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/plugin/configStore.ts -------------------------------------------------------------------------------- /frontend/src/plugin/filterSources.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/plugin/filterSources.test.ts -------------------------------------------------------------------------------- /frontend/src/plugin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/plugin/index.ts -------------------------------------------------------------------------------- /frontend/src/plugin/lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/plugin/lib.ts -------------------------------------------------------------------------------- /frontend/src/plugin/pluginConfigSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/plugin/pluginConfigSlice.ts -------------------------------------------------------------------------------- /frontend/src/plugin/pluginI18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/plugin/pluginI18n.ts -------------------------------------------------------------------------------- /frontend/src/plugin/pluginLib.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/plugin/pluginLib.test.ts -------------------------------------------------------------------------------- /frontend/src/plugin/pluginSlice.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/plugin/pluginSlice.test.tsx -------------------------------------------------------------------------------- /frontend/src/plugin/plugins/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /frontend/src/plugin/pluginsSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/plugin/pluginsSlice.ts -------------------------------------------------------------------------------- /frontend/src/plugin/registry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/plugin/registry.tsx -------------------------------------------------------------------------------- /frontend/src/plugin/runPlugin.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/plugin/runPlugin.test.ts -------------------------------------------------------------------------------- /frontend/src/plugin/runPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/plugin/runPlugin.ts -------------------------------------------------------------------------------- /frontend/src/redux/actionButtonsSlice.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/redux/actionButtonsSlice.test.ts -------------------------------------------------------------------------------- /frontend/src/redux/actionButtonsSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/redux/actionButtonsSlice.ts -------------------------------------------------------------------------------- /frontend/src/redux/clusterActionSlice.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/redux/clusterActionSlice.test.ts -------------------------------------------------------------------------------- /frontend/src/redux/clusterActionSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/redux/clusterActionSlice.ts -------------------------------------------------------------------------------- /frontend/src/redux/clusterProviderSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/redux/clusterProviderSlice.ts -------------------------------------------------------------------------------- /frontend/src/redux/configSlice.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/redux/configSlice.test.ts -------------------------------------------------------------------------------- /frontend/src/redux/configSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/redux/configSlice.ts -------------------------------------------------------------------------------- /frontend/src/redux/drawerModeSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/redux/drawerModeSlice.ts -------------------------------------------------------------------------------- /frontend/src/redux/filterSlice.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/redux/filterSlice.test.ts -------------------------------------------------------------------------------- /frontend/src/redux/filterSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/redux/filterSlice.ts -------------------------------------------------------------------------------- /frontend/src/redux/headlampEventSlice.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/redux/headlampEventSlice.test.tsx -------------------------------------------------------------------------------- /frontend/src/redux/headlampEventSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/redux/headlampEventSlice.ts -------------------------------------------------------------------------------- /frontend/src/redux/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/redux/hooks.ts -------------------------------------------------------------------------------- /frontend/src/redux/overviewChartsSlice.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/redux/overviewChartsSlice.test.ts -------------------------------------------------------------------------------- /frontend/src/redux/overviewChartsSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/redux/overviewChartsSlice.ts -------------------------------------------------------------------------------- /frontend/src/redux/projectsSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/redux/projectsSlice.ts -------------------------------------------------------------------------------- /frontend/src/redux/reducers/reducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/redux/reducers/reducers.tsx -------------------------------------------------------------------------------- /frontend/src/redux/routesSlice.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/redux/routesSlice.test.tsx -------------------------------------------------------------------------------- /frontend/src/redux/routesSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/redux/routesSlice.ts -------------------------------------------------------------------------------- /frontend/src/redux/stores/store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/redux/stores/store.tsx -------------------------------------------------------------------------------- /frontend/src/redux/uiSlice.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/redux/uiSlice.test.ts -------------------------------------------------------------------------------- /frontend/src/redux/uiSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/redux/uiSlice.ts -------------------------------------------------------------------------------- /frontend/src/resources/icon-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/resources/icon-dark.svg -------------------------------------------------------------------------------- /frontend/src/resources/icon-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/resources/icon-light.svg -------------------------------------------------------------------------------- /frontend/src/resources/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/resources/logo-dark.svg -------------------------------------------------------------------------------- /frontend/src/resources/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/resources/logo-light.svg -------------------------------------------------------------------------------- /frontend/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/setupTests.ts -------------------------------------------------------------------------------- /frontend/src/stateless/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/stateless/index.test.ts -------------------------------------------------------------------------------- /frontend/src/stateless/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/stateless/index.ts -------------------------------------------------------------------------------- /frontend/src/storybook.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/storybook.test.tsx -------------------------------------------------------------------------------- /frontend/src/test/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/test/index.tsx -------------------------------------------------------------------------------- /frontend/src/test/mocker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/src/test/mocker.ts -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/vite.config.ts -------------------------------------------------------------------------------- /frontend/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/frontend/vitest.config.ts -------------------------------------------------------------------------------- /kubernetes-headlamp-ingress-sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/kubernetes-headlamp-ingress-sample.yaml -------------------------------------------------------------------------------- /kubernetes-headlamp-monitoring.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/kubernetes-headlamp-monitoring.yaml -------------------------------------------------------------------------------- /kubernetes-headlamp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/kubernetes-headlamp.yaml -------------------------------------------------------------------------------- /load-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/load-tests/README.md -------------------------------------------------------------------------------- /load-tests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/load-tests/package-lock.json -------------------------------------------------------------------------------- /load-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/load-tests/package.json -------------------------------------------------------------------------------- /load-tests/scripts/create-clusters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/load-tests/scripts/create-clusters.js -------------------------------------------------------------------------------- /load-tests/scripts/create-deployments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/load-tests/scripts/create-deployments.js -------------------------------------------------------------------------------- /load-tests/scripts/create-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/load-tests/scripts/create-events.js -------------------------------------------------------------------------------- /load-tests/scripts/create-nodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/load-tests/scripts/create-nodes.js -------------------------------------------------------------------------------- /load-tests/scripts/create-pods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/load-tests/scripts/create-pods.js -------------------------------------------------------------------------------- /load-tests/scripts/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/load-tests/scripts/helpers.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/package.json -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/README.md -------------------------------------------------------------------------------- /plugins/examples/app-menus/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/app-menus/.gitignore -------------------------------------------------------------------------------- /plugins/examples/app-menus/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/app-menus/.vscode/tasks.json -------------------------------------------------------------------------------- /plugins/examples/app-menus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/app-menus/README.md -------------------------------------------------------------------------------- /plugins/examples/app-menus/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/app-menus/package-lock.json -------------------------------------------------------------------------------- /plugins/examples/app-menus/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/app-menus/package.json -------------------------------------------------------------------------------- /plugins/examples/app-menus/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/app-menus/src/index.tsx -------------------------------------------------------------------------------- /plugins/examples/app-menus/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/app-menus/tsconfig.json -------------------------------------------------------------------------------- /plugins/examples/change-logo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/change-logo/.gitignore -------------------------------------------------------------------------------- /plugins/examples/change-logo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/change-logo/README.md -------------------------------------------------------------------------------- /plugins/examples/change-logo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/change-logo/package-lock.json -------------------------------------------------------------------------------- /plugins/examples/change-logo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/change-logo/package.json -------------------------------------------------------------------------------- /plugins/examples/change-logo/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/change-logo/src/index.tsx -------------------------------------------------------------------------------- /plugins/examples/change-logo/src/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/change-logo/src/settings.tsx -------------------------------------------------------------------------------- /plugins/examples/change-logo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/change-logo/tsconfig.json -------------------------------------------------------------------------------- /plugins/examples/cluster-chooser/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/cluster-chooser/.gitignore -------------------------------------------------------------------------------- /plugins/examples/cluster-chooser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/cluster-chooser/README.md -------------------------------------------------------------------------------- /plugins/examples/cluster-chooser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/cluster-chooser/package.json -------------------------------------------------------------------------------- /plugins/examples/cluster-chooser/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/cluster-chooser/src/index.tsx -------------------------------------------------------------------------------- /plugins/examples/cluster-chooser/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/cluster-chooser/tsconfig.json -------------------------------------------------------------------------------- /plugins/examples/custom-theme/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/custom-theme/.gitignore -------------------------------------------------------------------------------- /plugins/examples/custom-theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/custom-theme/README.md -------------------------------------------------------------------------------- /plugins/examples/custom-theme/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/custom-theme/package.json -------------------------------------------------------------------------------- /plugins/examples/custom-theme/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/custom-theme/src/index.tsx -------------------------------------------------------------------------------- /plugins/examples/custom-theme/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/custom-theme/tsconfig.json -------------------------------------------------------------------------------- /plugins/examples/customizing-map/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/customizing-map/.gitignore -------------------------------------------------------------------------------- /plugins/examples/customizing-map/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/customizing-map/README.md -------------------------------------------------------------------------------- /plugins/examples/customizing-map/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/customizing-map/package.json -------------------------------------------------------------------------------- /plugins/examples/customizing-map/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/customizing-map/src/index.tsx -------------------------------------------------------------------------------- /plugins/examples/customizing-map/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/customizing-map/tsconfig.json -------------------------------------------------------------------------------- /plugins/examples/details-view/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/details-view/.gitignore -------------------------------------------------------------------------------- /plugins/examples/details-view/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/details-view/README.md -------------------------------------------------------------------------------- /plugins/examples/details-view/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/details-view/package.json -------------------------------------------------------------------------------- /plugins/examples/details-view/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/details-view/src/index.tsx -------------------------------------------------------------------------------- /plugins/examples/details-view/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/details-view/tsconfig.json -------------------------------------------------------------------------------- /plugins/examples/dynamic-clusters/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/dynamic-clusters/.gitignore -------------------------------------------------------------------------------- /plugins/examples/dynamic-clusters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/dynamic-clusters/README.md -------------------------------------------------------------------------------- /plugins/examples/dynamic-clusters/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/dynamic-clusters/package.json -------------------------------------------------------------------------------- /plugins/examples/headlamp-events/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/headlamp-events/.gitignore -------------------------------------------------------------------------------- /plugins/examples/headlamp-events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/headlamp-events/README.md -------------------------------------------------------------------------------- /plugins/examples/headlamp-events/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/headlamp-events/package.json -------------------------------------------------------------------------------- /plugins/examples/headlamp-events/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/headlamp-events/src/index.tsx -------------------------------------------------------------------------------- /plugins/examples/headlamp-events/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/headlamp-events/tsconfig.json -------------------------------------------------------------------------------- /plugins/examples/pod-counter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/pod-counter/.gitignore -------------------------------------------------------------------------------- /plugins/examples/pod-counter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/pod-counter/README.md -------------------------------------------------------------------------------- /plugins/examples/pod-counter/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/pod-counter/package-lock.json -------------------------------------------------------------------------------- /plugins/examples/pod-counter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/pod-counter/package.json -------------------------------------------------------------------------------- /plugins/examples/pod-counter/src/Message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/pod-counter/src/Message.tsx -------------------------------------------------------------------------------- /plugins/examples/pod-counter/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/pod-counter/src/index.tsx -------------------------------------------------------------------------------- /plugins/examples/pod-counter/src/styles.css: -------------------------------------------------------------------------------- 1 | .random_class_name { 2 | color: #000; 3 | } 4 | -------------------------------------------------------------------------------- /plugins/examples/pod-counter/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/pod-counter/tsconfig.json -------------------------------------------------------------------------------- /plugins/examples/projects/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/projects/.gitignore -------------------------------------------------------------------------------- /plugins/examples/projects/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/projects/.vscode/tasks.json -------------------------------------------------------------------------------- /plugins/examples/projects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/projects/README.md -------------------------------------------------------------------------------- /plugins/examples/projects/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/projects/package-lock.json -------------------------------------------------------------------------------- /plugins/examples/projects/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/projects/package.json -------------------------------------------------------------------------------- /plugins/examples/projects/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/projects/src/index.tsx -------------------------------------------------------------------------------- /plugins/examples/projects/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/projects/tsconfig.json -------------------------------------------------------------------------------- /plugins/examples/resource-charts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/resource-charts/.gitignore -------------------------------------------------------------------------------- /plugins/examples/resource-charts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/resource-charts/README.md -------------------------------------------------------------------------------- /plugins/examples/resource-charts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/resource-charts/package.json -------------------------------------------------------------------------------- /plugins/examples/resource-charts/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/resource-charts/src/index.tsx -------------------------------------------------------------------------------- /plugins/examples/resource-charts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/resource-charts/tsconfig.json -------------------------------------------------------------------------------- /plugins/examples/sidebar/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/sidebar/.gitignore -------------------------------------------------------------------------------- /plugins/examples/sidebar/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/sidebar/.vscode/settings.json -------------------------------------------------------------------------------- /plugins/examples/sidebar/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/sidebar/.vscode/tasks.json -------------------------------------------------------------------------------- /plugins/examples/sidebar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/sidebar/README.md -------------------------------------------------------------------------------- /plugins/examples/sidebar/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/sidebar/package-lock.json -------------------------------------------------------------------------------- /plugins/examples/sidebar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/sidebar/package.json -------------------------------------------------------------------------------- /plugins/examples/sidebar/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/sidebar/src/index.tsx -------------------------------------------------------------------------------- /plugins/examples/sidebar/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/sidebar/tsconfig.json -------------------------------------------------------------------------------- /plugins/examples/tables/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/tables/.gitignore -------------------------------------------------------------------------------- /plugins/examples/tables/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/tables/.vscode/settings.json -------------------------------------------------------------------------------- /plugins/examples/tables/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/tables/.vscode/tasks.json -------------------------------------------------------------------------------- /plugins/examples/tables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/tables/README.md -------------------------------------------------------------------------------- /plugins/examples/tables/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/tables/package-lock.json -------------------------------------------------------------------------------- /plugins/examples/tables/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/tables/package.json -------------------------------------------------------------------------------- /plugins/examples/tables/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/tables/src/index.tsx -------------------------------------------------------------------------------- /plugins/examples/tables/src/storybook.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/tables/src/storybook.test.tsx -------------------------------------------------------------------------------- /plugins/examples/tables/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/tables/tsconfig.json -------------------------------------------------------------------------------- /plugins/examples/ui-panels/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/ui-panels/.gitignore -------------------------------------------------------------------------------- /plugins/examples/ui-panels/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/ui-panels/.vscode/tasks.json -------------------------------------------------------------------------------- /plugins/examples/ui-panels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/ui-panels/README.md -------------------------------------------------------------------------------- /plugins/examples/ui-panels/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/ui-panels/package-lock.json -------------------------------------------------------------------------------- /plugins/examples/ui-panels/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/ui-panels/package.json -------------------------------------------------------------------------------- /plugins/examples/ui-panels/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/ui-panels/src/index.tsx -------------------------------------------------------------------------------- /plugins/examples/ui-panels/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/examples/ui-panels/tsconfig.json -------------------------------------------------------------------------------- /plugins/headlamp-plugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/headlamp-plugin/.gitignore -------------------------------------------------------------------------------- /plugins/headlamp-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/headlamp-plugin/README.md -------------------------------------------------------------------------------- /plugins/headlamp-plugin/bin/headlamp-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/headlamp-plugin/bin/headlamp-plugin.js -------------------------------------------------------------------------------- /plugins/headlamp-plugin/check-storybook.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/headlamp-plugin/check-storybook.mjs -------------------------------------------------------------------------------- /plugins/headlamp-plugin/config/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/headlamp-plugin/config/setupTests.js -------------------------------------------------------------------------------- /plugins/headlamp-plugin/config/vite.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/headlamp-plugin/config/vite.config.mjs -------------------------------------------------------------------------------- /plugins/headlamp-plugin/dependencies-sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/headlamp-plugin/dependencies-sync.js -------------------------------------------------------------------------------- /plugins/headlamp-plugin/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/headlamp-plugin/package-lock.json -------------------------------------------------------------------------------- /plugins/headlamp-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/headlamp-plugin/package.json -------------------------------------------------------------------------------- /plugins/headlamp-plugin/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/headlamp-plugin/src/.gitignore -------------------------------------------------------------------------------- /plugins/headlamp-plugin/src/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/headlamp-plugin/src/.npmignore -------------------------------------------------------------------------------- /plugins/headlamp-plugin/src/ApiProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/headlamp-plugin/src/ApiProxy.ts -------------------------------------------------------------------------------- /plugins/headlamp-plugin/src/Crd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/headlamp-plugin/src/Crd.ts -------------------------------------------------------------------------------- /plugins/headlamp-plugin/src/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/headlamp-plugin/src/Utils.ts -------------------------------------------------------------------------------- /plugins/headlamp-plugin/src/additional.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/headlamp-plugin/src/additional.d.ts -------------------------------------------------------------------------------- /plugins/headlamp-plugin/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/headlamp-plugin/src/index.ts -------------------------------------------------------------------------------- /plugins/headlamp-plugin/template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/headlamp-plugin/template/.gitignore -------------------------------------------------------------------------------- /plugins/headlamp-plugin/template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/headlamp-plugin/template/README.md -------------------------------------------------------------------------------- /plugins/headlamp-plugin/template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/headlamp-plugin/template/package.json -------------------------------------------------------------------------------- /plugins/headlamp-plugin/template/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/headlamp-plugin/template/src/index.tsx -------------------------------------------------------------------------------- /plugins/headlamp-plugin/template/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/headlamp-plugin/template/tsconfig.json -------------------------------------------------------------------------------- /plugins/headlamp-plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/headlamp-plugin/tsconfig.json -------------------------------------------------------------------------------- /plugins/pluginctl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/pluginctl/README.md -------------------------------------------------------------------------------- /plugins/pluginctl/bin/pluginctl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/pluginctl/bin/pluginctl.js -------------------------------------------------------------------------------- /plugins/pluginctl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/pluginctl/index.js -------------------------------------------------------------------------------- /plugins/pluginctl/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/pluginctl/package-lock.json -------------------------------------------------------------------------------- /plugins/pluginctl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/pluginctl/package.json -------------------------------------------------------------------------------- /plugins/pluginctl/src/plugin-management.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/pluginctl/src/plugin-management.e2e.js -------------------------------------------------------------------------------- /plugins/pluginctl/src/plugin-management.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/pluginctl/src/plugin-management.js -------------------------------------------------------------------------------- /plugins/pluginctl/test-pluginctl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/pluginctl/test-pluginctl.js -------------------------------------------------------------------------------- /plugins/update-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/plugins/update-deps.sh -------------------------------------------------------------------------------- /tools/releaser/.gitignore: -------------------------------------------------------------------------------- 1 | /dist/ -------------------------------------------------------------------------------- /tools/releaser/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/tools/releaser/package-lock.json -------------------------------------------------------------------------------- /tools/releaser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/tools/releaser/package.json -------------------------------------------------------------------------------- /tools/releaser/src/commands/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/tools/releaser/src/commands/build.ts -------------------------------------------------------------------------------- /tools/releaser/src/commands/check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/tools/releaser/src/commands/check.ts -------------------------------------------------------------------------------- /tools/releaser/src/commands/get-app-runs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/tools/releaser/src/commands/get-app-runs.ts -------------------------------------------------------------------------------- /tools/releaser/src/commands/publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/tools/releaser/src/commands/publish.ts -------------------------------------------------------------------------------- /tools/releaser/src/commands/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/tools/releaser/src/commands/start.ts -------------------------------------------------------------------------------- /tools/releaser/src/commands/tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/tools/releaser/src/commands/tag.ts -------------------------------------------------------------------------------- /tools/releaser/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/tools/releaser/src/index.ts -------------------------------------------------------------------------------- /tools/releaser/src/utils/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/tools/releaser/src/utils/git.ts -------------------------------------------------------------------------------- /tools/releaser/src/utils/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/tools/releaser/src/utils/github.ts -------------------------------------------------------------------------------- /tools/releaser/src/utils/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/tools/releaser/src/utils/version.ts -------------------------------------------------------------------------------- /tools/releaser/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/tools/releaser/tsconfig.json -------------------------------------------------------------------------------- /tools/verify-image-digests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/headlamp/HEAD/tools/verify-image-digests.js --------------------------------------------------------------------------------