Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 21 additions & 2 deletions kubernetes/pods/rabbitmq-helm/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@

<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
**Table of Contents** *generated with [DocToc](https://github.com/thlorenz/doctoc)*

- [RabbitMQ](#rabbitmq)
- [Using with make file:](#using-with-make-file)
- [Install:](#install)
- [Updating:](#updating)
- [Deleting:](#deleting)
- [Listing helm charts:](#listing-helm-charts)
- [Using Manually:](#using-manually)
- [Updating](#updating)
- [Enabling SSL Support](#enabling-ssl-support)

<!-- END doctoc generated TOC please keep comment here to allow auto update -->

RabbitMQ
============

Expand All @@ -6,6 +23,7 @@ We are using this helm chart: https://github.com/kubernetes/charts/tree/master/s
Using helm version: 2.8.1

# Using with make file:

```
export KUBE_NAMESPACE=rabbitmq
```
Expand Down Expand Up @@ -42,7 +60,7 @@ helm install \
--version 1.6.1 \
--name ${KUBE_NAMESPACE}-rabbitmq \
--namespace ${KUBE_NAMESPACE} \
--values ./kubernetes/pods/rabbitmq-helm/values.yml \
--values ./kubernetes/pods/rabbitmq-helm/values.yaml \
--debug \
stable/rabbitmq-ha
```
Expand All @@ -51,7 +69,7 @@ stable/rabbitmq-ha
```
helm upgrade \
--version 1.6.1 \
--values ./kubernetes/pods/rabbitmq-helm/values.yml \
--values ./kubernetes/pods/rabbitmq-helm/values.yaml \
${KUBE_NAMESPACE}-rabbitmq \
stable/rabbitmq-ha
```
Expand Down Expand Up @@ -97,3 +115,4 @@ rabbitmqAmqpsSupport:
ssl_options.verify = verify_peer
ssl_options.fail_if_no_peer_cert = false
```

Loading