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

build:
helm template influxdb --namespace=influxdb influxdata/influxdb \
-f influx-config.yaml \
> influxdb.yaml
helm template influxdb2 --namespace=influxdb influxdata/influxdb2 \
-f influx2-config.yaml \
> influxdb2.yaml
.PHONY: build
update:
helm repo update
helm search repo influxdb
.PHONY: update