Skip to content

Commit befcdb3

Browse files
committed
Updated to 1.2.39
1 parent 552427c commit befcdb3

38 files changed

+583
-519
lines changed

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,8 @@ Flags:
205205
## Installation and Usage
206206

207207
Docker images:
208-
- Community Edition: `arangodb/kube-arangodb:1.2.38`
209-
- Enterprise Edition: `arangodb/kube-arangodb-enterprise:1.2.38`
208+
- Community Edition: `arangodb/kube-arangodb:1.2.39`
209+
- Enterprise Edition: `arangodb/kube-arangodb-enterprise:1.2.39`
210210

211211
### Installation of latest release using Kubectl
212212

@@ -215,22 +215,22 @@ running ArangoDB deployments.
215215

216216
##### Community Edition
217217
```bash
218-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.38/manifests/arango-crd.yaml
219-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.38/manifests/arango-deployment.yaml
218+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.39/manifests/arango-crd.yaml
219+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.39/manifests/arango-deployment.yaml
220220
# To use `ArangoLocalStorage`, also run
221-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.38/manifests/arango-storage.yaml
221+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.39/manifests/arango-storage.yaml
222222
# To use `ArangoDeploymentReplication`, also run
223-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.38/manifests/arango-deployment-replication.yaml
223+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.39/manifests/arango-deployment-replication.yaml
224224
```
225225

226226
##### Enterprise Edition
227227
```bash
228-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.38/manifests/enterprise-crd.yaml
229-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.38/manifests/enterprise-deployment.yaml
228+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.39/manifests/enterprise-crd.yaml
229+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.39/manifests/enterprise-deployment.yaml
230230
# To use `ArangoLocalStorage`, also run
231-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.38/manifests/enterprise-storage.yaml
231+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.39/manifests/enterprise-storage.yaml
232232
# To use `ArangoDeploymentReplication`, also run
233-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.38/manifests/enterprise-deployment-replication.yaml
233+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.39/manifests/enterprise-deployment-replication.yaml
234234
```
235235

236236
### Installation of latest release using kustomize
@@ -270,17 +270,17 @@ Only use this procedure for clean installation of the operator. For upgrades see
270270
##### Community Edition
271271
```bash
272272
# The following will install the operator and basic CRDs resources.
273-
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.38/kube-arangodb-1.2.38.tgz
273+
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.39/kube-arangodb-1.2.39.tgz
274274
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
275-
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.38/kube-arangodb-1.2.38.tgz --set "operator.features.storage=true"
275+
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.39/kube-arangodb-1.2.39.tgz --set "operator.features.storage=true"
276276
```
277277

278278
##### Enterprise Edition
279279
```bash
280280
# The following will install the operator and basic CRDs resources.
281-
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.38/kube-arangodb-1.2.38.tgz --set "operator.image=arangodb/kube-arangodb-enterprise:1.2.38"
281+
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.39/kube-arangodb-1.2.39.tgz --set "operator.image=arangodb/kube-arangodb-enterprise:1.2.39"
282282
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
283-
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.38/kube-arangodb-1.2.38.tgz --set "operator.image=arangodb/kube-arangodb-enterprise:1.2.38" --set "operator.features.storage=true"
283+
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.39/kube-arangodb-1.2.39.tgz --set "operator.image=arangodb/kube-arangodb-enterprise:1.2.39" --set "operator.features.storage=true"
284284
```
285285

286286
### Upgrading the operator using Helm
@@ -309,17 +309,17 @@ Then you can install the new version with `helm install` as normal:
309309
##### Community Edition
310310
```bash
311311
# The following will install the operator and basic CRDs resources.
312-
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.38/kube-arangodb-1.2.38.tgz
312+
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.39/kube-arangodb-1.2.39.tgz
313313
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
314-
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.38/kube-arangodb-1.2.38.tgz --set "operator.features.storage=true"
314+
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.39/kube-arangodb-1.2.39.tgz --set "operator.features.storage=true"
315315
```
316316

317317
##### Enterprise Edition
318318
```bash
319319
# The following will install the operator and basic CRDs resources.
320-
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.38/kube-arangodb-1.2.38.tgz --set "operator.image=arangodb/kube-arangodb-enterprise:1.2.38"
320+
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.39/kube-arangodb-1.2.39.tgz --set "operator.image=arangodb/kube-arangodb-enterprise:1.2.39"
321321
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
322-
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.38/kube-arangodb-1.2.38.tgz --set "operator.image=arangodb/kube-arangodb-enterprise:1.2.38" --set "operator.features.storage=true"
322+
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.39/kube-arangodb-1.2.39.tgz --set "operator.image=arangodb/kube-arangodb-enterprise:1.2.39" --set "operator.features.storage=true"
323323
```
324324

325325
## Building

VERSION

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

chart/kube-arangodb-crd/Chart.yaml

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

chart/kube-arangodb/Chart.yaml

Lines changed: 1 addition & 1 deletion
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.38
4+
version: 1.2.39
55
description: "ArangoDB Kubernetes Operator"

chart/kube-arangodb/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
operator:
2-
image: arangodb/kube-arangodb:1.2.38
2+
image: arangodb/kube-arangodb:1.2.39
33
imagePullPolicy: IfNotPresent
44
imagePullSecrets: []
55
scope: legacy

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

0 commit comments

Comments
 (0)