Skip to content
Snippets Groups Projects
Unverified Commit 5f9f97c7 authored by Steven Sheehy's avatar Steven Sheehy
Browse files

Fix missing volume after refactor

parent bc571c54
No related branches found
No related tags found
No related merge requests found
name: loki-stack
version: 0.6.0
version: 0.6.1
appVersion: 0.0.1
kubeVersion: "^1.10.0-0"
description: "Loki: like Prometheus, but for logs."
......
name: promtail
version: 0.6.0
version: 0.6.1
appVersion: 0.0.1
kubeVersion: "^1.10.0-0"
description: "Responsible for gathering logs and sending them to Loki"
......
......@@ -82,11 +82,17 @@ tolerations:
# Extra volumes to scrape logs from
volumes:
- name: docker
hostPath:
path: /var/lib/docker/containers
- name: pods
hostPath:
path: /var/log/pods
volumeMounts:
- name: docker
mountPath: /var/lib/docker/containers
readOnly: true
- name: pods
mountPath: /var/log/pods
readOnly: true
......
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