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
290 B
Makefile
Raw Normal View History

2020-02-26 19:51:19 +00:00
build:
2020-02-26 20:07:32 +00:00
helm3 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
helm3 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:
helm3 repo update
helm3 search repo loki-stack
.PHONY: update