Skip to content

Commit

Permalink
Merge pull request #341 from rabbitmq/update-rabbitmq
Browse files Browse the repository at this point in the history
Deploy rabbitmq 3.8.8 by default
  • Loading branch information
coro committed Sep 16, 2020
2 parents 8b92838 + 38752b6 commit 0887b9e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -6,7 +6,7 @@ Manage [RabbitMQ](https://www.rabbitmq.com/) clusters deployed to [Kubernetes](h

## Supported Versions

The operator deploys RabbitMQ `3.8.5`, and requires a Kubernetes cluster of `1.16` or above.
The operator deploys RabbitMQ `3.8.8`, and requires a Kubernetes cluster of `1.16` or above.

## Versioning

Expand Down
2 changes: 1 addition & 1 deletion api/v1beta1/rabbitmqcluster_types.go
Expand Up @@ -22,7 +22,7 @@ import (
)

const (
rabbitmqImage string = "rabbitmq:3.8.5"
rabbitmqImage string = "rabbitmq:3.8.8"
defaultPersistentCapacity string = "10Gi"
defaultMemoryLimit string = "2Gi"
defaultCPULimit string = "2000m"
Expand Down
2 changes: 1 addition & 1 deletion api/v1beta1/rabbitmqcluster_types_test.go
Expand Up @@ -365,7 +365,7 @@ func generateRabbitmqClusterObject(clusterName string) *RabbitmqCluster {
},
Spec: RabbitmqClusterSpec{
Replicas: &one,
Image: "rabbitmq:3.8.5",
Image: "rabbitmq:3.8.8",
Service: RabbitmqClusterServiceSpec{
Type: "ClusterIP",
},
Expand Down
2 changes: 1 addition & 1 deletion bin/kubectl-rabbitmq
Expand Up @@ -33,7 +33,7 @@ usage() {
echo " kubectl rabbitmq delete INSTANCE ..."
echo
echo " Create a RabbitMQ custom resource - INSTANCE name required, all other flags optional"
echo " kubectl rabbitmq create INSTANCE --replicas 1 --service ClusterIP --image rabbitmq:3.8.5 --image-pull-secret mysecret"
echo " kubectl rabbitmq create INSTANCE --replicas 1 --service ClusterIP --image rabbitmq:3.8.8 --image-pull-secret mysecret"
echo
echo " Get a RabbitMQ custom resource and dependant objects"
echo " kubectl rabbitmq get INSTANCE"
Expand Down
2 changes: 1 addition & 1 deletion charts/rabbitmq/Chart.yaml
Expand Up @@ -11,7 +11,7 @@ name: rabbitmq
description: RabbitMQ Cluster
apiVersion: v2
version: 0.8.0
appVersion: 3.8.5
appVersion: 3.8.8
keywords:
- rabbitmq
- message queue
Expand Down

0 comments on commit 0887b9e

Please sign in to comment.