@@ -109,8 +109,8 @@ To upgrade to the Enterprise Edition, you need to get in touch with the ArangoDB
109
109
## Installation and Usage
110
110
111
111
Docker images:
112
- - Community Edition: ` arangodb/kube-arangodb:1.2.34 `
113
- - Enterprise Edition: ` arangodb/kube-arangodb-enterprise:1.2.34 `
112
+ - Community Edition: ` arangodb/kube-arangodb:1.2.35 `
113
+ - Enterprise Edition: ` arangodb/kube-arangodb-enterprise:1.2.35 `
114
114
115
115
### Installation of latest release using Kubectl
116
116
@@ -119,22 +119,22 @@ running ArangoDB deployments.
119
119
120
120
##### Community Edition
121
121
``` bash
122
- kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.34 /manifests/arango-crd.yaml
123
- kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.34 /manifests/arango-deployment.yaml
122
+ kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.35 /manifests/arango-crd.yaml
123
+ kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.35 /manifests/arango-deployment.yaml
124
124
# To use `ArangoLocalStorage`, also run
125
- kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.34 /manifests/arango-storage.yaml
125
+ kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.35 /manifests/arango-storage.yaml
126
126
# To use `ArangoDeploymentReplication`, also run
127
- kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.34 /manifests/arango-deployment-replication.yaml
127
+ kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.35 /manifests/arango-deployment-replication.yaml
128
128
```
129
129
130
130
##### Enterprise Edition
131
131
``` bash
132
- kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.34 /manifests/enterprise-crd.yaml
133
- kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.34 /manifests/enterprise-deployment.yaml
132
+ kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.35 /manifests/enterprise-crd.yaml
133
+ kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.35 /manifests/enterprise-deployment.yaml
134
134
# To use `ArangoLocalStorage`, also run
135
- kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.34 /manifests/enterprise-storage.yaml
135
+ kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.35 /manifests/enterprise-storage.yaml
136
136
# To use `ArangoDeploymentReplication`, also run
137
- kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.34 /manifests/enterprise-deployment-replication.yaml
137
+ kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.35 /manifests/enterprise-deployment-replication.yaml
138
138
```
139
139
140
140
### Installation of latest release using kustomize
@@ -174,17 +174,17 @@ Only use this procedure for clean installation of the operator. For upgrades see
174
174
##### Community Edition
175
175
``` bash
176
176
# The following will install the operator and basic CRDs resources.
177
- helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.34 /kube-arangodb-1.2.34 .tgz
177
+ helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.35 /kube-arangodb-1.2.35 .tgz
178
178
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
179
- helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.34 /kube-arangodb-1.2.34 .tgz --set " operator.features.storage=true"
179
+ helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.35 /kube-arangodb-1.2.35 .tgz --set " operator.features.storage=true"
180
180
```
181
181
182
182
##### Enterprise Edition
183
183
``` bash
184
184
# The following will install the operator and basic CRDs resources.
185
- helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.34 /kube-arangodb-1.2.34 .tgz --set " operator.image=arangodb/kube-arangodb-enterprise:1.2.34 "
185
+ helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.35 /kube-arangodb-1.2.35 .tgz --set " operator.image=arangodb/kube-arangodb-enterprise:1.2.35 "
186
186
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
187
- helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.34 /kube-arangodb-1.2.34 .tgz --set " operator.image=arangodb/kube-arangodb-enterprise:1.2.34 " --set " operator.features.storage=true"
187
+ helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.35 /kube-arangodb-1.2.35 .tgz --set " operator.image=arangodb/kube-arangodb-enterprise:1.2.35 " --set " operator.features.storage=true"
188
188
```
189
189
190
190
### Upgrading the operator using Helm
@@ -213,17 +213,17 @@ Then you can install the new version with `helm install` as normal:
213
213
##### Community Edition
214
214
``` bash
215
215
# The following will install the operator and basic CRDs resources.
216
- helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.34 /kube-arangodb-1.2.34 .tgz
216
+ helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.35 /kube-arangodb-1.2.35 .tgz
217
217
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
218
- helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.34 /kube-arangodb-1.2.34 .tgz --set " operator.features.storage=true"
218
+ helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.35 /kube-arangodb-1.2.35 .tgz --set " operator.features.storage=true"
219
219
```
220
220
221
221
##### Enterprise Edition
222
222
``` bash
223
223
# The following will install the operator and basic CRDs resources.
224
- helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.34 /kube-arangodb-1.2.34 .tgz --set " operator.image=arangodb/kube-arangodb-enterprise:1.2.34 "
224
+ helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.35 /kube-arangodb-1.2.35 .tgz --set " operator.image=arangodb/kube-arangodb-enterprise:1.2.35 "
225
225
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
226
- helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.34 /kube-arangodb-1.2.34 .tgz --set " operator.image=arangodb/kube-arangodb-enterprise:1.2.34 " --set " operator.features.storage=true"
226
+ helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.35 /kube-arangodb-1.2.35 .tgz --set " operator.image=arangodb/kube-arangodb-enterprise:1.2.35 " --set " operator.features.storage=true"
227
227
```
228
228
229
229
## Building
0 commit comments