@@ -207,8 +207,8 @@ Flags:
207
207
## Installation and Usage
208
208
209
209
Docker images:
210
- - Community Edition: ` arangodb/kube-arangodb:1.2.39 `
211
- - Enterprise Edition: ` arangodb/kube-arangodb-enterprise:1.2.39 `
210
+ - Community Edition: ` arangodb/kube-arangodb:1.2.40 `
211
+ - Enterprise Edition: ` arangodb/kube-arangodb-enterprise:1.2.40 `
212
212
213
213
### Installation of latest release using Kubectl
214
214
@@ -217,22 +217,22 @@ running ArangoDB deployments.
217
217
218
218
##### Community Edition
219
219
``` bash
220
- kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.39 /manifests/arango-crd.yaml
221
- kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.39 /manifests/arango-deployment.yaml
220
+ kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.40 /manifests/arango-crd.yaml
221
+ kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.40 /manifests/arango-deployment.yaml
222
222
# To use `ArangoLocalStorage`, also run
223
- kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.39 /manifests/arango-storage.yaml
223
+ kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.40 /manifests/arango-storage.yaml
224
224
# To use `ArangoDeploymentReplication`, also run
225
- kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.39 /manifests/arango-deployment-replication.yaml
225
+ kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.40 /manifests/arango-deployment-replication.yaml
226
226
```
227
227
228
228
##### Enterprise Edition
229
229
``` bash
230
- kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.39 /manifests/enterprise-crd.yaml
231
- kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.39 /manifests/enterprise-deployment.yaml
230
+ kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.40 /manifests/enterprise-crd.yaml
231
+ kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.40 /manifests/enterprise-deployment.yaml
232
232
# To use `ArangoLocalStorage`, also run
233
- kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.39 /manifests/enterprise-storage.yaml
233
+ kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.40 /manifests/enterprise-storage.yaml
234
234
# To use `ArangoDeploymentReplication`, also run
235
- kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.39 /manifests/enterprise-deployment-replication.yaml
235
+ kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.40 /manifests/enterprise-deployment-replication.yaml
236
236
```
237
237
238
238
### Installation of latest release using kustomize
@@ -272,17 +272,17 @@ Only use this procedure for clean installation of the operator. For upgrades see
272
272
##### Community Edition
273
273
``` bash
274
274
# The following will install the operator and basic CRDs resources.
275
- helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.39 /kube-arangodb-1.2.39 .tgz
275
+ helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.40 /kube-arangodb-1.2.40 .tgz
276
276
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
277
- 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"
277
+ 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"
278
278
```
279
279
280
280
##### Enterprise Edition
281
281
``` bash
282
282
# The following will install the operator and basic CRDs resources.
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 "
283
+ 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 "
284
284
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
285
- 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"
285
+ 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"
286
286
```
287
287
288
288
### Upgrading the operator using Helm
@@ -311,17 +311,17 @@ Then you can install the new version with `helm install` as normal:
311
311
##### Community Edition
312
312
``` bash
313
313
# The following will install the operator and basic CRDs resources.
314
- helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.39 /kube-arangodb-1.2.39 .tgz
314
+ helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.40 /kube-arangodb-1.2.40 .tgz
315
315
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
316
- 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"
316
+ 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"
317
317
```
318
318
319
319
##### Enterprise Edition
320
320
``` bash
321
321
# The following will install the operator and basic CRDs resources.
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 "
322
+ 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 "
323
323
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
324
- 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"
324
+ 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"
325
325
```
326
326
327
327
## Building
0 commit comments