├── .buildkite ├── check-image-names.sh ├── ci-checkov.sh ├── cleanup-disks.sh ├── hooks │ └── pre-command ├── install-yj.sh ├── integration-restricted-test.sh ├── integration-test.sh ├── pipeline.yaml ├── prettier-check.sh ├── rbac.jq ├── shfmt.sh ├── verify-label.sh ├── verify-overlays.sh ├── verify-rbac-labels.sh ├── verify-release │ ├── go.mod │ ├── go.sum │ ├── verify-release.go │ └── verify-release.sh └── verify-yaml.sh ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ └── stop--do-not-file-issues-here.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── automerge.yml │ ├── backport.yml │ ├── dispatch-update.yml.bk │ ├── pr-auditor.yml │ ├── scip.yml │ └── update-tags.yml ├── .gitignore ├── .nvmrc ├── .tool-versions ├── .vscode ├── extensions.json ├── settings.json └── tags ├── LICENSE ├── README.dev.md ├── README.md ├── base ├── blobstore │ ├── blobstore.Deployment.yaml │ ├── blobstore.PersistentVolumeClaim.yaml │ └── blobstore.Service.yaml ├── cadvisor │ ├── README.md │ ├── cadvisor.DaemonSet.yaml │ └── cadvisor.ServiceAccount.yaml ├── codeinsights-db │ ├── codeinsights-db.ConfigMap.yaml │ ├── codeinsights-db.Deployment.yaml │ ├── codeinsights-db.PersistentVolumeClaim.yaml │ └── codeinsights-db.Service.yaml ├── codeintel-db │ ├── codeintel-db.ConfigMap.yaml │ ├── codeintel-db.Deployment.yaml │ ├── codeintel-db.PersistentVolumeClaim.yaml │ └── codeintel-db.Service.yaml ├── frontend │ ├── sourcegraph-frontend-internal.Service.yaml │ ├── sourcegraph-frontend.Deployment.yaml │ ├── sourcegraph-frontend.Ingress.yaml │ ├── sourcegraph-frontend.Role.yaml │ ├── sourcegraph-frontend.RoleBinding.yaml │ ├── sourcegraph-frontend.Service.yaml │ └── sourcegraph-frontend.ServiceAccount.yaml ├── gitserver │ ├── gitserver.Service.yaml │ └── gitserver.StatefulSet.yaml ├── grafana │ ├── README.md │ ├── grafana.ConfigMap.yaml │ ├── grafana.Service.yaml │ ├── grafana.ServiceAccount.yaml │ └── grafana.StatefulSet.yaml ├── indexed-search │ ├── indexed-search.IndexerService.yaml │ ├── indexed-search.Service.yaml │ └── indexed-search.StatefulSet.yaml ├── node-exporter │ ├── node-exporter.DaemonSet.yaml │ └── node-exporter.Service.yaml ├── otel-collector │ ├── otel-agent.ConfigMap.yaml │ ├── otel-agent.DaemonSet.yaml │ ├── otel-collector.ConfigMap.yaml │ ├── otel-collector.Deployment.yaml │ └── otel-collector.Service.yaml ├── pgsql │ ├── pgsql.ConfigMap.yaml │ ├── pgsql.Deployment.yaml │ ├── pgsql.PersistentVolumeClaim.yaml │ └── pgsql.Service.yaml ├── precise-code-intel │ ├── worker.Deployment.yaml │ └── worker.Service.yaml ├── prometheus │ ├── README.md │ ├── prometheus.ClusterRole.yaml │ ├── prometheus.ClusterRoleBinding.yaml │ ├── prometheus.ConfigMap.yaml │ ├── prometheus.Deployment.yaml │ ├── prometheus.PersistentVolumeClaim.yaml │ ├── prometheus.Service.yaml │ └── prometheus.ServiceAccount.yaml ├── redis │ ├── redis-cache.Deployment.yaml │ ├── redis-cache.PersistentVolumeClaim.yaml │ ├── redis-cache.Service.yaml │ ├── redis-store.Deployment.yaml │ ├── redis-store.PersistentVolumeClaim.yaml │ └── redis-store.Service.yaml ├── searcher │ ├── searcher.Deployment.yaml │ └── searcher.Service.yaml ├── syntect-server │ ├── syntect-server.Deployment.yaml │ └── syntect-server.Service.yaml └── worker │ ├── worker-executors.Service.yaml │ ├── worker.Deployment.yaml │ └── worker.Service.yaml ├── configure ├── embeddings │ ├── embeddings.ConfigMap.yaml │ ├── embeddings.Deployment.yaml │ └── embeddings.Service.yaml ├── executors │ ├── README.md │ ├── dind │ │ ├── docker-daemon.ConfigMap.yaml │ │ ├── executor.Deployment.yaml │ │ └── executor.Service.yaml │ ├── k8s │ │ ├── executor.ConfigMap.yaml │ │ ├── executor.Deployment.yaml │ │ ├── executor.PersistentVolumeClaim.yaml │ │ ├── executor.Service.yaml │ │ └── rbac │ │ │ ├── executor.Role.yaml │ │ │ ├── executor.RoleBinding.yaml │ │ │ └── executor.ServiceAccount.yaml │ └── private-docker-registry │ │ ├── private-docker-registry.Deployment.yaml │ │ ├── private-docker-registry.PersistentVolumeClaim.yaml │ │ └── private-docker-registry.Service.yaml ├── ingress-nginx │ ├── README.md │ ├── cloud-generic.yaml │ ├── install.sh │ └── mandatory.yaml ├── jaeger │ └── README.md ├── migrator │ └── migrator.Job.yaml └── ssd │ ├── README.md │ ├── pod-tmp-gc.ClusterRole.yaml │ ├── pod-tmp-gc.ClusterRoleBinding.yaml │ ├── pod-tmp-gc.DaemonSet.yaml │ └── pod-tmp-gc.ServiceAccount.yaml ├── create-new-cluster.sh ├── docs ├── configure.md ├── install.md ├── k8s.azure.md ├── k8s.eks.md ├── k8s.md ├── migrate.md ├── scale.md ├── troubleshoot.md └── update.md ├── go.mod ├── go.sum ├── kubectl-apply-all.sh ├── overlay-generate-cluster.sh ├── overlays ├── README.md ├── bases │ ├── deployments │ │ └── kustomization.yaml │ ├── pvcs │ │ └── kustomization.yaml │ └── rbac-roles │ │ └── kustomization.yaml ├── envoy │ ├── README.md │ ├── gitserver.EnvoyFilter.yaml │ └── kustomization.yaml ├── jaeger │ ├── README.md │ ├── grafana.ConfigMap.yaml │ ├── jaeger-collector.Service.yaml │ ├── jaeger-query.Service.yaml │ ├── jaeger.Deployment.yaml │ ├── kustomization.yaml │ └── otel-collector.Deployment.yaml ├── low-resource │ ├── LimitRange.yaml │ ├── README.md │ ├── cadvisor │ │ ├── delete-Daemonset.yaml │ │ └── delete-ServiceAccount.yaml │ ├── delete-resources-2.yaml │ ├── delete-resources-3.yaml │ ├── delete-resources-4.yaml │ ├── delete-resources.yaml │ ├── gitserver-patch.yaml │ ├── grafana-patch.yaml │ ├── indexed-search-patch.yaml │ ├── kustomization.yaml │ ├── node-exporter │ │ ├── delete-Daemonset.yaml │ │ └── delete-Service.yaml │ └── otel-agent-patch.yaml ├── migrate-to-nonprivileged │ ├── README.md │ ├── blobstore │ │ └── blobstore.Deployment.yaml │ ├── gitserver │ │ └── gitserver.StatefulSet.yaml │ ├── grafana │ │ └── grafana.StatefulSet.yaml │ ├── indexed-search │ │ └── indexed-search.StatefulSet.yaml │ ├── kustomization.yaml │ ├── prometheus │ │ └── prometheus.Deployment.yaml │ ├── redis │ │ ├── redis-cache.Deployment.yaml │ │ └── redis-store.Deployment.yaml │ └── searcher │ │ └── searcher.Deployment.yaml ├── minikube │ ├── README.md │ ├── delete-resources-2.yaml │ ├── delete-resources.yaml │ ├── gitserver-patch.yaml │ ├── grafana-patch.yaml │ ├── indexed-search-patch.yaml │ ├── kustomization.yaml │ └── prometheus │ │ └── prometheus.ClusterRoleBinding.yaml ├── namespaced │ ├── README.md │ ├── kustomization.yaml │ └── prometheus │ │ ├── prometheus.ClusterRoleBinding.yaml │ │ └── prometheus.ConfigMap.yaml ├── non-privileged-create-cluster │ ├── README.md │ ├── blobstore │ │ └── blobstore.Deployment.yaml │ ├── codeinsights-db │ │ └── codeinsights-db.Deployment.yaml │ ├── codeintel-db │ │ └── codeintel-db.Deployment.yaml │ ├── gitserver │ │ └── gitserver.StatefulSet.yaml │ ├── grafana │ │ └── grafana.StatefulSet.yaml │ ├── indexed-search │ │ └── indexed-search.StatefulSet.yaml │ ├── kustomization.yaml │ ├── pgsql │ │ └── pgsql.Deployment.yaml │ ├── prometheus │ │ └── prometheus.Deployment.yaml │ └── redis │ │ ├── redis-cache.Deployment.yaml │ │ └── redis-store.Deployment.yaml ├── non-privileged │ ├── README.md │ ├── blobstore │ │ └── blobstore.Deployment.yaml │ ├── codeinsights-db │ │ └── codeinsights-db.Deployment.yaml │ ├── codeintel-db │ │ └── codeintel-db.Deployment.yaml │ ├── frontend │ │ ├── sourcegraph-frontend.Deployment.yaml │ │ └── sourcegraph-frontend.RoleBinding.yaml │ ├── gitserver │ │ └── gitserver.StatefulSet.yaml │ ├── grafana │ │ └── grafana.StatefulSet.yaml │ ├── indexed-search │ │ └── indexed-search.StatefulSet.yaml │ ├── kustomization.yaml │ ├── otel-collector │ │ ├── otel-agent.DaemonSet.yaml │ │ └── otel-collector.Deployment.yaml │ ├── pgsql │ │ └── pgsql.Deployment.yaml │ ├── precise-code-intel │ │ └── worker.Deployment.yaml │ ├── prometheus │ │ ├── prometheus.ConfigMap.yaml │ │ ├── prometheus.Deployment.yaml │ │ └── prometheus.RoleBinding.yaml │ ├── redis │ │ ├── redis-cache.Deployment.yaml │ │ └── redis-store.Deployment.yaml │ ├── searcher │ │ └── searcher.Deployment.yaml │ ├── syntect-server │ │ └── syntect-server.Deployment.yaml │ └── worker │ │ └── worker.Deployment.yaml ├── resources-update │ ├── README.md │ ├── kustomization.yaml │ └── resources.yaml └── storageclass │ ├── README.md │ ├── kustomization.yaml │ ├── replace-storageclass-name-pvc.yaml │ └── replace-storageclass-name-sts.yaml ├── package.json ├── pnpm-lock.yaml ├── prettier.config.js ├── release.yaml ├── renovate.json ├── tests └── integration │ ├── fresh │ ├── fresh_test.go │ ├── step1 │ │ ├── .tool-versions │ │ ├── Pulumi.yaml │ │ ├── cluster.ts │ │ ├── config.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ └── prettier.config.js │ └── yarn.lock │ └── restricted │ ├── install-src.sh │ ├── nonroot-policy.yaml │ ├── sourcegraph.StorageClass.yaml │ ├── test.sh │ └── validate.json ├── tools ├── check-image-names │ ├── check-image-names.go │ ├── check-image-names_test.go │ └── tests ├── enforce-tags │ └── main.go ├── tools.go └── update-docker-tags.sh └── yarn.lock /.buildkite/check-image-names.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.buildkite/check-image-names.sh -------------------------------------------------------------------------------- /.buildkite/ci-checkov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.buildkite/ci-checkov.sh -------------------------------------------------------------------------------- /.buildkite/cleanup-disks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.buildkite/cleanup-disks.sh -------------------------------------------------------------------------------- /.buildkite/hooks/pre-command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.buildkite/hooks/pre-command -------------------------------------------------------------------------------- /.buildkite/install-yj.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.buildkite/install-yj.sh -------------------------------------------------------------------------------- /.buildkite/integration-restricted-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.buildkite/integration-restricted-test.sh -------------------------------------------------------------------------------- /.buildkite/integration-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.buildkite/integration-test.sh -------------------------------------------------------------------------------- /.buildkite/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.buildkite/pipeline.yaml -------------------------------------------------------------------------------- /.buildkite/prettier-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.buildkite/prettier-check.sh -------------------------------------------------------------------------------- /.buildkite/rbac.jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.buildkite/rbac.jq -------------------------------------------------------------------------------- /.buildkite/shfmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.buildkite/shfmt.sh -------------------------------------------------------------------------------- /.buildkite/verify-label.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.buildkite/verify-label.sh -------------------------------------------------------------------------------- /.buildkite/verify-overlays.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.buildkite/verify-overlays.sh -------------------------------------------------------------------------------- /.buildkite/verify-rbac-labels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.buildkite/verify-rbac-labels.sh -------------------------------------------------------------------------------- /.buildkite/verify-release/go.mod: -------------------------------------------------------------------------------- 1 | module verify-release 2 | 3 | go 1.16 4 | 5 | require golang.org/x/mod v0.4.2 6 | -------------------------------------------------------------------------------- /.buildkite/verify-release/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.buildkite/verify-release/go.sum -------------------------------------------------------------------------------- /.buildkite/verify-release/verify-release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.buildkite/verify-release/verify-release.go -------------------------------------------------------------------------------- /.buildkite/verify-release/verify-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.buildkite/verify-release/verify-release.sh -------------------------------------------------------------------------------- /.buildkite/verify-yaml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.buildkite/verify-yaml.sh -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/stop--do-not-file-issues-here.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.github/ISSUE_TEMPLATE/stop--do-not-file-issues-here.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.github/workflows/automerge.yml -------------------------------------------------------------------------------- /.github/workflows/backport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.github/workflows/backport.yml -------------------------------------------------------------------------------- /.github/workflows/dispatch-update.yml.bk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.github/workflows/dispatch-update.yml.bk -------------------------------------------------------------------------------- /.github/workflows/pr-auditor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.github/workflows/pr-auditor.yml -------------------------------------------------------------------------------- /.github/workflows/scip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.github/workflows/scip.yml -------------------------------------------------------------------------------- /.github/workflows/update-tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.github/workflows/update-tags.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 12.16.1 -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.tool-versions -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/.vscode/tags -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/LICENSE -------------------------------------------------------------------------------- /README.dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/README.dev.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/README.md -------------------------------------------------------------------------------- /base/blobstore/blobstore.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/blobstore/blobstore.Deployment.yaml -------------------------------------------------------------------------------- /base/blobstore/blobstore.PersistentVolumeClaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/blobstore/blobstore.PersistentVolumeClaim.yaml -------------------------------------------------------------------------------- /base/blobstore/blobstore.Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/blobstore/blobstore.Service.yaml -------------------------------------------------------------------------------- /base/cadvisor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/cadvisor/README.md -------------------------------------------------------------------------------- /base/cadvisor/cadvisor.DaemonSet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/cadvisor/cadvisor.DaemonSet.yaml -------------------------------------------------------------------------------- /base/cadvisor/cadvisor.ServiceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/cadvisor/cadvisor.ServiceAccount.yaml -------------------------------------------------------------------------------- /base/codeinsights-db/codeinsights-db.ConfigMap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/codeinsights-db/codeinsights-db.ConfigMap.yaml -------------------------------------------------------------------------------- /base/codeinsights-db/codeinsights-db.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/codeinsights-db/codeinsights-db.Deployment.yaml -------------------------------------------------------------------------------- /base/codeinsights-db/codeinsights-db.PersistentVolumeClaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/codeinsights-db/codeinsights-db.PersistentVolumeClaim.yaml -------------------------------------------------------------------------------- /base/codeinsights-db/codeinsights-db.Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/codeinsights-db/codeinsights-db.Service.yaml -------------------------------------------------------------------------------- /base/codeintel-db/codeintel-db.ConfigMap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/codeintel-db/codeintel-db.ConfigMap.yaml -------------------------------------------------------------------------------- /base/codeintel-db/codeintel-db.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/codeintel-db/codeintel-db.Deployment.yaml -------------------------------------------------------------------------------- /base/codeintel-db/codeintel-db.PersistentVolumeClaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/codeintel-db/codeintel-db.PersistentVolumeClaim.yaml -------------------------------------------------------------------------------- /base/codeintel-db/codeintel-db.Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/codeintel-db/codeintel-db.Service.yaml -------------------------------------------------------------------------------- /base/frontend/sourcegraph-frontend-internal.Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/frontend/sourcegraph-frontend-internal.Service.yaml -------------------------------------------------------------------------------- /base/frontend/sourcegraph-frontend.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/frontend/sourcegraph-frontend.Deployment.yaml -------------------------------------------------------------------------------- /base/frontend/sourcegraph-frontend.Ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/frontend/sourcegraph-frontend.Ingress.yaml -------------------------------------------------------------------------------- /base/frontend/sourcegraph-frontend.Role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/frontend/sourcegraph-frontend.Role.yaml -------------------------------------------------------------------------------- /base/frontend/sourcegraph-frontend.RoleBinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/frontend/sourcegraph-frontend.RoleBinding.yaml -------------------------------------------------------------------------------- /base/frontend/sourcegraph-frontend.Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/frontend/sourcegraph-frontend.Service.yaml -------------------------------------------------------------------------------- /base/frontend/sourcegraph-frontend.ServiceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/frontend/sourcegraph-frontend.ServiceAccount.yaml -------------------------------------------------------------------------------- /base/gitserver/gitserver.Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/gitserver/gitserver.Service.yaml -------------------------------------------------------------------------------- /base/gitserver/gitserver.StatefulSet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/gitserver/gitserver.StatefulSet.yaml -------------------------------------------------------------------------------- /base/grafana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/grafana/README.md -------------------------------------------------------------------------------- /base/grafana/grafana.ConfigMap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/grafana/grafana.ConfigMap.yaml -------------------------------------------------------------------------------- /base/grafana/grafana.Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/grafana/grafana.Service.yaml -------------------------------------------------------------------------------- /base/grafana/grafana.ServiceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/grafana/grafana.ServiceAccount.yaml -------------------------------------------------------------------------------- /base/grafana/grafana.StatefulSet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/grafana/grafana.StatefulSet.yaml -------------------------------------------------------------------------------- /base/indexed-search/indexed-search.IndexerService.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/indexed-search/indexed-search.IndexerService.yaml -------------------------------------------------------------------------------- /base/indexed-search/indexed-search.Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/indexed-search/indexed-search.Service.yaml -------------------------------------------------------------------------------- /base/indexed-search/indexed-search.StatefulSet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/indexed-search/indexed-search.StatefulSet.yaml -------------------------------------------------------------------------------- /base/node-exporter/node-exporter.DaemonSet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/node-exporter/node-exporter.DaemonSet.yaml -------------------------------------------------------------------------------- /base/node-exporter/node-exporter.Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/node-exporter/node-exporter.Service.yaml -------------------------------------------------------------------------------- /base/otel-collector/otel-agent.ConfigMap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/otel-collector/otel-agent.ConfigMap.yaml -------------------------------------------------------------------------------- /base/otel-collector/otel-agent.DaemonSet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/otel-collector/otel-agent.DaemonSet.yaml -------------------------------------------------------------------------------- /base/otel-collector/otel-collector.ConfigMap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/otel-collector/otel-collector.ConfigMap.yaml -------------------------------------------------------------------------------- /base/otel-collector/otel-collector.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/otel-collector/otel-collector.Deployment.yaml -------------------------------------------------------------------------------- /base/otel-collector/otel-collector.Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/otel-collector/otel-collector.Service.yaml -------------------------------------------------------------------------------- /base/pgsql/pgsql.ConfigMap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/pgsql/pgsql.ConfigMap.yaml -------------------------------------------------------------------------------- /base/pgsql/pgsql.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/pgsql/pgsql.Deployment.yaml -------------------------------------------------------------------------------- /base/pgsql/pgsql.PersistentVolumeClaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/pgsql/pgsql.PersistentVolumeClaim.yaml -------------------------------------------------------------------------------- /base/pgsql/pgsql.Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/pgsql/pgsql.Service.yaml -------------------------------------------------------------------------------- /base/precise-code-intel/worker.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/precise-code-intel/worker.Deployment.yaml -------------------------------------------------------------------------------- /base/precise-code-intel/worker.Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/precise-code-intel/worker.Service.yaml -------------------------------------------------------------------------------- /base/prometheus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/prometheus/README.md -------------------------------------------------------------------------------- /base/prometheus/prometheus.ClusterRole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/prometheus/prometheus.ClusterRole.yaml -------------------------------------------------------------------------------- /base/prometheus/prometheus.ClusterRoleBinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/prometheus/prometheus.ClusterRoleBinding.yaml -------------------------------------------------------------------------------- /base/prometheus/prometheus.ConfigMap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/prometheus/prometheus.ConfigMap.yaml -------------------------------------------------------------------------------- /base/prometheus/prometheus.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/prometheus/prometheus.Deployment.yaml -------------------------------------------------------------------------------- /base/prometheus/prometheus.PersistentVolumeClaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/prometheus/prometheus.PersistentVolumeClaim.yaml -------------------------------------------------------------------------------- /base/prometheus/prometheus.Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/prometheus/prometheus.Service.yaml -------------------------------------------------------------------------------- /base/prometheus/prometheus.ServiceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/prometheus/prometheus.ServiceAccount.yaml -------------------------------------------------------------------------------- /base/redis/redis-cache.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/redis/redis-cache.Deployment.yaml -------------------------------------------------------------------------------- /base/redis/redis-cache.PersistentVolumeClaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/redis/redis-cache.PersistentVolumeClaim.yaml -------------------------------------------------------------------------------- /base/redis/redis-cache.Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/redis/redis-cache.Service.yaml -------------------------------------------------------------------------------- /base/redis/redis-store.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/redis/redis-store.Deployment.yaml -------------------------------------------------------------------------------- /base/redis/redis-store.PersistentVolumeClaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/redis/redis-store.PersistentVolumeClaim.yaml -------------------------------------------------------------------------------- /base/redis/redis-store.Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/redis/redis-store.Service.yaml -------------------------------------------------------------------------------- /base/searcher/searcher.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/searcher/searcher.Deployment.yaml -------------------------------------------------------------------------------- /base/searcher/searcher.Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/searcher/searcher.Service.yaml -------------------------------------------------------------------------------- /base/syntect-server/syntect-server.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/syntect-server/syntect-server.Deployment.yaml -------------------------------------------------------------------------------- /base/syntect-server/syntect-server.Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/syntect-server/syntect-server.Service.yaml -------------------------------------------------------------------------------- /base/worker/worker-executors.Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/worker/worker-executors.Service.yaml -------------------------------------------------------------------------------- /base/worker/worker.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/worker/worker.Deployment.yaml -------------------------------------------------------------------------------- /base/worker/worker.Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/base/worker/worker.Service.yaml -------------------------------------------------------------------------------- /configure/embeddings/embeddings.ConfigMap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/configure/embeddings/embeddings.ConfigMap.yaml -------------------------------------------------------------------------------- /configure/embeddings/embeddings.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/configure/embeddings/embeddings.Deployment.yaml -------------------------------------------------------------------------------- /configure/embeddings/embeddings.Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/configure/embeddings/embeddings.Service.yaml -------------------------------------------------------------------------------- /configure/executors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/configure/executors/README.md -------------------------------------------------------------------------------- /configure/executors/dind/docker-daemon.ConfigMap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/configure/executors/dind/docker-daemon.ConfigMap.yaml -------------------------------------------------------------------------------- /configure/executors/dind/executor.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/configure/executors/dind/executor.Deployment.yaml -------------------------------------------------------------------------------- /configure/executors/dind/executor.Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/configure/executors/dind/executor.Service.yaml -------------------------------------------------------------------------------- /configure/executors/k8s/executor.ConfigMap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/configure/executors/k8s/executor.ConfigMap.yaml -------------------------------------------------------------------------------- /configure/executors/k8s/executor.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/configure/executors/k8s/executor.Deployment.yaml -------------------------------------------------------------------------------- /configure/executors/k8s/executor.PersistentVolumeClaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/configure/executors/k8s/executor.PersistentVolumeClaim.yaml -------------------------------------------------------------------------------- /configure/executors/k8s/executor.Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/configure/executors/k8s/executor.Service.yaml -------------------------------------------------------------------------------- /configure/executors/k8s/rbac/executor.Role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/configure/executors/k8s/rbac/executor.Role.yaml -------------------------------------------------------------------------------- /configure/executors/k8s/rbac/executor.RoleBinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/configure/executors/k8s/rbac/executor.RoleBinding.yaml -------------------------------------------------------------------------------- /configure/executors/k8s/rbac/executor.ServiceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/configure/executors/k8s/rbac/executor.ServiceAccount.yaml -------------------------------------------------------------------------------- /configure/executors/private-docker-registry/private-docker-registry.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/configure/executors/private-docker-registry/private-docker-registry.Deployment.yaml -------------------------------------------------------------------------------- /configure/executors/private-docker-registry/private-docker-registry.PersistentVolumeClaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/configure/executors/private-docker-registry/private-docker-registry.PersistentVolumeClaim.yaml -------------------------------------------------------------------------------- /configure/executors/private-docker-registry/private-docker-registry.Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/configure/executors/private-docker-registry/private-docker-registry.Service.yaml -------------------------------------------------------------------------------- /configure/ingress-nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/configure/ingress-nginx/README.md -------------------------------------------------------------------------------- /configure/ingress-nginx/cloud-generic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/configure/ingress-nginx/cloud-generic.yaml -------------------------------------------------------------------------------- /configure/ingress-nginx/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/configure/ingress-nginx/install.sh -------------------------------------------------------------------------------- /configure/ingress-nginx/mandatory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/configure/ingress-nginx/mandatory.yaml -------------------------------------------------------------------------------- /configure/jaeger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/configure/jaeger/README.md -------------------------------------------------------------------------------- /configure/migrator/migrator.Job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/configure/migrator/migrator.Job.yaml -------------------------------------------------------------------------------- /configure/ssd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/configure/ssd/README.md -------------------------------------------------------------------------------- /configure/ssd/pod-tmp-gc.ClusterRole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/configure/ssd/pod-tmp-gc.ClusterRole.yaml -------------------------------------------------------------------------------- /configure/ssd/pod-tmp-gc.ClusterRoleBinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/configure/ssd/pod-tmp-gc.ClusterRoleBinding.yaml -------------------------------------------------------------------------------- /configure/ssd/pod-tmp-gc.DaemonSet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/configure/ssd/pod-tmp-gc.DaemonSet.yaml -------------------------------------------------------------------------------- /configure/ssd/pod-tmp-gc.ServiceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/configure/ssd/pod-tmp-gc.ServiceAccount.yaml -------------------------------------------------------------------------------- /create-new-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/create-new-cluster.sh -------------------------------------------------------------------------------- /docs/configure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/docs/configure.md -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- 1 | Moved to https://docs.sourcegraph.com/admin/install/kubernetes 2 | -------------------------------------------------------------------------------- /docs/k8s.azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/docs/k8s.azure.md -------------------------------------------------------------------------------- /docs/k8s.eks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/docs/k8s.eks.md -------------------------------------------------------------------------------- /docs/k8s.md: -------------------------------------------------------------------------------- 1 | Moved to https://docs.sourcegraph.com/admin/install/kubernetes 2 | -------------------------------------------------------------------------------- /docs/migrate.md: -------------------------------------------------------------------------------- 1 | Moved to https://docs.sourcegraph.com/admin/updates/kubernetes 2 | -------------------------------------------------------------------------------- /docs/scale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/docs/scale.md -------------------------------------------------------------------------------- /docs/troubleshoot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/docs/troubleshoot.md -------------------------------------------------------------------------------- /docs/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/docs/update.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/go.sum -------------------------------------------------------------------------------- /kubectl-apply-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/kubectl-apply-all.sh -------------------------------------------------------------------------------- /overlay-generate-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlay-generate-cluster.sh -------------------------------------------------------------------------------- /overlays/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/README.md -------------------------------------------------------------------------------- /overlays/bases/deployments/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/bases/deployments/kustomization.yaml -------------------------------------------------------------------------------- /overlays/bases/pvcs/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/bases/pvcs/kustomization.yaml -------------------------------------------------------------------------------- /overlays/bases/rbac-roles/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/bases/rbac-roles/kustomization.yaml -------------------------------------------------------------------------------- /overlays/envoy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/envoy/README.md -------------------------------------------------------------------------------- /overlays/envoy/gitserver.EnvoyFilter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/envoy/gitserver.EnvoyFilter.yaml -------------------------------------------------------------------------------- /overlays/envoy/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/envoy/kustomization.yaml -------------------------------------------------------------------------------- /overlays/jaeger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/jaeger/README.md -------------------------------------------------------------------------------- /overlays/jaeger/grafana.ConfigMap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/jaeger/grafana.ConfigMap.yaml -------------------------------------------------------------------------------- /overlays/jaeger/jaeger-collector.Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/jaeger/jaeger-collector.Service.yaml -------------------------------------------------------------------------------- /overlays/jaeger/jaeger-query.Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/jaeger/jaeger-query.Service.yaml -------------------------------------------------------------------------------- /overlays/jaeger/jaeger.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/jaeger/jaeger.Deployment.yaml -------------------------------------------------------------------------------- /overlays/jaeger/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/jaeger/kustomization.yaml -------------------------------------------------------------------------------- /overlays/jaeger/otel-collector.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/jaeger/otel-collector.Deployment.yaml -------------------------------------------------------------------------------- /overlays/low-resource/LimitRange.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/low-resource/LimitRange.yaml -------------------------------------------------------------------------------- /overlays/low-resource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/low-resource/README.md -------------------------------------------------------------------------------- /overlays/low-resource/cadvisor/delete-Daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/low-resource/cadvisor/delete-Daemonset.yaml -------------------------------------------------------------------------------- /overlays/low-resource/cadvisor/delete-ServiceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/low-resource/cadvisor/delete-ServiceAccount.yaml -------------------------------------------------------------------------------- /overlays/low-resource/delete-resources-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/low-resource/delete-resources-2.yaml -------------------------------------------------------------------------------- /overlays/low-resource/delete-resources-3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/low-resource/delete-resources-3.yaml -------------------------------------------------------------------------------- /overlays/low-resource/delete-resources-4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/low-resource/delete-resources-4.yaml -------------------------------------------------------------------------------- /overlays/low-resource/delete-resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/low-resource/delete-resources.yaml -------------------------------------------------------------------------------- /overlays/low-resource/gitserver-patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/low-resource/gitserver-patch.yaml -------------------------------------------------------------------------------- /overlays/low-resource/grafana-patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/low-resource/grafana-patch.yaml -------------------------------------------------------------------------------- /overlays/low-resource/indexed-search-patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/low-resource/indexed-search-patch.yaml -------------------------------------------------------------------------------- /overlays/low-resource/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/low-resource/kustomization.yaml -------------------------------------------------------------------------------- /overlays/low-resource/node-exporter/delete-Daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/low-resource/node-exporter/delete-Daemonset.yaml -------------------------------------------------------------------------------- /overlays/low-resource/node-exporter/delete-Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/low-resource/node-exporter/delete-Service.yaml -------------------------------------------------------------------------------- /overlays/low-resource/otel-agent-patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/low-resource/otel-agent-patch.yaml -------------------------------------------------------------------------------- /overlays/migrate-to-nonprivileged/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/migrate-to-nonprivileged/README.md -------------------------------------------------------------------------------- /overlays/migrate-to-nonprivileged/blobstore/blobstore.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/migrate-to-nonprivileged/blobstore/blobstore.Deployment.yaml -------------------------------------------------------------------------------- /overlays/migrate-to-nonprivileged/gitserver/gitserver.StatefulSet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/migrate-to-nonprivileged/gitserver/gitserver.StatefulSet.yaml -------------------------------------------------------------------------------- /overlays/migrate-to-nonprivileged/grafana/grafana.StatefulSet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/migrate-to-nonprivileged/grafana/grafana.StatefulSet.yaml -------------------------------------------------------------------------------- /overlays/migrate-to-nonprivileged/indexed-search/indexed-search.StatefulSet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/migrate-to-nonprivileged/indexed-search/indexed-search.StatefulSet.yaml -------------------------------------------------------------------------------- /overlays/migrate-to-nonprivileged/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/migrate-to-nonprivileged/kustomization.yaml -------------------------------------------------------------------------------- /overlays/migrate-to-nonprivileged/prometheus/prometheus.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/migrate-to-nonprivileged/prometheus/prometheus.Deployment.yaml -------------------------------------------------------------------------------- /overlays/migrate-to-nonprivileged/redis/redis-cache.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/migrate-to-nonprivileged/redis/redis-cache.Deployment.yaml -------------------------------------------------------------------------------- /overlays/migrate-to-nonprivileged/redis/redis-store.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/migrate-to-nonprivileged/redis/redis-store.Deployment.yaml -------------------------------------------------------------------------------- /overlays/migrate-to-nonprivileged/searcher/searcher.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/migrate-to-nonprivileged/searcher/searcher.Deployment.yaml -------------------------------------------------------------------------------- /overlays/minikube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/minikube/README.md -------------------------------------------------------------------------------- /overlays/minikube/delete-resources-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/minikube/delete-resources-2.yaml -------------------------------------------------------------------------------- /overlays/minikube/delete-resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/minikube/delete-resources.yaml -------------------------------------------------------------------------------- /overlays/minikube/gitserver-patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/minikube/gitserver-patch.yaml -------------------------------------------------------------------------------- /overlays/minikube/grafana-patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/minikube/grafana-patch.yaml -------------------------------------------------------------------------------- /overlays/minikube/indexed-search-patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/minikube/indexed-search-patch.yaml -------------------------------------------------------------------------------- /overlays/minikube/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/minikube/kustomization.yaml -------------------------------------------------------------------------------- /overlays/minikube/prometheus/prometheus.ClusterRoleBinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/minikube/prometheus/prometheus.ClusterRoleBinding.yaml -------------------------------------------------------------------------------- /overlays/namespaced/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/namespaced/README.md -------------------------------------------------------------------------------- /overlays/namespaced/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/namespaced/kustomization.yaml -------------------------------------------------------------------------------- /overlays/namespaced/prometheus/prometheus.ClusterRoleBinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/namespaced/prometheus/prometheus.ClusterRoleBinding.yaml -------------------------------------------------------------------------------- /overlays/namespaced/prometheus/prometheus.ConfigMap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/namespaced/prometheus/prometheus.ConfigMap.yaml -------------------------------------------------------------------------------- /overlays/non-privileged-create-cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged-create-cluster/README.md -------------------------------------------------------------------------------- /overlays/non-privileged-create-cluster/blobstore/blobstore.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged-create-cluster/blobstore/blobstore.Deployment.yaml -------------------------------------------------------------------------------- /overlays/non-privileged-create-cluster/codeinsights-db/codeinsights-db.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged-create-cluster/codeinsights-db/codeinsights-db.Deployment.yaml -------------------------------------------------------------------------------- /overlays/non-privileged-create-cluster/codeintel-db/codeintel-db.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged-create-cluster/codeintel-db/codeintel-db.Deployment.yaml -------------------------------------------------------------------------------- /overlays/non-privileged-create-cluster/gitserver/gitserver.StatefulSet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged-create-cluster/gitserver/gitserver.StatefulSet.yaml -------------------------------------------------------------------------------- /overlays/non-privileged-create-cluster/grafana/grafana.StatefulSet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged-create-cluster/grafana/grafana.StatefulSet.yaml -------------------------------------------------------------------------------- /overlays/non-privileged-create-cluster/indexed-search/indexed-search.StatefulSet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged-create-cluster/indexed-search/indexed-search.StatefulSet.yaml -------------------------------------------------------------------------------- /overlays/non-privileged-create-cluster/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged-create-cluster/kustomization.yaml -------------------------------------------------------------------------------- /overlays/non-privileged-create-cluster/pgsql/pgsql.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged-create-cluster/pgsql/pgsql.Deployment.yaml -------------------------------------------------------------------------------- /overlays/non-privileged-create-cluster/prometheus/prometheus.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged-create-cluster/prometheus/prometheus.Deployment.yaml -------------------------------------------------------------------------------- /overlays/non-privileged-create-cluster/redis/redis-cache.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged-create-cluster/redis/redis-cache.Deployment.yaml -------------------------------------------------------------------------------- /overlays/non-privileged-create-cluster/redis/redis-store.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged-create-cluster/redis/redis-store.Deployment.yaml -------------------------------------------------------------------------------- /overlays/non-privileged/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged/README.md -------------------------------------------------------------------------------- /overlays/non-privileged/blobstore/blobstore.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged/blobstore/blobstore.Deployment.yaml -------------------------------------------------------------------------------- /overlays/non-privileged/codeinsights-db/codeinsights-db.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged/codeinsights-db/codeinsights-db.Deployment.yaml -------------------------------------------------------------------------------- /overlays/non-privileged/codeintel-db/codeintel-db.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged/codeintel-db/codeintel-db.Deployment.yaml -------------------------------------------------------------------------------- /overlays/non-privileged/frontend/sourcegraph-frontend.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged/frontend/sourcegraph-frontend.Deployment.yaml -------------------------------------------------------------------------------- /overlays/non-privileged/frontend/sourcegraph-frontend.RoleBinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged/frontend/sourcegraph-frontend.RoleBinding.yaml -------------------------------------------------------------------------------- /overlays/non-privileged/gitserver/gitserver.StatefulSet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged/gitserver/gitserver.StatefulSet.yaml -------------------------------------------------------------------------------- /overlays/non-privileged/grafana/grafana.StatefulSet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged/grafana/grafana.StatefulSet.yaml -------------------------------------------------------------------------------- /overlays/non-privileged/indexed-search/indexed-search.StatefulSet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged/indexed-search/indexed-search.StatefulSet.yaml -------------------------------------------------------------------------------- /overlays/non-privileged/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged/kustomization.yaml -------------------------------------------------------------------------------- /overlays/non-privileged/otel-collector/otel-agent.DaemonSet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged/otel-collector/otel-agent.DaemonSet.yaml -------------------------------------------------------------------------------- /overlays/non-privileged/otel-collector/otel-collector.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged/otel-collector/otel-collector.Deployment.yaml -------------------------------------------------------------------------------- /overlays/non-privileged/pgsql/pgsql.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged/pgsql/pgsql.Deployment.yaml -------------------------------------------------------------------------------- /overlays/non-privileged/precise-code-intel/worker.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged/precise-code-intel/worker.Deployment.yaml -------------------------------------------------------------------------------- /overlays/non-privileged/prometheus/prometheus.ConfigMap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged/prometheus/prometheus.ConfigMap.yaml -------------------------------------------------------------------------------- /overlays/non-privileged/prometheus/prometheus.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged/prometheus/prometheus.Deployment.yaml -------------------------------------------------------------------------------- /overlays/non-privileged/prometheus/prometheus.RoleBinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged/prometheus/prometheus.RoleBinding.yaml -------------------------------------------------------------------------------- /overlays/non-privileged/redis/redis-cache.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged/redis/redis-cache.Deployment.yaml -------------------------------------------------------------------------------- /overlays/non-privileged/redis/redis-store.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged/redis/redis-store.Deployment.yaml -------------------------------------------------------------------------------- /overlays/non-privileged/searcher/searcher.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged/searcher/searcher.Deployment.yaml -------------------------------------------------------------------------------- /overlays/non-privileged/syntect-server/syntect-server.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged/syntect-server/syntect-server.Deployment.yaml -------------------------------------------------------------------------------- /overlays/non-privileged/worker/worker.Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/non-privileged/worker/worker.Deployment.yaml -------------------------------------------------------------------------------- /overlays/resources-update/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/resources-update/README.md -------------------------------------------------------------------------------- /overlays/resources-update/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/resources-update/kustomization.yaml -------------------------------------------------------------------------------- /overlays/resources-update/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/resources-update/resources.yaml -------------------------------------------------------------------------------- /overlays/storageclass/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/storageclass/README.md -------------------------------------------------------------------------------- /overlays/storageclass/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/storageclass/kustomization.yaml -------------------------------------------------------------------------------- /overlays/storageclass/replace-storageclass-name-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/storageclass/replace-storageclass-name-pvc.yaml -------------------------------------------------------------------------------- /overlays/storageclass/replace-storageclass-name-sts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/overlays/storageclass/replace-storageclass-name-sts.yaml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@sourcegraph/prettierrc') 2 | -------------------------------------------------------------------------------- /release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/release.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/renovate.json -------------------------------------------------------------------------------- /tests/integration/fresh/fresh_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/tests/integration/fresh/fresh_test.go -------------------------------------------------------------------------------- /tests/integration/fresh/step1/.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 20.8.1 2 | pnpm 8.9.2 3 | -------------------------------------------------------------------------------- /tests/integration/fresh/step1/Pulumi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/tests/integration/fresh/step1/Pulumi.yaml -------------------------------------------------------------------------------- /tests/integration/fresh/step1/cluster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/tests/integration/fresh/step1/cluster.ts -------------------------------------------------------------------------------- /tests/integration/fresh/step1/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/tests/integration/fresh/step1/config.ts -------------------------------------------------------------------------------- /tests/integration/fresh/step1/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/tests/integration/fresh/step1/index.ts -------------------------------------------------------------------------------- /tests/integration/fresh/step1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/tests/integration/fresh/step1/package.json -------------------------------------------------------------------------------- /tests/integration/fresh/step1/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/tests/integration/fresh/step1/pnpm-lock.yaml -------------------------------------------------------------------------------- /tests/integration/fresh/step1/prettier.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@sourcegraph/prettierrc') 2 | -------------------------------------------------------------------------------- /tests/integration/fresh/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/tests/integration/fresh/yarn.lock -------------------------------------------------------------------------------- /tests/integration/restricted/install-src.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/tests/integration/restricted/install-src.sh -------------------------------------------------------------------------------- /tests/integration/restricted/nonroot-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/tests/integration/restricted/nonroot-policy.yaml -------------------------------------------------------------------------------- /tests/integration/restricted/sourcegraph.StorageClass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/tests/integration/restricted/sourcegraph.StorageClass.yaml -------------------------------------------------------------------------------- /tests/integration/restricted/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/tests/integration/restricted/test.sh -------------------------------------------------------------------------------- /tests/integration/restricted/validate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/tests/integration/restricted/validate.json -------------------------------------------------------------------------------- /tools/check-image-names/check-image-names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/tools/check-image-names/check-image-names.go -------------------------------------------------------------------------------- /tools/check-image-names/check-image-names_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/tools/check-image-names/check-image-names_test.go -------------------------------------------------------------------------------- /tools/check-image-names/tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/tools/check-image-names/tests -------------------------------------------------------------------------------- /tools/enforce-tags/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/tools/enforce-tags/main.go -------------------------------------------------------------------------------- /tools/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/tools/tools.go -------------------------------------------------------------------------------- /tools/update-docker-tags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/tools/update-docker-tags.sh -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/deploy-sourcegraph/HEAD/yarn.lock --------------------------------------------------------------------------------