@@ -214,8 +214,8 @@ Flags:
214
214
### Installation and Usage
215
215
216
216
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 `
219
219
220
220
### Installation of latest release using Kubectl
221
221
@@ -224,22 +224,22 @@ running ArangoDB deployments.
224
224
225
225
##### Community Edition
226
226
``` 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
229
229
# 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
231
231
# 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
233
233
```
234
234
235
235
##### Enterprise Edition
236
236
``` 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
239
239
# 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
241
241
# 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
243
243
```
244
244
245
245
### Installation of latest release using kustomize
@@ -279,17 +279,17 @@ Only use this procedure for clean installation of the operator. For upgrades see
279
279
##### Community Edition
280
280
``` bash
281
281
# 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
283
283
# 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"
285
285
```
286
286
287
287
##### Enterprise Edition
288
288
``` bash
289
289
# 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 "
291
291
# 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"
293
293
```
294
294
295
295
### Upgrading the operator using Helm
@@ -318,17 +318,17 @@ Then you can install the new version with `helm install` as normal:
318
318
##### Community Edition
319
319
``` bash
320
320
# 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
322
322
# 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"
324
324
```
325
325
326
326
##### Enterprise Edition
327
327
``` bash
328
328
# 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 "
330
330
# 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"
332
332
```
333
333
334
334
## Building
0 commit comments