Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump RabbitMQ image to v3.8.15 #673

Merged
merged 1 commit into from
May 4, 2021
Merged
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ under `site/kubernetes`.

## Supported Versions

The operator deploys RabbitMQ `3.8.14` by default, and supports versions from `3.8.8` upwards. The operator requires Kubernetes `1.18` or newer.
The operator deploys RabbitMQ `3.8.15` by default, and supports versions from `3.8.8` upwards. The operator requires Kubernetes `1.18` or newer.

## Versioning

Expand Down
2 changes: 1 addition & 1 deletion api/v1beta1/rabbitmqcluster_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ type RabbitmqClusterSpec struct {
Replicas *int32 `json:"replicas,omitempty"`
// 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.
// +kubebuilder:default:="rabbitmq:3.8.14-management"
// +kubebuilder:default:="rabbitmq:3.8.15-management"
Image string `json:"image,omitempty"`
// List of Secret resource containing access credentials to the registry for the RabbitMQ image. Required if the docker registry is private.
ImagePullSecrets []corev1.LocalObjectReference `json:"imagePullSecrets,omitempty"`
Expand Down
2 changes: 1 addition & 1 deletion api/v1beta1/rabbitmqcluster_types_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ func generateRabbitmqClusterObject(clusterName string) *RabbitmqCluster {
},
Spec: RabbitmqClusterSpec{
Replicas: pointer.Int32Ptr(1),
Image: "rabbitmq:3.8.14-management",
Image: "rabbitmq:3.8.15-management",
TerminationGracePeriodSeconds: pointer.Int64Ptr(604800),
Service: RabbitmqClusterServiceSpec{
Type: "ClusterIP",
Expand Down
2 changes: 1 addition & 1 deletion charts/rabbitmq/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name: rabbitmq
description: RabbitMQ Cluster
apiVersion: v2
version: 0.9.0
appVersion: 3.8.14
appVersion: 3.8.15
keywords:
- rabbitmq
- message queue
Expand Down
2 changes: 1 addition & 1 deletion charts/rabbitmq/example-configurations.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ annotations:

replicas: 3

image: "rabbitmq:3.8.14-management"
image: "rabbitmq:3.8.15-management"

imagePullSecrets:
- name: foo
Expand Down
2 changes: 1 addition & 1 deletion charts/rabbitmq/expected-template-output
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ metadata:
annotation2: bar

spec:
image: rabbitmq:3.8.14-management
image: rabbitmq:3.8.15-management
imagePullSecrets:
- name: foo
replicas: 3
Expand Down
2 changes: 1 addition & 1 deletion config/crd/bases/rabbitmq.com_rabbitmqclusters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ spec:
type: object
type: object
image:
default: rabbitmq:3.8.14-management
default: rabbitmq:3.8.15-management
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.
type: string
imagePullSecrets:
Expand Down