Skip to content

Commit f04f716

Browse files
committed
Release v1.2.3
1 parent 3ceb1b2 commit f04f716

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION := v1.2.2
1+
VERSION := v1.2.3
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.2
36+
REDIS_OPERATOR_VERSION=v1.2.3
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.2
48+
REDIS_OPERATOR_VERSION=v1.2.3
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.2
73+
kustomize build github.com/spotahome/redis-operator/manifests/kustomize/overlays/default?ref=v1.2.3
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.2
101+
REDIS_OPERATOR_VERSION=v1.2.3
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,10 +1,10 @@
11
annotations:
22
category: Redis Operator
3-
appVersion: 1.2.2
3+
appVersion: 1.2.3
44
apiVersion: v1
55
description: A Helm chart for the Spotahome Redis Operator
66
name: redis-operator
7-
version: 3.2.5
7+
version: 3.2.6
88
home: https://github.com/spotahome/redis-operator
99
keywords:
1010
- "golang"

charts/redisoperator/values.yaml

+1-1
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.2
9+
tag: v1.2.3
1010

1111
imageCredentials:
1212
create: false

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.2
6+
app.kubernetes.io/version: 1.2.3
77

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

0 commit comments

Comments
 (0)