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/monitoring/Makefile

13 lines
550 B
Makefile
Raw Normal View History

2020-02-25 20:49:33 +00:00
build:
docker run --rm -v $(shell pwd):$(shell pwd) --workdir $(shell pwd) quay.io/coreos/jsonnet-ci ./build.sh monitoring.jsonnet
2020-03-01 19:57:08 +00:00
sudo chown -R tobru. manifests/
kubeseal --controller-namespace sealed-secrets -o yaml -n monitoring < ../../gitops-tbrnt-private/monitoring/alertmanager.yaml > manifests/alertmanager-tbrnt-config-secret.yaml
2020-03-07 19:52:58 +00:00
cp *.yaml manifests/
2020-02-25 20:49:33 +00:00
.PHONY: build
2020-02-25 21:34:26 +00:00
update:
docker run --rm -v $(shell pwd):$(shell pwd) --workdir $(shell pwd) quay.io/coreos/jsonnet-ci jb update
2020-03-01 19:12:27 +00:00
sudo chown -R tobru. vendor/
make build
2020-02-25 21:34:26 +00:00
.PHONY: update