Skip to content
Snippets Groups Projects
Unverified Commit 1107c8bd authored by David's avatar David Committed by GitHub
Browse files

Merge pull request #355 from granular-ryanbonham/helm_timeouts

Helm Chart Production Improvements.
parents b8d81aba 5143aca4
No related branches found
No related tags found
No related merge requests found
......@@ -13,6 +13,7 @@ metadata:
{{- end }}
spec:
replicas: {{ .Values.loki.replicas }}
minReadySeconds: {{ .Values.loki.minReadySeconds }}
selector:
matchLabels:
app: {{ template "loki.name" . }}
......@@ -77,6 +78,7 @@ spec:
tolerations:
{{ toYaml . | indent 8 }}
{{- end }}
terminationGracePeriodSeconds: {{ .Values.loki.terminationGracePeriodSeconds }}
volumes:
- name: config
configMap:
......
......@@ -8,6 +8,8 @@ serviceAccount:
loki:
replicas: 1
minReadySeconds: 0
terminationGracePeriodSeconds: 30
deploymentStrategy: RollingUpdate
image:
......@@ -21,11 +23,14 @@ loki:
labels: {}
readinessProbe: {}
# httpGet:
# path: /ready
# port: 3100
# initialDelaySeconds: 15
livenessProbe: {}
resources:
{}
resources: {}
# limits:
# cpu: 100m
# memory: 128Mi
......@@ -56,7 +61,16 @@ loki:
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
##
affinity: {}
# podAntiAffinity:
# requiredDuringSchedulingIgnoredDuringExecution:
# - labelSelector:
# matchExpressions:
# - key: app
# operator: In
# values:
# - loki
# topologyKey: "kubernetes.io/hostname"
## Enable persistence using Persistent Volume Claims
## ref: http://kubernetes.io/docs/user-guide/persistent-volumes/
## If you set enabled as "True", you need :
......@@ -113,8 +127,7 @@ promtail:
livenessProbe: {}
resources:
{}
resources: {}
# limits:
# cpu: 100m
# memory: 128Mi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment