[stable/rabbitmq] fix ports in NOTES.txt (#8904)

`.Values.rabbitmq.nodePort` is only used for `NodePort`-type
services. For ClusterIP and LoadBalancer it's the usual amqpPort.

Also fixed a typo on `rabbitmq.nodePort` in the README.

Regression introduced by #7910.

Signed-off-by: Thomas Riccardi <thomas@deepomatic.com>
This commit is contained in:
Thomas Riccardi
2018-10-31 02:06:14 -07:00
committed by k8s-ci-robot
parent 46b20da1fb
commit a96036c4ec
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: rabbitmq
version: 3.6.1
version: 3.6.2
appVersion: 3.7.8
description: Open source message broker software that implements the Advanced Message Queuing Protocol (AMQP)
keywords:
+1 -1
View File
@@ -60,7 +60,7 @@ The following table lists the configurable parameters of the RabbitMQ chart and
| `rabbitmq.erlangCookie` | Erlang cookie | _random 32 character long alphanumeric string_ |
| `rabbitmq.amqpPort` | Amqp port | `5672` |
| `rabbitmq.distPort` | Erlang distribution server port | `25672` |
| `rabbitmq.nodePort` | Node port override, if serviceType NodePort | _random avaliable between 30000-32767_ |
| `rabbitmq.nodePort` | Node port override, if serviceType NodePort | _random available between 30000-32767_ |
| `rabbitmq.managerPort` | RabbitMQ Manager port | `15672` |
| `rabbitmq.diskFreeLimit` | Disk free limit | `"6GiB"` |
| `rabbitmq.plugins` | configuration file for plugins to enable | `[rabbitmq_management,rabbitmq_peer_discovery_k8s].` |
+3 -3
View File
@@ -38,7 +38,7 @@ NOTE: It may take a few minutes for the LoadBalancer IP to be available.
To Access the RabbitMQ AMQP port:
echo "URL : amqp://$SERVICE_IP:{{ .Values.rabbitmq.nodePort }}/"
echo "URL : amqp://$SERVICE_IP:{{ .Values.rabbitmq.amqpPort }}/"
To Access the RabbitMQ Management interface:
@@ -48,8 +48,8 @@ To Access the RabbitMQ Management interface:
To Access the RabbitMQ AMQP port:
kubectl port-forward --namespace {{ .Release.Namespace }} svc/{{ template "rabbitmq.fullname" . }} {{ .Values.rabbitmq.nodePort }}:{{ .Values.rabbitmq.nodePort }}
echo "URL : amqp://127.0.0.1:{{ .Values.rabbitmq.nodePort }}/"
kubectl port-forward --namespace {{ .Release.Namespace }} svc/{{ template "rabbitmq.fullname" . }} {{ .Values.rabbitmq.amqpPort }}:{{ .Values.rabbitmq.amqpPort }}
echo "URL : amqp://127.0.0.1:{{ .Values.rabbitmq.amqpPort }}/"
To Access the RabbitMQ Management interface: