Skip to content

Commit eb88d23

Browse files
committed
Updated to 1.2.41
1 parent edb09bb commit eb88d23

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+1235
-519
lines changed

README.md

+18-18
Original file line numberDiff line numberDiff line change
@@ -214,8 +214,8 @@ Flags:
214214
### Installation and Usage
215215

216216
Docker images:
217-
- Community Edition: `arangodb/kube-arangodb:1.2.40`
218-
- Enterprise Edition: `arangodb/kube-arangodb-enterprise:1.2.40`
217+
- Community Edition: `arangodb/kube-arangodb:1.2.41`
218+
- Enterprise Edition: `arangodb/kube-arangodb-enterprise:1.2.41`
219219

220220
### Installation of latest release using Kubectl
221221

@@ -224,22 +224,22 @@ running ArangoDB deployments.
224224

225225
##### Community Edition
226226
```bash
227-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.40/manifests/arango-crd.yaml
228-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.40/manifests/arango-deployment.yaml
227+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.41/manifests/arango-crd.yaml
228+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.41/manifests/arango-deployment.yaml
229229
# To use `ArangoLocalStorage`, also run
230-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.40/manifests/arango-storage.yaml
230+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.41/manifests/arango-storage.yaml
231231
# To use `ArangoDeploymentReplication`, also run
232-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.40/manifests/arango-deployment-replication.yaml
232+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.41/manifests/arango-deployment-replication.yaml
233233
```
234234

235235
##### Enterprise Edition
236236
```bash
237-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.40/manifests/enterprise-crd.yaml
238-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.40/manifests/enterprise-deployment.yaml
237+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.41/manifests/enterprise-crd.yaml
238+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.41/manifests/enterprise-deployment.yaml
239239
# To use `ArangoLocalStorage`, also run
240-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.40/manifests/enterprise-storage.yaml
240+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.41/manifests/enterprise-storage.yaml
241241
# To use `ArangoDeploymentReplication`, also run
242-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.40/manifests/enterprise-deployment-replication.yaml
242+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.41/manifests/enterprise-deployment-replication.yaml
243243
```
244244

245245
### Installation of latest release using kustomize
@@ -279,17 +279,17 @@ Only use this procedure for clean installation of the operator. For upgrades see
279279
##### Community Edition
280280
```bash
281281
# The following will install the operator and basic CRDs resources.
282-
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.40/kube-arangodb-1.2.40.tgz
282+
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.41/kube-arangodb-1.2.41.tgz
283283
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
284-
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.40/kube-arangodb-1.2.40.tgz --set "operator.features.storage=true"
284+
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.41/kube-arangodb-1.2.41.tgz --set "operator.features.storage=true"
285285
```
286286

287287
##### Enterprise Edition
288288
```bash
289289
# The following will install the operator and basic CRDs resources.
290-
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.40/kube-arangodb-1.2.40.tgz --set "operator.image=arangodb/kube-arangodb-enterprise:1.2.40"
290+
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.41/kube-arangodb-1.2.41.tgz --set "operator.image=arangodb/kube-arangodb-enterprise:1.2.41"
291291
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
292-
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.40/kube-arangodb-1.2.40.tgz --set "operator.image=arangodb/kube-arangodb-enterprise:1.2.40" --set "operator.features.storage=true"
292+
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.41/kube-arangodb-1.2.41.tgz --set "operator.image=arangodb/kube-arangodb-enterprise:1.2.41" --set "operator.features.storage=true"
293293
```
294294

295295
### Upgrading the operator using Helm
@@ -318,17 +318,17 @@ Then you can install the new version with `helm install` as normal:
318318
##### Community Edition
319319
```bash
320320
# The following will install the operator and basic CRDs resources.
321-
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.40/kube-arangodb-1.2.40.tgz
321+
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.41/kube-arangodb-1.2.41.tgz
322322
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
323-
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.40/kube-arangodb-1.2.40.tgz --set "operator.features.storage=true"
323+
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.41/kube-arangodb-1.2.41.tgz --set "operator.features.storage=true"
324324
```
325325

326326
##### Enterprise Edition
327327
```bash
328328
# The following will install the operator and basic CRDs resources.
329-
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.40/kube-arangodb-1.2.40.tgz --set "operator.image=arangodb/kube-arangodb-enterprise:1.2.40"
329+
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.41/kube-arangodb-1.2.41.tgz --set "operator.image=arangodb/kube-arangodb-enterprise:1.2.41"
330330
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
331-
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.40/kube-arangodb-1.2.40.tgz --set "operator.image=arangodb/kube-arangodb-enterprise:1.2.40" --set "operator.features.storage=true"
331+
helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.41/kube-arangodb-1.2.41.tgz --set "operator.image=arangodb/kube-arangodb-enterprise:1.2.41" --set "operator.features.storage=true"
332332
```
333333

334334
## Building

VERSION

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

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

0 commit comments

Comments
 (0)