-
Notifications
You must be signed in to change notification settings - Fork 0
/
values-minikube-minimum.yaml
42 lines (41 loc) · 1.11 KB
/
values-minikube-minimum.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# values-minikube.yaml
# This example intended as baseline to use Minikube for the deployment of GitLab
# - Minimized CPU/Memory load, can fit into 2 CPU, 4 GB of RAM (barely)
# - Services that are not compatible with how Minikube runs are disabled
# - Some services entirely removed, or scaled down to 1 replica.
# - Configured to use 192.168.99.100, and nip.io for the domain
# Minimal settings
global:
ingress:
configureCertmanager: false
class: "nginx"
hosts:
domain: 192.168.99.100.nip.io
externalIP: 192.168.99.100
# Don't use certmanager, we'll self-sign
certmanager:
install: false
# Use the `ingress` addon, not our Ingress (can't map 22/80/443)
nginx-ingress:
enabled: false
# Save resources, only 2 CPU
prometheus:
install: false
# GitLab Runner isn't a big fan of self-signed certificates
gitlab-runner:
install: false
# Reduce replica counts, reducing CPU & memory requirements
gitlab:
unicorn:
minReplicas: 1
maxReplicas: 1
sidekiq:
minReplicas: 1
maxReplicas: 1
gitlab-shell:
minReplicas: 1
maxReplicas: 1
registry:
hpa:
minReplicas: 1
maxReplicas: 1