Skip to content

Commit

Permalink
Updated to 1.2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
ajanikow committed Apr 27, 2022
1 parent e48b63f commit 646314c
Show file tree
Hide file tree
Showing 25 changed files with 265 additions and 279 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,12 +114,12 @@ for details.
## Installation of latest release using Kubectl

```bash
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.9/manifests/arango-crd.yaml
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.9/manifests/arango-deployment.yaml
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.10/manifests/arango-crd.yaml
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.10/manifests/arango-deployment.yaml
# To use `ArangoLocalStorage`, also run
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.9/manifests/arango-storage.yaml
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.10/manifests/arango-storage.yaml
# To use `ArangoDeploymentReplication`, also run
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.9/manifests/arango-deployment-replication.yaml
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.10/manifests/arango-deployment-replication.yaml
```

This procedure can also be used for upgrades and will not harm any
Expand Down Expand Up @@ -151,12 +151,12 @@ upgrades.

```bash
# The following will install the custom resources required by the operators.
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.9/kube-arangodb-crd-1.2.9.tgz
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.10/kube-arangodb-crd-1.2.10.tgz
# The following will install the operator for `ArangoDeployment` &
# `ArangoDeploymentReplication` resources.
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.9/kube-arangodb-1.2.9.tgz
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.10/kube-arangodb-1.2.10.tgz
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.9/kube-arangodb-1.2.9.tgz --set "operator.features.storage=true"
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.10/kube-arangodb-1.2.10.tgz --set "operator.features.storage=true"
```

## Upgrading the operator using Helm
Expand Down Expand Up @@ -191,9 +191,9 @@ with `helm install` as normal:
```bash
# The following will install the operator for `ArangoDeployment` &
# `ArangoDeploymentReplication` resources.
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.9/kube-arangodb-1.2.9.tgz
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.10/kube-arangodb-1.2.10.tgz
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.9/kube-arangodb-1.2.9.tgz --set "operator.features.storage=true"
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.10/kube-arangodb-1.2.10.tgz --set "operator.features.storage=true"
```

## Building
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.10-preview-2+git
1.2.10
2 changes: 1 addition & 1 deletion chart/kube-arangodb-crd/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---

name: kube-arangodb-crd
version: 1.2.9
version: 1.2.10

description: "ArangoDB Kubernetes Custom Resource Definitions"
tillerVersion: ">2.7"
Expand Down
2 changes: 1 addition & 1 deletion chart/kube-arangodb-test/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---

name: kube-arangodb-test
version: 1.2.9
version: 1.2.10

description: "ArangoDB Kubernetes Test Access"
2 changes: 1 addition & 1 deletion chart/kube-arangodb/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---

name: kube-arangodb
version: 1.2.9
version: 1.2.10

description: "ArangoDB Kubernetes Operator"
tillerVersion: ">2.7"
Expand Down
2 changes: 1 addition & 1 deletion chart/kube-arangodb/values.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---

operator:
image: arangodb/kube-arangodb:1.2.9
image: arangodb/kube-arangodb:1.2.10
imagePullPolicy: IfNotPresent
imagePullSecrets: []

Expand Down
2 changes: 1 addition & 1 deletion examples/reboot-pod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ spec:
restartPolicy: Never
serviceAccountName: arango-deployment-operator-reboot
containers:
- image: arangodb/kube-arangodb:1.2.9
- image: arangodb/kube-arangodb:1.2.10
name: reboot
command: ["arangodb_operator", "reboot"]
args:
Expand Down
Loading

0 comments on commit 646314c

Please sign in to comment.