Skip to content

Commit 0a999fb

Browse files
committed
Updated to 1.2.9
1 parent 35dba6e commit 0a999fb

25 files changed

+857
-245
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -119,12 +119,12 @@ for details.
119119
## Installation of latest release using Kubectl
120120

121121
```bash
122-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.8/manifests/arango-crd.yaml
123-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.8/manifests/arango-deployment.yaml
122+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.9/manifests/arango-crd.yaml
123+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.9/manifests/arango-deployment.yaml
124124
# To use `ArangoLocalStorage`, also run
125-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.8/manifests/arango-storage.yaml
125+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.9/manifests/arango-storage.yaml
126126
# To use `ArangoDeploymentReplication`, also run
127-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.8/manifests/arango-deployment-replication.yaml
127+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.9/manifests/arango-deployment-replication.yaml
128128
```
129129

130130
This procedure can also be used for upgrades and will not harm any
@@ -156,12 +156,12 @@ upgrades.
156156

157157
```bash
158158
# The following will install the custom resources required by the operators.
159-
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.8/kube-arangodb-crd-1.2.8.tgz
159+
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.9/kube-arangodb-crd-1.2.9.tgz
160160
# The following will install the operator for `ArangoDeployment` &
161161
# `ArangoDeploymentReplication` resources.
162-
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.8/kube-arangodb-1.2.8.tgz
162+
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.9/kube-arangodb-1.2.9.tgz
163163
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
164-
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.8/kube-arangodb-1.2.8.tgz --set "operator.features.storage=true"
164+
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.9/kube-arangodb-1.2.9.tgz --set "operator.features.storage=true"
165165
```
166166

167167
## Upgrading the operator using Helm
@@ -196,9 +196,9 @@ with `helm install` as normal:
196196
```bash
197197
# The following will install the operator for `ArangoDeployment` &
198198
# `ArangoDeploymentReplication` resources.
199-
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.8/kube-arangodb-1.2.8.tgz
199+
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.9/kube-arangodb-1.2.9.tgz
200200
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
201-
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.8/kube-arangodb-1.2.8.tgz --set "operator.features.storage=true"
201+
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.9/kube-arangodb-1.2.9.tgz --set "operator.features.storage=true"
202202
```
203203

204204
## Building

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.9-preview-5+git
1+
1.2.9

chart/kube-arangodb-crd/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22

33
name: kube-arangodb-crd
4-
version: 1.2.8
4+
version: 1.2.9
55

66
description: "ArangoDB Kubernetes Custom Resource Definitions"
77
tillerVersion: ">2.7"

chart/kube-arangodb-test/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22

33
name: kube-arangodb-test
4-
version: 1.2.8
4+
version: 1.2.9
55

66
description: "ArangoDB Kubernetes Test Access"

chart/kube-arangodb/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22

33
name: kube-arangodb
4-
version: 1.2.8
4+
version: 1.2.9
55

66
description: "ArangoDB Kubernetes Operator"
77
tillerVersion: ">2.7"

chart/kube-arangodb/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22

33
operator:
4-
image: arangodb/kube-arangodb:1.2.8
4+
image: arangodb/kube-arangodb:1.2.9
55
imagePullPolicy: IfNotPresent
66
imagePullSecrets: []
77

examples/reboot-pod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ spec:
66
restartPolicy: Never
77
serviceAccountName: arango-deployment-operator-reboot
88
containers:
9-
- image: arangodb/kube-arangodb:1.2.8
9+
- image: arangodb/kube-arangodb:1.2.9
1010
name: reboot
1111
command: ["arangodb_operator", "reboot"]
1212
args:

0 commit comments

Comments
 (0)