mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-02-06 01:06:27 +00:00
11 lines
415 B
Makefile
11 lines
415 B
Makefile
NAME=rabbitmq-operator
|
|
NAMESPACE=cozy-$(NAME)
|
|
|
|
include ../../../scripts/package-system.mk
|
|
|
|
update:
|
|
rm -rf templates/cluster-operator.yml
|
|
wget -O templates/cluster-operator.yml https://github.com/rabbitmq/cluster-operator/releases/latest/download/cluster-operator.yml
|
|
yq -i 'del(select(.kind=="Namespace"))' templates/cluster-operator.yml
|
|
sed -i 's/rabbitmq-system/$(NAMESPACE)/g' templates/cluster-operator.yml
|