@@ -202,8 +202,8 @@ Flags:
202
202
## Installation and Usage
203
203
204
204
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 `
207
207
208
208
### Installation of latest release using Kubectl
209
209
@@ -212,22 +212,22 @@ running ArangoDB deployments.
212
212
213
213
##### Community Edition
214
214
``` 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
217
217
# 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
219
219
# 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
221
221
```
222
222
223
223
##### Enterprise Edition
224
224
``` 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
227
227
# 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
229
229
# 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
231
231
```
232
232
233
233
### Installation of latest release using kustomize
@@ -267,17 +267,17 @@ Only use this procedure for clean installation of the operator. For upgrades see
267
267
##### Community Edition
268
268
``` bash
269
269
# 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
271
271
# 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"
273
273
```
274
274
275
275
##### Enterprise Edition
276
276
``` bash
277
277
# 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 "
279
279
# 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"
281
281
```
282
282
283
283
### Upgrading the operator using Helm
@@ -306,17 +306,17 @@ Then you can install the new version with `helm install` as normal:
306
306
##### Community Edition
307
307
``` bash
308
308
# 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
310
310
# 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"
312
312
```
313
313
314
314
##### Enterprise Edition
315
315
``` bash
316
316
# 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 "
318
318
# 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"
320
320
```
321
321
322
322
## Building
0 commit comments