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

14 lines
316 B
Makefile
Raw Permalink Normal View History

2020-03-15 09:57:04 +00:00
build:
2021-10-30 21:17:37 +00:00
helm template influxdb --namespace=influxdb influxdata/influxdb \
2020-03-15 09:57:04 +00:00
-f influx-config.yaml \
> influxdb.yaml
2021-10-30 21:17:37 +00:00
helm template influxdb2 --namespace=influxdb influxdata/influxdb2 \
-f influx2-config.yaml \
> influxdb2.yaml
2020-03-15 09:57:04 +00:00
.PHONY: build
update:
2021-10-30 21:17:37 +00:00
helm repo update
helm search repo influxdb
2020-03-15 09:57:04 +00:00
.PHONY: update