@@ -33,7 +33,7 @@ helm install redis-operator redis-operator/redis-operator
33
33
Helm chart only manage the creation of CRD in the first install. In order to update the CRD you will need to apply directly.
34
34
35
35
```
36
- REDIS_OPERATOR_VERSION=v1.2.2
36
+ REDIS_OPERATOR_VERSION=v1.2.3
37
37
kubectl replace -f https://raw.githubusercontent.com/spotahome/redis-operator/${REDIS_OPERATOR_VERSION}/manifests/databases.spotahome.com_redisfailovers.yaml
38
38
```
39
39
@@ -45,7 +45,7 @@ helm upgrade redis-operator redis-operator/redis-operator
45
45
To create the operator, you can directly create it with kubectl:
46
46
47
47
```
48
- REDIS_OPERATOR_VERSION=v1.2.2
48
+ REDIS_OPERATOR_VERSION=v1.2.3
49
49
kubectl create -f https://raw.githubusercontent.com/spotahome/redis-operator/${REDIS_OPERATOR_VERSION}/manifests/databases.spotahome.com_redisfailovers.yaml
50
50
kubectl apply -f https://raw.githubusercontent.com/spotahome/redis-operator/${REDIS_OPERATOR_VERSION}/example/operator/all-redis-operator-resources.yaml
51
51
```
@@ -70,7 +70,7 @@ Finally, you can install the `full` overlay if you want everything this operator
70
70
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:
71
71
72
72
``` 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
74
74
```
75
75
76
76
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
98
98
In order to deploy a new redis-failover a [specification](example/redisfailover/basic.yaml) has to be created:
99
99
100
100
` ` `
101
- REDIS_OPERATOR_VERSION=v1.2.2
101
+ REDIS_OPERATOR_VERSION=v1.2.3
102
102
kubectl create -f https://raw.githubusercontent.com/spotahome/redis-operator/${REDIS_OPERATOR_VERSION}/example/redisfailover/basic.yaml
103
103
```
104
104
0 commit comments