Commit 93c50705 authored by Phil Zona's avatar Phil Zona Committed by Achilleas Pipinellis

Update minikube commands for Helm 3

parent 60404418
...@@ -230,18 +230,20 @@ to those documents for details. ...@@ -230,18 +230,20 @@ to those documents for details.
```shell ```shell
minikube start --cpus 3 --memory 8192 # minimum amount for GitLab to work minikube start --cpus 3 --memory 8192 # minimum amount for GitLab to work
minikube addons enable ingress minikube addons enable ingress
minikube addons enable kube-dns
``` ```
- Install Helm via Homebrew and initialize it: - Install Helm via Homebrew and initialize it:
```shell ```shell
brew install kubernetes-helm brew install helm
helm init --service-account tiller
``` ```
- Copy the [Minikube minimum values YAML file](https://gitlab.com/gitlab-org/charts/gitlab/raw/master/examples/values-minikube-minimum.yaml) - Copy the [Minikube minimum values YAML file](https://gitlab.com/gitlab-org/charts/gitlab/raw/master/examples/values-minikube-minimum.yaml)
to your workstation. to your workstation:
```shell
curl --output values.yaml "https://gitlab.com/gitlab-org/charts/gitlab/raw/master/examples/values-minikube-minimum.yaml"
```
- Find the IP address in the output of `minikube ip` and update the YAML file with - Find the IP address in the output of `minikube ip` and update the YAML file with
this IP address. this IP address.
...@@ -250,7 +252,7 @@ to those documents for details. ...@@ -250,7 +252,7 @@ to those documents for details.
```shell ```shell
helm repo add gitlab https://charts.gitlab.io helm repo add gitlab https://charts.gitlab.io
helm install --name gitlab -f <path-to-yaml-file> gitlab/gitlab helm install gitlab -f <path-to-yaml-file> gitlab/gitlab
``` ```
If you want to modify some GitLab settings, you can use the above-mentioned config If you want to modify some GitLab settings, you can use the above-mentioned config
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment