From e6dbf9d3755119743e643e5f4a347bf4d46f6bf4 Mon Sep 17 00:00:00 2001 From: BolajiOlajide <25608335+BolajiOlajide@users.noreply.github.com> Date: Wed, 24 Aug 2022 01:00:32 +0100 Subject: [PATCH] add minikube example --- charts/sourcegraph/examples/minikube/README.md | 7 +++++++ charts/sourcegraph/examples/minikube/override.yaml | 12 ++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 charts/sourcegraph/examples/minikube/README.md create mode 100644 charts/sourcegraph/examples/minikube/override.yaml diff --git a/charts/sourcegraph/examples/minikube/README.md b/charts/sourcegraph/examples/minikube/README.md new file mode 100644 index 00000000..1ed08ca0 --- /dev/null +++ b/charts/sourcegraph/examples/minikube/README.md @@ -0,0 +1,7 @@ +## Prerequisite + +Install the ingress controller as a minikube addon with the command: + +```sh +minikube addons enable ingress +``` diff --git a/charts/sourcegraph/examples/minikube/override.yaml b/charts/sourcegraph/examples/minikube/override.yaml new file mode 100644 index 00000000..da2cf42b --- /dev/null +++ b/charts/sourcegraph/examples/minikube/override.yaml @@ -0,0 +1,12 @@ +frontend: + ingress: + enabled: true + annotations: null + ingressClassName: nginx + host: localhost + +storageClass: + create: true + type: null + provisioner: kubernetes.io/no-provisioner + volumeBindingMode: WaitForFirstConsumer