Skip to content

Commit d825626

Browse files
committed
Updated to 1.2.37
1 parent 2793cd2 commit d825626

38 files changed

+519
-519
lines changed

README.md

+18-18
Original file line numberDiff line numberDiff line change
@@ -202,8 +202,8 @@ Flags:
202202
## Installation and Usage
203203

204204
Docker images:
205-
- Community Edition: `arangodb/kube-arangodb:1.2.36`
206-
- Enterprise Edition: `arangodb/kube-arangodb-enterprise:1.2.36`
205+
- Community Edition: `arangodb/kube-arangodb:1.2.37`
206+
- Enterprise Edition: `arangodb/kube-arangodb-enterprise:1.2.37`
207207

208208
### Installation of latest release using Kubectl
209209

@@ -212,22 +212,22 @@ running ArangoDB deployments.
212212

213213
##### Community Edition
214214
```bash
215-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.36/manifests/arango-crd.yaml
216-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.36/manifests/arango-deployment.yaml
215+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.37/manifests/arango-crd.yaml
216+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.37/manifests/arango-deployment.yaml
217217
# To use `ArangoLocalStorage`, also run
218-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.36/manifests/arango-storage.yaml
218+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.37/manifests/arango-storage.yaml
219219
# To use `ArangoDeploymentReplication`, also run
220-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.36/manifests/arango-deployment-replication.yaml
220+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.37/manifests/arango-deployment-replication.yaml
221221
```
222222

223223
##### Enterprise Edition
224224
```bash
225-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.36/manifests/enterprise-crd.yaml
226-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.36/manifests/enterprise-deployment.yaml
225+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.37/manifests/enterprise-crd.yaml
226+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.37/manifests/enterprise-deployment.yaml
227227
# To use `ArangoLocalStorage`, also run
228-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.36/manifests/enterprise-storage.yaml
228+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.37/manifests/enterprise-storage.yaml
229229
# To use `ArangoDeploymentReplication`, also run
230-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.36/manifests/enterprise-deployment-replication.yaml
230+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.37/manifests/enterprise-deployment-replication.yaml
231231
```
232232

233233
### Installation of latest release using kustomize
@@ -267,17 +267,17 @@ Only use this procedure for clean installation of the operator. For upgrades see
267267
##### Community Edition
268268
```bash
269269
# The following will install the operator and basic CRDs resources.
270-
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.36/kube-arangodb-1.2.36.tgz
270+
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.37/kube-arangodb-1.2.37.tgz
271271
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
272-
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.36/kube-arangodb-1.2.36.tgz --set "operator.features.storage=true"
272+
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.37/kube-arangodb-1.2.37.tgz --set "operator.features.storage=true"
273273
```
274274

275275
##### Enterprise Edition
276276
```bash
277277
# The following will install the operator and basic CRDs resources.
278-
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.36/kube-arangodb-1.2.36.tgz --set "operator.image=arangodb/kube-arangodb-enterprise:1.2.36"
278+
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.37/kube-arangodb-1.2.37.tgz --set "operator.image=arangodb/kube-arangodb-enterprise:1.2.37"
279279
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
280-
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.36/kube-arangodb-1.2.36.tgz --set "operator.image=arangodb/kube-arangodb-enterprise:1.2.36" --set "operator.features.storage=true"
280+
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.37/kube-arangodb-1.2.37.tgz --set "operator.image=arangodb/kube-arangodb-enterprise:1.2.37" --set "operator.features.storage=true"
281281
```
282282

283283
### Upgrading the operator using Helm
@@ -306,17 +306,17 @@ Then you can install the new version with `helm install` as normal:
306306
##### Community Edition
307307
```bash
308308
# The following will install the operator and basic CRDs resources.
309-
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.36/kube-arangodb-1.2.36.tgz
309+
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.37/kube-arangodb-1.2.37.tgz
310310
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
311-
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.36/kube-arangodb-1.2.36.tgz --set "operator.features.storage=true"
311+
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.37/kube-arangodb-1.2.37.tgz --set "operator.features.storage=true"
312312
```
313313

314314
##### Enterprise Edition
315315
```bash
316316
# The following will install the operator and basic CRDs resources.
317-
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.36/kube-arangodb-1.2.36.tgz --set "operator.image=arangodb/kube-arangodb-enterprise:1.2.36"
317+
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.37/kube-arangodb-1.2.37.tgz --set "operator.image=arangodb/kube-arangodb-enterprise:1.2.37"
318318
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
319-
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.36/kube-arangodb-1.2.36.tgz --set "operator.image=arangodb/kube-arangodb-enterprise:1.2.36" --set "operator.features.storage=true"
319+
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.37/kube-arangodb-1.2.37.tgz --set "operator.image=arangodb/kube-arangodb-enterprise:1.2.37" --set "operator.features.storage=true"
320320
```
321321

322322
## Building

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.37-preview-1+git
1+
1.2.37

chart/kube-arangodb-crd/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: kube-arangodb-crd
2-
version: 1.2.36
2+
version: 1.2.37
33
description: "ArangoDB Kubernetes Custom Resource Definitions (Deprecated)"
44
tillerVersion: ">2.7"
55
appVersion: 3.5.0

chart/kube-arangodb/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# do not switch to V2 yet - we still need to support Helm 2
22
apiVersion: v1
33
name: kube-arangodb
4-
version: 1.2.36
4+
version: 1.2.37
55
description: "ArangoDB Kubernetes Operator"

chart/kube-arangodb/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
operator:
2-
image: arangodb/kube-arangodb:1.2.36
2+
image: arangodb/kube-arangodb:1.2.37
33
imagePullPolicy: IfNotPresent
44
imagePullSecrets: []
55
scope: legacy

examples/reboot-pod.yaml

+1-1
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.36
9+
- image: arangodb/kube-arangodb:1.2.37
1010
name: reboot
1111
command: ["arangodb_operator", "reboot"]
1212
args:

0 commit comments

Comments
 (0)