├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── AGENT.md ├── LICENSE.md ├── README.md ├── bundle.ts ├── cli ├── cmd │ └── main.go ├── go.mod ├── go.sum └── pkg │ ├── config │ └── config.go │ ├── flux │ ├── README.md │ ├── build │ │ ├── build.go │ │ ├── build_test.go │ │ ├── diff.go │ │ └── testdata │ │ │ └── local-kustomization │ │ │ ├── different-name.yaml │ │ │ ├── invalid-resource.yaml │ │ │ ├── multi-doc-reset.yaml │ │ │ ├── multi-doc-valid.yaml │ │ │ ├── no-ns.yaml │ │ │ └── valid.yaml │ └── utils │ │ ├── apply.go │ │ ├── hex.go │ │ ├── hex_test.go │ │ ├── testdata │ │ ├── components-with-crds.yaml │ │ └── components-without-crds.yaml │ │ ├── utils.go │ │ └── utils_test.go │ ├── helm │ └── client.go │ ├── kubernetes │ ├── client.go │ └── watch.go │ ├── server │ ├── embedded.go │ ├── flux_diff.go │ ├── k8s_proxy.go │ ├── kluctl_results.go │ ├── server.go │ └── ws_handler.go │ └── wsutil │ └── wsutil.go ├── deno.json ├── deno.lock ├── dev_server.ts ├── docs ├── README.md ├── changelog │ ├── index.html │ ├── markdown │ │ ├── v2025-09.2.md │ │ ├── v2025-10.1.md │ │ ├── v2025-10.2.md │ │ ├── v2025-11.1.md │ │ └── v2025-11.2.md │ └── media │ │ ├── kluctl-deployment.png │ │ ├── kluctl-details.png │ │ ├── kluctl-diff.png │ │ ├── kluctl-history.png │ │ ├── kluctl-kluctldeployment.png │ │ ├── kluctl-resourcetypes.png │ │ ├── load.mp4 │ │ ├── resource-charts.png │ │ ├── resource-usage.png │ │ ├── split-panes.mp4 │ │ └── stalled.png ├── docs │ ├── index.html │ ├── markdown │ │ ├── filters-and-views.md │ │ ├── fluxcd.md │ │ ├── guide-aks-with-workload-identity.md │ │ ├── guide-google-idp.md │ │ ├── guide-k3d-oidc-capacitor.md │ │ ├── guide-noauth-with-k3d.md │ │ ├── helm.md │ │ ├── keyboard-shortcuts.md │ │ ├── multi-cluster.md │ │ ├── quickstart.md │ │ ├── rbac-and-read-only-mode.md │ │ ├── secrets.md │ │ ├── self-host-agents.md │ │ ├── self-host-authn-authz.md │ │ └── self-host.md │ └── media │ │ ├── filters.png │ │ ├── flux-diffing.png │ │ ├── flux-tree.png │ │ ├── flux.png │ │ ├── helm-diffing.png │ │ ├── helm-releases.png │ │ ├── secrets.png │ │ ├── shortcuts.png │ │ └── views.png ├── favicon.svg ├── index.html ├── llms.txt ├── product.css ├── product.js ├── social.svg ├── synth.css └── synth.js ├── embed.ts ├── public ├── index.html └── styles │ └── main.css ├── scripts ├── add_apache_header.sh └── install_capacitor.sh ├── self-host ├── agent │ ├── agent-deployment.yaml │ └── agent-rbac.yaml ├── charts │ ├── capacitor-next-agent │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── examples │ │ │ └── values-production.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── rbac.yaml │ │ │ ├── secret.yaml │ │ │ └── serviceaccount.yaml │ │ └── values.yaml │ └── capacitor-next │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── examples │ │ ├── values-azure-workload-identity.yaml │ │ ├── values-local.yaml │ │ ├── values-multi-cluster.yaml │ │ ├── values-oidc.yaml │ │ └── values-static-auth.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── rbac.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ │ └── values.yaml └── yaml │ ├── deployment.yaml │ ├── rbac.yaml │ ├── role-builtin-editor.yaml │ └── service.yaml ├── src ├── app.tsx ├── components │ ├── DashboardPane.tsx │ ├── ErrorDisplay.tsx │ ├── LoadingSpinner.tsx │ ├── ResourceTree.tsx │ ├── ResourceTypeVisibilityDropdown.tsx │ ├── Tabs.tsx │ ├── UpdateNotice.test.ts │ ├── UpdateNotice.tsx │ ├── filterBar │ │ └── FilterBar.tsx │ ├── index.ts │ ├── keyboardShortcuts │ │ └── KeyboardShortcuts.tsx │ ├── paneManager │ │ ├── PaneManager.tsx │ │ └── index.ts │ ├── resourceDetail │ │ ├── DiffDrawer.tsx │ │ ├── HelmHistory.tsx │ │ ├── HelmManifest.tsx │ │ ├── HelmManifestDiff.tsx │ │ ├── HelmValues.tsx │ │ ├── LogsViewer.tsx │ │ ├── MetricsViewer.tsx │ │ ├── ResourceDrawer.tsx │ │ ├── Sparkline.tsx │ │ ├── TerminalViewer.tsx │ │ ├── TimeSeriesChart.tsx │ │ └── ValuesFromViewer.tsx │ ├── resourceList │ │ ├── ApplicationList.tsx │ │ ├── BucketList.tsx │ │ ├── ConfigMapList.tsx │ │ ├── CronJobList.tsx │ │ ├── DaemonSetList.tsx │ │ ├── DeploymentList.tsx │ │ ├── DetailRowCard.tsx │ │ ├── EventList.tsx │ │ ├── GitRepositoryList.tsx │ │ ├── HelmChartList.tsx │ │ ├── HelmReleaseFluxList.tsx │ │ ├── HelmReleaseList.tsx │ │ ├── HelmRepositoryList.tsx │ │ ├── HorizontalPodAutoscalerList.tsx │ │ ├── IngressList.tsx │ │ ├── JobList.tsx │ │ ├── KluctlDeploymentList.tsx │ │ ├── KluctlDeploymentResultsList.tsx │ │ ├── KustomizationList.tsx │ │ ├── NamespaceList.tsx │ │ ├── NetworkPolicyList.tsx │ │ ├── NodeList.tsx │ │ ├── OCIRepositoryList.tsx │ │ ├── PersistentVolumeClaimList.tsx │ │ ├── PersistentVolumeList.tsx │ │ ├── PodDisruptionBudgetList.tsx │ │ ├── PodList.tsx │ │ ├── PodMetricsCell.tsx │ │ ├── ResourceList.tsx │ │ ├── RoleBindingList.tsx │ │ ├── RoleList.tsx │ │ ├── ScaledJobList.tsx │ │ ├── SecretList.tsx │ │ ├── ServiceAccountList.tsx │ │ ├── ServiceList.tsx │ │ ├── TerraformList.tsx │ │ └── timeUtils.ts │ ├── settings │ │ └── SettingsModal.tsx │ └── viewBar │ │ └── ViewBar.tsx ├── k8sWebSocketClient.ts ├── resourceTypeConfigs.tsx ├── store │ ├── apiResourceStore.tsx │ ├── appConfigStore.tsx │ ├── dashboardState.tsx │ ├── errorStore.tsx │ ├── filterStore.tsx │ └── paneFilterStore.tsx ├── types │ └── k8s.ts ├── utils │ ├── conditions.ts │ ├── diffUtils.ts │ ├── fluxFilters.tsx │ ├── fluxUtils.tsx │ ├── glob.ts │ ├── k8s.ts │ ├── keyboardManager.ts │ ├── metricsUtils.ts │ ├── permissions.ts │ ├── shortcuts.ts │ ├── sortUtils.ts │ ├── theme.ts │ ├── version.test.ts │ └── version.ts ├── views │ ├── KluctlDeploymentDetails.tsx │ ├── TerraformDetails.tsx │ ├── applicationDetails.tsx │ ├── configMapDetails.tsx │ ├── dashboard.tsx │ ├── helmClassicReleaseDetails.tsx │ ├── helmReleaseDetails.tsx │ ├── kustomizationDetails.tsx │ └── secretDetails.tsx └── watches.tsx └── test_glob.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "deno.enable": true 3 | } 4 | -------------------------------------------------------------------------------- /AGENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/AGENT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/README.md -------------------------------------------------------------------------------- /bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/bundle.ts -------------------------------------------------------------------------------- /cli/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/cli/cmd/main.go -------------------------------------------------------------------------------- /cli/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/cli/go.mod -------------------------------------------------------------------------------- /cli/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/cli/go.sum -------------------------------------------------------------------------------- /cli/pkg/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/cli/pkg/config/config.go -------------------------------------------------------------------------------- /cli/pkg/flux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/cli/pkg/flux/README.md -------------------------------------------------------------------------------- /cli/pkg/flux/build/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/cli/pkg/flux/build/build.go -------------------------------------------------------------------------------- /cli/pkg/flux/build/build_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/cli/pkg/flux/build/build_test.go -------------------------------------------------------------------------------- /cli/pkg/flux/build/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/cli/pkg/flux/build/diff.go -------------------------------------------------------------------------------- /cli/pkg/flux/build/testdata/local-kustomization/different-name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/cli/pkg/flux/build/testdata/local-kustomization/different-name.yaml -------------------------------------------------------------------------------- /cli/pkg/flux/build/testdata/local-kustomization/invalid-resource.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: podinfo 5 | -------------------------------------------------------------------------------- /cli/pkg/flux/build/testdata/local-kustomization/multi-doc-reset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/cli/pkg/flux/build/testdata/local-kustomization/multi-doc-reset.yaml -------------------------------------------------------------------------------- /cli/pkg/flux/build/testdata/local-kustomization/multi-doc-valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/cli/pkg/flux/build/testdata/local-kustomization/multi-doc-valid.yaml -------------------------------------------------------------------------------- /cli/pkg/flux/build/testdata/local-kustomization/no-ns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/cli/pkg/flux/build/testdata/local-kustomization/no-ns.yaml -------------------------------------------------------------------------------- /cli/pkg/flux/build/testdata/local-kustomization/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/cli/pkg/flux/build/testdata/local-kustomization/valid.yaml -------------------------------------------------------------------------------- /cli/pkg/flux/utils/apply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/cli/pkg/flux/utils/apply.go -------------------------------------------------------------------------------- /cli/pkg/flux/utils/hex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/cli/pkg/flux/utils/hex.go -------------------------------------------------------------------------------- /cli/pkg/flux/utils/hex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/cli/pkg/flux/utils/hex_test.go -------------------------------------------------------------------------------- /cli/pkg/flux/utils/testdata/components-with-crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/cli/pkg/flux/utils/testdata/components-with-crds.yaml -------------------------------------------------------------------------------- /cli/pkg/flux/utils/testdata/components-without-crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/cli/pkg/flux/utils/testdata/components-without-crds.yaml -------------------------------------------------------------------------------- /cli/pkg/flux/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/cli/pkg/flux/utils/utils.go -------------------------------------------------------------------------------- /cli/pkg/flux/utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/cli/pkg/flux/utils/utils_test.go -------------------------------------------------------------------------------- /cli/pkg/helm/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/cli/pkg/helm/client.go -------------------------------------------------------------------------------- /cli/pkg/kubernetes/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/cli/pkg/kubernetes/client.go -------------------------------------------------------------------------------- /cli/pkg/kubernetes/watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/cli/pkg/kubernetes/watch.go -------------------------------------------------------------------------------- /cli/pkg/server/embedded.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/cli/pkg/server/embedded.go -------------------------------------------------------------------------------- /cli/pkg/server/flux_diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/cli/pkg/server/flux_diff.go -------------------------------------------------------------------------------- /cli/pkg/server/k8s_proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/cli/pkg/server/k8s_proxy.go -------------------------------------------------------------------------------- /cli/pkg/server/kluctl_results.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/cli/pkg/server/kluctl_results.go -------------------------------------------------------------------------------- /cli/pkg/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/cli/pkg/server/server.go -------------------------------------------------------------------------------- /cli/pkg/server/ws_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/cli/pkg/server/ws_handler.go -------------------------------------------------------------------------------- /cli/pkg/wsutil/wsutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/cli/pkg/wsutil/wsutil.go -------------------------------------------------------------------------------- /deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/deno.json -------------------------------------------------------------------------------- /deno.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/deno.lock -------------------------------------------------------------------------------- /dev_server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/dev_server.ts -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/changelog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/changelog/index.html -------------------------------------------------------------------------------- /docs/changelog/markdown/v2025-09.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/changelog/markdown/v2025-09.2.md -------------------------------------------------------------------------------- /docs/changelog/markdown/v2025-10.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/changelog/markdown/v2025-10.1.md -------------------------------------------------------------------------------- /docs/changelog/markdown/v2025-10.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/changelog/markdown/v2025-10.2.md -------------------------------------------------------------------------------- /docs/changelog/markdown/v2025-11.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/changelog/markdown/v2025-11.1.md -------------------------------------------------------------------------------- /docs/changelog/markdown/v2025-11.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/changelog/markdown/v2025-11.2.md -------------------------------------------------------------------------------- /docs/changelog/media/kluctl-deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/changelog/media/kluctl-deployment.png -------------------------------------------------------------------------------- /docs/changelog/media/kluctl-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/changelog/media/kluctl-details.png -------------------------------------------------------------------------------- /docs/changelog/media/kluctl-diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/changelog/media/kluctl-diff.png -------------------------------------------------------------------------------- /docs/changelog/media/kluctl-history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/changelog/media/kluctl-history.png -------------------------------------------------------------------------------- /docs/changelog/media/kluctl-kluctldeployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/changelog/media/kluctl-kluctldeployment.png -------------------------------------------------------------------------------- /docs/changelog/media/kluctl-resourcetypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/changelog/media/kluctl-resourcetypes.png -------------------------------------------------------------------------------- /docs/changelog/media/load.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/changelog/media/load.mp4 -------------------------------------------------------------------------------- /docs/changelog/media/resource-charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/changelog/media/resource-charts.png -------------------------------------------------------------------------------- /docs/changelog/media/resource-usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/changelog/media/resource-usage.png -------------------------------------------------------------------------------- /docs/changelog/media/split-panes.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/changelog/media/split-panes.mp4 -------------------------------------------------------------------------------- /docs/changelog/media/stalled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/changelog/media/stalled.png -------------------------------------------------------------------------------- /docs/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/docs/index.html -------------------------------------------------------------------------------- /docs/docs/markdown/filters-and-views.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/docs/markdown/filters-and-views.md -------------------------------------------------------------------------------- /docs/docs/markdown/fluxcd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/docs/markdown/fluxcd.md -------------------------------------------------------------------------------- /docs/docs/markdown/guide-aks-with-workload-identity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/docs/markdown/guide-aks-with-workload-identity.md -------------------------------------------------------------------------------- /docs/docs/markdown/guide-google-idp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/docs/markdown/guide-google-idp.md -------------------------------------------------------------------------------- /docs/docs/markdown/guide-k3d-oidc-capacitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/docs/markdown/guide-k3d-oidc-capacitor.md -------------------------------------------------------------------------------- /docs/docs/markdown/guide-noauth-with-k3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/docs/markdown/guide-noauth-with-k3d.md -------------------------------------------------------------------------------- /docs/docs/markdown/helm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/docs/markdown/helm.md -------------------------------------------------------------------------------- /docs/docs/markdown/keyboard-shortcuts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/docs/markdown/keyboard-shortcuts.md -------------------------------------------------------------------------------- /docs/docs/markdown/multi-cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/docs/markdown/multi-cluster.md -------------------------------------------------------------------------------- /docs/docs/markdown/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/docs/markdown/quickstart.md -------------------------------------------------------------------------------- /docs/docs/markdown/rbac-and-read-only-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/docs/markdown/rbac-and-read-only-mode.md -------------------------------------------------------------------------------- /docs/docs/markdown/secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/docs/markdown/secrets.md -------------------------------------------------------------------------------- /docs/docs/markdown/self-host-agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/docs/markdown/self-host-agents.md -------------------------------------------------------------------------------- /docs/docs/markdown/self-host-authn-authz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/docs/markdown/self-host-authn-authz.md -------------------------------------------------------------------------------- /docs/docs/markdown/self-host.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/docs/markdown/self-host.md -------------------------------------------------------------------------------- /docs/docs/media/filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/docs/media/filters.png -------------------------------------------------------------------------------- /docs/docs/media/flux-diffing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/docs/media/flux-diffing.png -------------------------------------------------------------------------------- /docs/docs/media/flux-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/docs/media/flux-tree.png -------------------------------------------------------------------------------- /docs/docs/media/flux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/docs/media/flux.png -------------------------------------------------------------------------------- /docs/docs/media/helm-diffing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/docs/media/helm-diffing.png -------------------------------------------------------------------------------- /docs/docs/media/helm-releases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/docs/media/helm-releases.png -------------------------------------------------------------------------------- /docs/docs/media/secrets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/docs/media/secrets.png -------------------------------------------------------------------------------- /docs/docs/media/shortcuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/docs/media/shortcuts.png -------------------------------------------------------------------------------- /docs/docs/media/views.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/docs/media/views.png -------------------------------------------------------------------------------- /docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/favicon.svg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/llms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/llms.txt -------------------------------------------------------------------------------- /docs/product.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/product.css -------------------------------------------------------------------------------- /docs/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/product.js -------------------------------------------------------------------------------- /docs/social.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/social.svg -------------------------------------------------------------------------------- /docs/synth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/synth.css -------------------------------------------------------------------------------- /docs/synth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/docs/synth.js -------------------------------------------------------------------------------- /embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/embed.ts -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/public/index.html -------------------------------------------------------------------------------- /public/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/public/styles/main.css -------------------------------------------------------------------------------- /scripts/add_apache_header.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/scripts/add_apache_header.sh -------------------------------------------------------------------------------- /scripts/install_capacitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/scripts/install_capacitor.sh -------------------------------------------------------------------------------- /self-host/agent/agent-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/agent/agent-deployment.yaml -------------------------------------------------------------------------------- /self-host/agent/agent-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/agent/agent-rbac.yaml -------------------------------------------------------------------------------- /self-host/charts/capacitor-next-agent/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/charts/capacitor-next-agent/.helmignore -------------------------------------------------------------------------------- /self-host/charts/capacitor-next-agent/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/charts/capacitor-next-agent/Chart.yaml -------------------------------------------------------------------------------- /self-host/charts/capacitor-next-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/charts/capacitor-next-agent/README.md -------------------------------------------------------------------------------- /self-host/charts/capacitor-next-agent/examples/values-production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/charts/capacitor-next-agent/examples/values-production.yaml -------------------------------------------------------------------------------- /self-host/charts/capacitor-next-agent/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/charts/capacitor-next-agent/templates/NOTES.txt -------------------------------------------------------------------------------- /self-host/charts/capacitor-next-agent/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/charts/capacitor-next-agent/templates/_helpers.tpl -------------------------------------------------------------------------------- /self-host/charts/capacitor-next-agent/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/charts/capacitor-next-agent/templates/deployment.yaml -------------------------------------------------------------------------------- /self-host/charts/capacitor-next-agent/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/charts/capacitor-next-agent/templates/rbac.yaml -------------------------------------------------------------------------------- /self-host/charts/capacitor-next-agent/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/charts/capacitor-next-agent/templates/secret.yaml -------------------------------------------------------------------------------- /self-host/charts/capacitor-next-agent/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/charts/capacitor-next-agent/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /self-host/charts/capacitor-next-agent/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/charts/capacitor-next-agent/values.yaml -------------------------------------------------------------------------------- /self-host/charts/capacitor-next/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/charts/capacitor-next/.helmignore -------------------------------------------------------------------------------- /self-host/charts/capacitor-next/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/charts/capacitor-next/Chart.yaml -------------------------------------------------------------------------------- /self-host/charts/capacitor-next/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/charts/capacitor-next/README.md -------------------------------------------------------------------------------- /self-host/charts/capacitor-next/examples/values-azure-workload-identity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/charts/capacitor-next/examples/values-azure-workload-identity.yaml -------------------------------------------------------------------------------- /self-host/charts/capacitor-next/examples/values-local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/charts/capacitor-next/examples/values-local.yaml -------------------------------------------------------------------------------- /self-host/charts/capacitor-next/examples/values-multi-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/charts/capacitor-next/examples/values-multi-cluster.yaml -------------------------------------------------------------------------------- /self-host/charts/capacitor-next/examples/values-oidc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/charts/capacitor-next/examples/values-oidc.yaml -------------------------------------------------------------------------------- /self-host/charts/capacitor-next/examples/values-static-auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/charts/capacitor-next/examples/values-static-auth.yaml -------------------------------------------------------------------------------- /self-host/charts/capacitor-next/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/charts/capacitor-next/templates/NOTES.txt -------------------------------------------------------------------------------- /self-host/charts/capacitor-next/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/charts/capacitor-next/templates/_helpers.tpl -------------------------------------------------------------------------------- /self-host/charts/capacitor-next/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/charts/capacitor-next/templates/deployment.yaml -------------------------------------------------------------------------------- /self-host/charts/capacitor-next/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/charts/capacitor-next/templates/ingress.yaml -------------------------------------------------------------------------------- /self-host/charts/capacitor-next/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/charts/capacitor-next/templates/rbac.yaml -------------------------------------------------------------------------------- /self-host/charts/capacitor-next/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/charts/capacitor-next/templates/secret.yaml -------------------------------------------------------------------------------- /self-host/charts/capacitor-next/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/charts/capacitor-next/templates/service.yaml -------------------------------------------------------------------------------- /self-host/charts/capacitor-next/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/charts/capacitor-next/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /self-host/charts/capacitor-next/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/charts/capacitor-next/values.yaml -------------------------------------------------------------------------------- /self-host/yaml/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/yaml/deployment.yaml -------------------------------------------------------------------------------- /self-host/yaml/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/yaml/rbac.yaml -------------------------------------------------------------------------------- /self-host/yaml/role-builtin-editor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/yaml/role-builtin-editor.yaml -------------------------------------------------------------------------------- /self-host/yaml/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/self-host/yaml/service.yaml -------------------------------------------------------------------------------- /src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/app.tsx -------------------------------------------------------------------------------- /src/components/DashboardPane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/DashboardPane.tsx -------------------------------------------------------------------------------- /src/components/ErrorDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/ErrorDisplay.tsx -------------------------------------------------------------------------------- /src/components/LoadingSpinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/LoadingSpinner.tsx -------------------------------------------------------------------------------- /src/components/ResourceTree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/ResourceTree.tsx -------------------------------------------------------------------------------- /src/components/ResourceTypeVisibilityDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/ResourceTypeVisibilityDropdown.tsx -------------------------------------------------------------------------------- /src/components/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/Tabs.tsx -------------------------------------------------------------------------------- /src/components/UpdateNotice.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/UpdateNotice.test.ts -------------------------------------------------------------------------------- /src/components/UpdateNotice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/UpdateNotice.tsx -------------------------------------------------------------------------------- /src/components/filterBar/FilterBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/filterBar/FilterBar.tsx -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/components/keyboardShortcuts/KeyboardShortcuts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/keyboardShortcuts/KeyboardShortcuts.tsx -------------------------------------------------------------------------------- /src/components/paneManager/PaneManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/paneManager/PaneManager.tsx -------------------------------------------------------------------------------- /src/components/paneManager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/paneManager/index.ts -------------------------------------------------------------------------------- /src/components/resourceDetail/DiffDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceDetail/DiffDrawer.tsx -------------------------------------------------------------------------------- /src/components/resourceDetail/HelmHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceDetail/HelmHistory.tsx -------------------------------------------------------------------------------- /src/components/resourceDetail/HelmManifest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceDetail/HelmManifest.tsx -------------------------------------------------------------------------------- /src/components/resourceDetail/HelmManifestDiff.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceDetail/HelmManifestDiff.tsx -------------------------------------------------------------------------------- /src/components/resourceDetail/HelmValues.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceDetail/HelmValues.tsx -------------------------------------------------------------------------------- /src/components/resourceDetail/LogsViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceDetail/LogsViewer.tsx -------------------------------------------------------------------------------- /src/components/resourceDetail/MetricsViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceDetail/MetricsViewer.tsx -------------------------------------------------------------------------------- /src/components/resourceDetail/ResourceDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceDetail/ResourceDrawer.tsx -------------------------------------------------------------------------------- /src/components/resourceDetail/Sparkline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceDetail/Sparkline.tsx -------------------------------------------------------------------------------- /src/components/resourceDetail/TerminalViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceDetail/TerminalViewer.tsx -------------------------------------------------------------------------------- /src/components/resourceDetail/TimeSeriesChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceDetail/TimeSeriesChart.tsx -------------------------------------------------------------------------------- /src/components/resourceDetail/ValuesFromViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceDetail/ValuesFromViewer.tsx -------------------------------------------------------------------------------- /src/components/resourceList/ApplicationList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/ApplicationList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/BucketList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/BucketList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/ConfigMapList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/ConfigMapList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/CronJobList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/CronJobList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/DaemonSetList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/DaemonSetList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/DeploymentList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/DeploymentList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/DetailRowCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/DetailRowCard.tsx -------------------------------------------------------------------------------- /src/components/resourceList/EventList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/EventList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/GitRepositoryList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/GitRepositoryList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/HelmChartList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/HelmChartList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/HelmReleaseFluxList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/HelmReleaseFluxList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/HelmReleaseList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/HelmReleaseList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/HelmRepositoryList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/HelmRepositoryList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/HorizontalPodAutoscalerList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/HorizontalPodAutoscalerList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/IngressList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/IngressList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/JobList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/JobList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/KluctlDeploymentList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/KluctlDeploymentList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/KluctlDeploymentResultsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/KluctlDeploymentResultsList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/KustomizationList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/KustomizationList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/NamespaceList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/NamespaceList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/NetworkPolicyList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/NetworkPolicyList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/NodeList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/NodeList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/OCIRepositoryList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/OCIRepositoryList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/PersistentVolumeClaimList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/PersistentVolumeClaimList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/PersistentVolumeList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/PersistentVolumeList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/PodDisruptionBudgetList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/PodDisruptionBudgetList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/PodList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/PodList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/PodMetricsCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/PodMetricsCell.tsx -------------------------------------------------------------------------------- /src/components/resourceList/ResourceList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/ResourceList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/RoleBindingList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/RoleBindingList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/RoleList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/RoleList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/ScaledJobList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/ScaledJobList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/SecretList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/SecretList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/ServiceAccountList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/ServiceAccountList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/ServiceList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/ServiceList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/TerraformList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/TerraformList.tsx -------------------------------------------------------------------------------- /src/components/resourceList/timeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/resourceList/timeUtils.ts -------------------------------------------------------------------------------- /src/components/settings/SettingsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/settings/SettingsModal.tsx -------------------------------------------------------------------------------- /src/components/viewBar/ViewBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/components/viewBar/ViewBar.tsx -------------------------------------------------------------------------------- /src/k8sWebSocketClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/k8sWebSocketClient.ts -------------------------------------------------------------------------------- /src/resourceTypeConfigs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/resourceTypeConfigs.tsx -------------------------------------------------------------------------------- /src/store/apiResourceStore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/store/apiResourceStore.tsx -------------------------------------------------------------------------------- /src/store/appConfigStore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/store/appConfigStore.tsx -------------------------------------------------------------------------------- /src/store/dashboardState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/store/dashboardState.tsx -------------------------------------------------------------------------------- /src/store/errorStore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/store/errorStore.tsx -------------------------------------------------------------------------------- /src/store/filterStore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/store/filterStore.tsx -------------------------------------------------------------------------------- /src/store/paneFilterStore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/store/paneFilterStore.tsx -------------------------------------------------------------------------------- /src/types/k8s.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/types/k8s.ts -------------------------------------------------------------------------------- /src/utils/conditions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/utils/conditions.ts -------------------------------------------------------------------------------- /src/utils/diffUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/utils/diffUtils.ts -------------------------------------------------------------------------------- /src/utils/fluxFilters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/utils/fluxFilters.tsx -------------------------------------------------------------------------------- /src/utils/fluxUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/utils/fluxUtils.tsx -------------------------------------------------------------------------------- /src/utils/glob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/utils/glob.ts -------------------------------------------------------------------------------- /src/utils/k8s.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/utils/k8s.ts -------------------------------------------------------------------------------- /src/utils/keyboardManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/utils/keyboardManager.ts -------------------------------------------------------------------------------- /src/utils/metricsUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/utils/metricsUtils.ts -------------------------------------------------------------------------------- /src/utils/permissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/utils/permissions.ts -------------------------------------------------------------------------------- /src/utils/shortcuts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/utils/shortcuts.ts -------------------------------------------------------------------------------- /src/utils/sortUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/utils/sortUtils.ts -------------------------------------------------------------------------------- /src/utils/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/utils/theme.ts -------------------------------------------------------------------------------- /src/utils/version.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/utils/version.test.ts -------------------------------------------------------------------------------- /src/utils/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/utils/version.ts -------------------------------------------------------------------------------- /src/views/KluctlDeploymentDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/views/KluctlDeploymentDetails.tsx -------------------------------------------------------------------------------- /src/views/TerraformDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/views/TerraformDetails.tsx -------------------------------------------------------------------------------- /src/views/applicationDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/views/applicationDetails.tsx -------------------------------------------------------------------------------- /src/views/configMapDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/views/configMapDetails.tsx -------------------------------------------------------------------------------- /src/views/dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/views/dashboard.tsx -------------------------------------------------------------------------------- /src/views/helmClassicReleaseDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/views/helmClassicReleaseDetails.tsx -------------------------------------------------------------------------------- /src/views/helmReleaseDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/views/helmReleaseDetails.tsx -------------------------------------------------------------------------------- /src/views/kustomizationDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/views/kustomizationDetails.tsx -------------------------------------------------------------------------------- /src/views/secretDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/views/secretDetails.tsx -------------------------------------------------------------------------------- /src/watches.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/src/watches.tsx -------------------------------------------------------------------------------- /test_glob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimlet-io/capacitor/HEAD/test_glob.ts --------------------------------------------------------------------------------