mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-01-27 18:18:41 +00:00
Signed-off-by: Andrei Kvapil <kvapss@gmail.com> <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Updated RabbitMQ chart version to 0.4.0 and application version to 3.13.2. - Added new configuration options for users and virtual hosts in the application. - Introduced a new Kubernetes Role for managing access to secrets and services. - Enhanced RabbitMQ configuration for automated user and permission management. - **Documentation** - Improved README with a section on configuration parameters for better user guidance. - **Chores** - Added a new YAML configuration file for comprehensive RabbitMQ cluster management. <!-- end of auto-generated comment: release notes by coderabbit.ai --> Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
14 lines
772 B
Makefile
14 lines
772 B
Makefile
export NAME=rabbitmq-operator
|
|
export NAMESPACE=cozy-$(NAME)
|
|
|
|
include ../../../scripts/package.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
|
|
wget -O templates/messaging-topology-operator.yml https://github.com/rabbitmq/messaging-topology-operator/releases/latest/download/messaging-topology-operator-with-certmanager.yaml
|
|
yq -i 'del(select(.kind=="Namespace"))' templates/messaging-topology-operator.yml
|
|
sed -i 's/rabbitmq-system/$(NAMESPACE)/g' templates/messaging-topology-operator.yml
|