Skip to content

Commit 77f5d63

Browse files
committed
Updated to 1.2.15
1 parent 75200eb commit 77f5d63

25 files changed

+251
-251
lines changed

README.md

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

103103
```bash
104-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.14/manifests/arango-crd.yaml
105-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.14/manifests/arango-deployment.yaml
104+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.15/manifests/arango-crd.yaml
105+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.15/manifests/arango-deployment.yaml
106106
# To use `ArangoLocalStorage`, also run
107-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.14/manifests/arango-storage.yaml
107+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.15/manifests/arango-storage.yaml
108108
# To use `ArangoDeploymentReplication`, also run
109-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.14/manifests/arango-deployment-replication.yaml
109+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.15/manifests/arango-deployment-replication.yaml
110110
```
111111

112112
This procedure can also be used for upgrades and will not harm any
@@ -138,12 +138,12 @@ upgrades.
138138

139139
```bash
140140
# The following will install the custom resources required by the operators.
141-
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.14/kube-arangodb-crd-1.2.14.tgz
141+
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.15/kube-arangodb-crd-1.2.15.tgz
142142
# The following will install the operator for `ArangoDeployment` &
143143
# `ArangoDeploymentReplication` resources.
144-
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.14/kube-arangodb-1.2.14.tgz
144+
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.15/kube-arangodb-1.2.15.tgz
145145
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
146-
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.14/kube-arangodb-1.2.14.tgz --set "operator.features.storage=true"
146+
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.15/kube-arangodb-1.2.15.tgz --set "operator.features.storage=true"
147147
```
148148

149149
## Upgrading the operator using Helm
@@ -178,9 +178,9 @@ with `helm install` as normal:
178178
```bash
179179
# The following will install the operator for `ArangoDeployment` &
180180
# `ArangoDeploymentReplication` resources.
181-
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.14/kube-arangodb-1.2.14.tgz
181+
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.15/kube-arangodb-1.2.15.tgz
182182
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
183-
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.14/kube-arangodb-1.2.14.tgz --set "operator.features.storage=true"
183+
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.15/kube-arangodb-1.2.15.tgz --set "operator.features.storage=true"
184184
```
185185

186186
## Building

VERSION

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

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.14
4+
version: 1.2.15
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.14
4+
version: 1.2.15
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.14
4+
version: 1.2.15
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.14
4+
image: arangodb/kube-arangodb:1.2.15
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.14
9+
- image: arangodb/kube-arangodb:1.2.15
1010
name: reboot
1111
command: ["arangodb_operator", "reboot"]
1212
args:

0 commit comments

Comments
 (0)