@@ -205,8 +205,8 @@ Flags:
205
205
## Installation and Usage
206
206
207
207
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 `
210
210
211
211
### Installation of latest release using Kubectl
212
212
@@ -215,22 +215,22 @@ running ArangoDB deployments.
215
215
216
216
##### Community Edition
217
217
``` 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
220
220
# 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
222
222
# 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
224
224
```
225
225
226
226
##### Enterprise Edition
227
227
``` 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
230
230
# 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
232
232
# 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
234
234
```
235
235
236
236
### Installation of latest release using kustomize
@@ -270,17 +270,17 @@ Only use this procedure for clean installation of the operator. For upgrades see
270
270
##### Community Edition
271
271
``` bash
272
272
# 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
274
274
# 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"
276
276
```
277
277
278
278
##### Enterprise Edition
279
279
``` bash
280
280
# 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 "
282
282
# 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"
284
284
```
285
285
286
286
### Upgrading the operator using Helm
@@ -309,17 +309,17 @@ Then you can install the new version with `helm install` as normal:
309
309
##### Community Edition
310
310
``` bash
311
311
# 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
313
313
# 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"
315
315
```
316
316
317
317
##### Enterprise Edition
318
318
``` bash
319
319
# 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 "
321
321
# 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"
323
323
```
324
324
325
325
## Building
0 commit comments