...
 
Commits (2)
......@@ -27,7 +27,7 @@ spec:
image: "{{ .Values.runners.image.repository }}:{{ .Values.runners.image.tag }}"
imagePullPolicy: {{ .Values.runners.image.pullPolicy }}
resources:
{{- toYaml .Values.resources | nindent 12 }}
{{- toYaml .Values.runners.resources | nindent 12 }}
volumeMounts:
- name: settings
mountPath: /var/www/Minds/engine/settings.php
......
......@@ -17,6 +17,10 @@ runners:
tag: latest
pullPolicy: Always
replicas: 1
resources:
limits:
memory: 256Mi
cpu: 200m
nginx:
image:
......@@ -70,7 +74,7 @@ production: false
# Redis
redis:
deploy: true # Set to true if you want to deploy a new redis cluster
deploy: false # Set to true if you want to deploy a new redis cluster
usePassword: false
# Cassandra
......