Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 827 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 827 Bytes

This kustomization deletes resource declarations and storage classnames to enable runnning Sourcegraph on minikube.

Starting Sourcegraph:

To use it, execute the following command from the root directory of this repository:

./overlay-generate-cluster.sh minikube generated-cluster

After executing the script you can apply the generated manifests from the generated-cluster directory:

minikube start
kubectl create namespace ns-sourcegraph
kubectl -n ns-sourcegraph apply --prune -l deploy=sourcegraph -f generated-cluster --recursive
kubectl -n ns-sourcegraph expose deployment sourcegraph-frontend --type=NodePort --name sourcegraph --port=3080 --target-port=3080
minikube service list

Tearing it down:

kubectl delete namespaces ns-sourcegraph
minikube stop