mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-02-06 01:06:27 +00:00
18 lines
490 B
Makefile
18 lines
490 B
Makefile
NAME=grafana-operator
|
|
NAMESPACE=cozy-grafana-operator
|
|
|
|
show:
|
|
helm template --dry-run=server -n $(NAMESPACE) $(NAME) .
|
|
|
|
apply:
|
|
helm upgrade -i -n $(NAMESPACE) $(NAME) .
|
|
|
|
diff:
|
|
helm diff upgrade --allow-unreleased --normalize-manifests -n $(NAMESPACE) $(NAME) .
|
|
|
|
update:
|
|
rm -rf charts
|
|
mkdir -p charts
|
|
curl -sSL https://github.com/grafana-operator/grafana-operator/archive/refs/heads/master.tar.gz | \
|
|
tar xzvf - --strip 3 -C charts grafana-operator-master/deploy/helm/grafana-operator
|