mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-02-06 01:06:27 +00:00
Signed-off-by: Andrei Kvapil <kvapss@gmail.com> Signed-off-by: Kingdon Barrett <kingdon+github@tuesdaystudios.com> Co-authored-by: Andrei Kvapil <kvapss@gmail.com> Co-authored-by: Nikita <166552198+nbykov0@users.noreply.github.com> Co-authored-by: Kingdon Barrett <kingdon+notify@tuesdaystudios.com> Co-authored-by: Kingdon Barrett <kingdon+github@tuesdaystudios.com>
11 lines
429 B
Makefile
11 lines
429 B
Makefile
export NAME=rabbitmq-operator
|
|
export 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
|