Skip to content

Commit

Permalink
Release v1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ese committed Dec 1, 2022
1 parent 3ceb1b2 commit f04f716
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION := v1.2.2
VERSION := v1.2.3

# Name of this service/application
SERVICE_NAME := redis-operator
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ helm install redis-operator redis-operator/redis-operator
Helm chart only manage the creation of CRD in the first install. In order to update the CRD you will need to apply directly.

```
REDIS_OPERATOR_VERSION=v1.2.2
REDIS_OPERATOR_VERSION=v1.2.3
kubectl replace -f https://raw.githubusercontent.com/spotahome/redis-operator/${REDIS_OPERATOR_VERSION}/manifests/databases.spotahome.com_redisfailovers.yaml
```

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

```
REDIS_OPERATOR_VERSION=v1.2.2
REDIS_OPERATOR_VERSION=v1.2.3
kubectl create -f https://raw.githubusercontent.com/spotahome/redis-operator/${REDIS_OPERATOR_VERSION}/manifests/databases.spotahome.com_redisfailovers.yaml
kubectl apply -f https://raw.githubusercontent.com/spotahome/redis-operator/${REDIS_OPERATOR_VERSION}/example/operator/all-redis-operator-resources.yaml
```
Expand All @@ -70,7 +70,7 @@ Finally, you can install the `full` overlay if you want everything this operator
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:

```shell
kustomize build github.com/spotahome/redis-operator/manifests/kustomize/overlays/default?ref=v1.2.2
kustomize build github.com/spotahome/redis-operator/manifests/kustomize/overlays/default?ref=v1.2.3
```

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

Expand Down
4 changes: 2 additions & 2 deletions charts/redisoperator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
annotations:
category: Redis Operator
appVersion: 1.2.2
appVersion: 1.2.3
apiVersion: v1
description: A Helm chart for the Spotahome Redis Operator
name: redis-operator
version: 3.2.5
version: 3.2.6
home: https://github.com/spotahome/redis-operator
keywords:
- "golang"
Expand Down
2 changes: 1 addition & 1 deletion charts/redisoperator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
image:
repository: quay.io/spotahome/redis-operator
pullPolicy: IfNotPresent
tag: v1.2.2
tag: v1.2.3

imageCredentials:
create: false
Expand Down
4 changes: 2 additions & 2 deletions manifests/kustomize/components/version/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ kind: Component

labels:
- pairs:
app.kubernetes.io/version: 1.2.2
app.kubernetes.io/version: 1.2.3

images:
- name: quay.io/spotahome/redis-operator
newTag: v1.2.2
newTag: v1.2.3

0 comments on commit f04f716

Please sign in to comment.