Skip to content

Commit f178f0d

Browse files
committed
Updated to 1.2.13
1 parent 0ce0614 commit f178f0d

25 files changed

+265
-265
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -114,12 +114,12 @@ for details.
114114
## Installation of latest release using Kubectl
115115

116116
```bash
117-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.12/manifests/arango-crd.yaml
118-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.12/manifests/arango-deployment.yaml
117+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.13/manifests/arango-crd.yaml
118+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.13/manifests/arango-deployment.yaml
119119
# To use `ArangoLocalStorage`, also run
120-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.12/manifests/arango-storage.yaml
120+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.13/manifests/arango-storage.yaml
121121
# To use `ArangoDeploymentReplication`, also run
122-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.12/manifests/arango-deployment-replication.yaml
122+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.13/manifests/arango-deployment-replication.yaml
123123
```
124124

125125
This procedure can also be used for upgrades and will not harm any
@@ -151,12 +151,12 @@ upgrades.
151151

152152
```bash
153153
# The following will install the custom resources required by the operators.
154-
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.12/kube-arangodb-crd-1.2.12.tgz
154+
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.13/kube-arangodb-crd-1.2.13.tgz
155155
# The following will install the operator for `ArangoDeployment` &
156156
# `ArangoDeploymentReplication` resources.
157-
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.12/kube-arangodb-1.2.12.tgz
157+
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.13/kube-arangodb-1.2.13.tgz
158158
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
159-
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.12/kube-arangodb-1.2.12.tgz --set "operator.features.storage=true"
159+
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.13/kube-arangodb-1.2.13.tgz --set "operator.features.storage=true"
160160
```
161161

162162
## Upgrading the operator using Helm
@@ -191,9 +191,9 @@ with `helm install` as normal:
191191
```bash
192192
# The following will install the operator for `ArangoDeployment` &
193193
# `ArangoDeploymentReplication` resources.
194-
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.12/kube-arangodb-1.2.12.tgz
194+
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.13/kube-arangodb-1.2.13.tgz
195195
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
196-
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.12/kube-arangodb-1.2.12.tgz --set "operator.features.storage=true"
196+
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.13/kube-arangodb-1.2.13.tgz --set "operator.features.storage=true"
197197
```
198198

199199
## Building

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.13-preview-1+git
1+
1.2.13

chart/kube-arangodb-crd/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22

33
name: kube-arangodb-crd
4-
version: 1.2.12
4+
version: 1.2.13
55

66
description: "ArangoDB Kubernetes Custom Resource Definitions"
77
tillerVersion: ">2.7"

chart/kube-arangodb-test/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22

33
name: kube-arangodb-test
4-
version: 1.2.12
4+
version: 1.2.13
55

66
description: "ArangoDB Kubernetes Test Access"

chart/kube-arangodb/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22

33
name: kube-arangodb
4-
version: 1.2.12
4+
version: 1.2.13
55

66
description: "ArangoDB Kubernetes Operator"
77
tillerVersion: ">2.7"

chart/kube-arangodb/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22

33
operator:
4-
image: arangodb/kube-arangodb:1.2.12
4+
image: arangodb/kube-arangodb:1.2.13
55
imagePullPolicy: IfNotPresent
66
imagePullSecrets: []
77

examples/reboot-pod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ spec:
66
restartPolicy: Never
77
serviceAccountName: arango-deployment-operator-reboot
88
containers:
9-
- image: arangodb/kube-arangodb:1.2.12
9+
- image: arangodb/kube-arangodb:1.2.13
1010
name: reboot
1111
command: ["arangodb_operator", "reboot"]
1212
args:

0 commit comments

Comments
 (0)