Skip to content

Commit 469fbcb

Browse files
authored
Merge pull request #643 from spotahome/1.3.0-rc1
Prepare for release 1.3.0-rc0
2 parents 25ed922 + c80f6fd commit 469fbcb

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

Makefile

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

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

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Redis Operator creates/configures/manages redis-failovers atop Kubernetes.
1010
Kubernetes version: 1.21 or higher
1111
Redis version: 6 or higher
1212

13-
Redis operator is being tested against kubernetes 1.22 1.23 1.24 and redis 6
13+
Redis operator is being tested against kubernetes 1.25 1.26 1.27 and redis 6
1414
All dependencies have been vendored, so there's no need to any additional download.
1515

1616
## Operator deployment on Kubernetes
@@ -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.4
36+
REDIS_OPERATOR_VERSION=v1.3.0
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.4
48+
REDIS_OPERATOR_VERSION=v1.3.0
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
```

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.4
3+
appVersion: 1.3.0
44
apiVersion: v1
55
description: A Helm chart for the Spotahome Redis Operator
66
name: redis-operator
7-
version: 3.2.9
7+
version: 3.3.0
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.4
9+
tag: v1.3.0
1010
cli_args: ""
1111

1212
imageCredentials:

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

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

0 commit comments

Comments
 (0)