KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
rabbitmq-operator
★ 13
Open GitHub ↗
Rabbitmq operator for kubernetes
Download README (.md)
Explore Similar Repositories
micropython_demo_bot
:
Little example of how to create a bot for Telegram
vue-cli-multiPage
:
基于vue-cli 3构建的多页面应用程序
tds-monitor-standalone
:
No description available.
EZProgressHUD
:
A very cool and easy to use activity indicator for iOS Application ;) Hope you fellas enjoy it 😊😊
arcore-home-design
:
ar家具购物平台,个人毕业设计
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
rabbitmq-operator
?
Download (.md)
# rabbitmq-operator [](https://travis-ci.com/skylt/rabbitmq-operator) ## Purpose This operator was made to remove the need to have credentials written down in manifests. It achieves this by generating the credentials and storing them in a secret during the creation process. ## Configuration - `deploy/operator`: Set the correct image name - `deploy/role_binding.yaml`: Set the namespace where the operator will be deployed ## Deploying ```shellsession NAMESPACE="kube-system" kubectl -n $NAMESPACE apply -Rf deploy/ ``` To deploy a simple rabbitmq service: ```shellsession NAMESPACE="test-rabbitmq" kubectl -n $NAMESPACE apply -Rf cr/simple.yaml watch -n1 kubectl -n $NAMESPACE get pods ``` ## Usage example A further example, showing how to connect and send a simple message to the rabbitmq instance may be found [here](https://github.com/skylt/rabbitmq-example).