Skip to content

Commit c647343

Browse files
committed
Release v1.2.4
1 parent e711df0 commit c647343

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION := v1.2.3
1+
VERSION := v1.2.4
22

33
# Name of this service/application
44
SERVICE_NAME := redis-operator

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ helm install redis-operator redis-operator/redis-operator
3333
Helm chart only manage the creation of CRD in the first install. In order to update the CRD you will need to apply directly.
3434

3535
```
36-
REDIS_OPERATOR_VERSION=v1.2.3
36+
REDIS_OPERATOR_VERSION=v1.2.4
3737
kubectl replace -f https://raw.githubusercontent.com/spotahome/redis-operator/${REDIS_OPERATOR_VERSION}/manifests/databases.spotahome.com_redisfailovers.yaml
3838
```
3939

@@ -45,7 +45,7 @@ helm upgrade redis-operator redis-operator/redis-operator
4545
To create the operator, you can directly create it with kubectl:
4646

4747
```
48-
REDIS_OPERATOR_VERSION=v1.2.3
48+
REDIS_OPERATOR_VERSION=v1.2.4
4949
kubectl create -f https://raw.githubusercontent.com/spotahome/redis-operator/${REDIS_OPERATOR_VERSION}/manifests/databases.spotahome.com_redisfailovers.yaml
5050
kubectl apply -f https://raw.githubusercontent.com/spotahome/redis-operator/${REDIS_OPERATOR_VERSION}/example/operator/all-redis-operator-resources.yaml
5151
```
@@ -70,7 +70,7 @@ Finally, you can install the `full` overlay if you want everything this operator
7070
It's always a good practice to pin the version of the operator in your configuration to make sure you are not surprised by changes on the latest development branch:
7171

7272
```shell
73-
kustomize build github.com/spotahome/redis-operator/manifests/kustomize/overlays/default?ref=v1.2.3
73+
kustomize build github.com/spotahome/redis-operator/manifests/kustomize/overlays/default?ref=v1.2.4
7474
```
7575

7676
You can easily create your own config by creating a `kustomization.yaml` file
@@ -98,7 +98,7 @@ Once the operator is deployed inside a Kubernetes cluster, a new API will be acc
9898
In order to deploy a new redis-failover a [specification](example/redisfailover/basic.yaml) has to be created:
9999
100100
```
101-
REDIS_OPERATOR_VERSION=v1.2.3
101+
REDIS_OPERATOR_VERSION=v1.2.4
102102
kubectl create -f https://raw.githubusercontent.com/spotahome/redis-operator/${REDIS_OPERATOR_VERSION}/example/redisfailover/basic.yaml
103103
```
104104

charts/redisoperator/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
annotations:
22
category: Redis Operator
3-
appVersion: 1.2.3
3+
appVersion: 1.2.4
44
apiVersion: v1
55
description: A Helm chart for the Spotahome Redis Operator
66
name: redis-operator
@@ -12,4 +12,4 @@ keywords:
1212
- "cluster"
1313
sources:
1414
- https://github.com/spotahome/redis-operator
15-
kubeVersion: '>=1.21.0-0'
15+
kubeVersion: ">=1.21.0-0"

charts/redisoperator/values.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
image:
77
repository: quay.io/spotahome/redis-operator
88
pullPolicy: IfNotPresent
9-
tag: v1.2.3
9+
tag: v1.2.4
1010

1111
imageCredentials:
1212
create: false
@@ -16,7 +16,7 @@ imageCredentials:
1616
1717
# Use exists secrets in namespace
1818
existsSecrets:
19-
- registrysecret
19+
- registrysecret
2020

2121
updateStrategy:
2222
type: RollingUpdate

manifests/kustomize/components/version/kustomization.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ kind: Component
33

44
labels:
55
- pairs:
6-
app.kubernetes.io/version: 1.2.3
6+
app.kubernetes.io/version: 1.2.4
77

88
images:
99
- name: quay.io/spotahome/redis-operator
10-
newTag: v1.2.3
10+
newTag: v1.2.4

0 commit comments

Comments
 (0)