This repository has been archived on 2023-04-02. You can view files and clone it, but cannot push or open issues or pull requests.
gitops-tbrnt/loki/Makefile

14 lines
286 B
Makefile
Raw Normal View History

2020-02-26 19:51:19 +00:00
build:
2020-05-25 10:22:38 +00:00
helm template loki --namespace=loki loki/loki \
2020-03-01 13:34:21 +00:00
-f loki-values.yaml \
2020-02-26 20:07:32 +00:00
> loki.yaml
2020-05-25 10:22:38 +00:00
helm template promtail --namespace=loki loki/promtail \
2020-02-26 20:19:51 +00:00
--set loki.serviceName=loki \
2020-02-26 20:07:32 +00:00
> promtail.yaml
2020-02-26 19:51:19 +00:00
.PHONY: build
update:
2020-05-25 10:22:38 +00:00
helm repo update
helm search repo loki-stack
2020-02-26 19:51:19 +00:00
.PHONY: update