Categorygithub.com/cwxstat/rabbitmq
modulepackage
0.0.0-20211122135851-ba37b00b2b8f
Repository: https://github.com/cwxstat/rabbitmq.git
Documentation: pkg.go.dev

# README

rabbitmq

Quick Start

Step 1

make all

Step 2

# Consumer 1
go run . consumer one

# Now in another terminal window
go run . consumer two

Step 3

# In a separate terminal window 
go run . producer
kubectl exec --stdin --tty rabbitmq-7d6959db66-49xbx -- /bin/bash

docker run -d \
  -it \
  --name rabbitmq \
  --mount type=bind,source="$(pwd)"/config,target=/etc/rabbitmq/conf.d \
  -p 15672:15672 -p 5671:5671 \
  rabbitmq:3-management


docker run -d -v config/:/etc/rabbitmq/conf.d -p 15672:15672 -p 5671:5671 rabbitmq:3-management
  
docker exec -ti rabbitmq /bin/bash  

Ginko for tests

cd utils
ginkgo bootstrap
ginkgo generate utils

# Packages

Copyright © 2021 NAME HERE <EMAIL ADDRESS> Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
No description provided by the author
No description provided by the author
No description provided by the author