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