Skip to content

Commit 3490cfb

Browse files
authored
Merge pull request #743 from rabbitmq/3_8_18
Set default RabbitMQ image to 3.8.18, containing JIT for Erlang 24
2 parents 3512c6f + 626e94e commit 3490cfb

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ under `site/kubernetes`.
3737

3838
## Supported Versions
3939

40-
The operator deploys RabbitMQ `3.8.17` by default, and supports versions from `3.8.8` upwards. The operator requires Kubernetes `1.18` or newer.
40+
The operator deploys RabbitMQ `3.8.18` by default, and supports versions from `3.8.8` upwards. The operator requires Kubernetes `1.18` or newer.
4141

4242
## Versioning
4343

api/v1beta1/rabbitmqcluster_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ type RabbitmqClusterSpec struct {
5050
Replicas *int32 `json:"replicas,omitempty"`
5151
// Image is the name of the RabbitMQ docker image to use for RabbitMQ nodes in the RabbitmqCluster.
5252
// Must be provided together with ImagePullSecrets in order to use an image in a private registry.
53-
// +kubebuilder:default:="rabbitmq:3.8.17-management"
53+
// +kubebuilder:default:="rabbitmq:3.8.18-management"
5454
Image string `json:"image,omitempty"`
5555
// List of Secret resource containing access credentials to the registry for the RabbitMQ image. Required if the docker registry is private.
5656
ImagePullSecrets []corev1.LocalObjectReference `json:"imagePullSecrets,omitempty"`

api/v1beta1/rabbitmqcluster_types_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ func generateRabbitmqClusterObject(clusterName string) *RabbitmqCluster {
480480
},
481481
Spec: RabbitmqClusterSpec{
482482
Replicas: pointer.Int32Ptr(1),
483-
Image: "rabbitmq:3.8.17-management",
483+
Image: "rabbitmq:3.8.18-management",
484484
TerminationGracePeriodSeconds: pointer.Int64Ptr(604800),
485485
Service: RabbitmqClusterServiceSpec{
486486
Type: "ClusterIP",

charts/rabbitmq/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ name: rabbitmq
1111
description: RabbitMQ Cluster
1212
apiVersion: v2
1313
version: 0.9.0
14-
appVersion: 3.8.17
14+
appVersion: 3.8.18
1515
keywords:
1616
- rabbitmq
1717
- message queue

charts/rabbitmq/example-configurations.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ annotations:
1717

1818
replicas: 3
1919

20-
image: "rabbitmq:3.8.17-management"
20+
image: "rabbitmq:3.8.18-management"
2121

2222
imagePullSecrets:
2323
- name: foo

charts/rabbitmq/expected-template-output

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ metadata:
2020
annotation2: bar
2121

2222
spec:
23-
image: rabbitmq:3.8.17-management
23+
image: rabbitmq:3.8.18-management
2424
imagePullSecrets:
2525
- name: foo
2626
replicas: 3

config/crd/bases/rabbitmq.com_rabbitmqclusters.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ spec:
514514
type: object
515515
type: object
516516
image:
517-
default: rabbitmq:3.8.17-management
517+
default: rabbitmq:3.8.18-management
518518
description: Image is the name of the RabbitMQ docker image to use for RabbitMQ nodes in the RabbitmqCluster. Must be provided together with ImagePullSecrets in order to use an image in a private registry.
519519
type: string
520520
imagePullSecrets:

0 commit comments

Comments
 (0)