mirror of
https://github.com/carlosedp/cluster-monitoring.git
synced 2024-11-20 19:07:17 +01:00
Improve change_suffix target
This commit is contained in:
parent
0d032eac7f
commit
0d8368b29f
11
Makefile
11
Makefile
@ -62,11 +62,10 @@ update_tools: ## Updates jsonnet, jsonnetfmt and jb utilities
|
|||||||
@go get -u github.com/jsonnet-bundler/jsonnet-bundler/cmd/jb
|
@go get -u github.com/jsonnet-bundler/jsonnet-bundler/cmd/jb
|
||||||
|
|
||||||
change_suffix: ## Changes suffix for the ingress. Pass suffix=[suffixURL] as argument
|
change_suffix: ## Changes suffix for the ingress. Pass suffix=[suffixURL] as argument
|
||||||
@sed -i -e "s/\(.*prometheus\.\).*/\1${suffix}/" manifests/ingress-prometheus.yaml
|
|
||||||
@sed -i -e "s/\(.*alertmanager\.\).*/\1${suffix}/" manifests/ingress-alertmanager.yaml
|
|
||||||
@sed -i -e "s/\(.*grafana\.\).*/\1${suffix}/" manifests/ingress-grafana.yaml
|
|
||||||
@echo "Ingress IPs changed to [service].${suffix}"
|
@echo "Ingress IPs changed to [service].${suffix}"
|
||||||
@echo "Apply to your cluster with:"
|
@echo "Apply to your cluster with:"
|
||||||
@echo ${K3S} kubectl apply -f manifests/ingress-alertmanager.yaml
|
@for f in alertmanager prometheus grafana; do \
|
||||||
@echo ${K3S} kubectl apply -f manifests/ingress-grafana.yaml
|
cat manifests/ingress-$$f.yaml | sed -e "s/\(.*$$f\.\).*/\1${suffix}/" > manifests/ingress-$$f.yaml-tmp; \
|
||||||
@echo ${K3S} kubectl apply -f manifests/ingress-prometheus.yaml
|
mv -f manifests/ingress-$$f.yaml-tmp manifests/ingress-$$f.yaml; \
|
||||||
|
echo ${K3S} kubectl apply -f manifests/ingress-$$f.yaml; \
|
||||||
|
done
|
Loading…
Reference in New Issue
Block a user