Skip to content

Commit

Permalink
Updated to 1.2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
ajanikow committed Jan 17, 2022
1 parent 5790871 commit 57b4111
Show file tree
Hide file tree
Showing 25 changed files with 2,503 additions and 155 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.6/manifests/arango-crd.yaml
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.6/manifests/arango-deployment.yaml
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.7/manifests/arango-crd.yaml
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.7/manifests/arango-deployment.yaml
# To use `ArangoLocalStorage`, also run
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.6/manifests/arango-storage.yaml
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.7/manifests/arango-storage.yaml
# To use `ArangoDeploymentReplication`, also run
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.6/manifests/arango-deployment-replication.yaml
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/1.2.7/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.6/kube-arangodb-crd-1.2.6.tgz
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.7/kube-arangodb-crd-1.2.7.tgz
# The following will install the operator for `ArangoDeployment` &
# `ArangoDeploymentReplication` resources.
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.6/kube-arangodb-1.2.6.tgz
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.7/kube-arangodb-1.2.7.tgz
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.6/kube-arangodb-1.2.6.tgz --set "operator.features.storage=true"
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.7/kube-arangodb-1.2.7.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.6/kube-arangodb-1.2.6.tgz
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.7/kube-arangodb-1.2.7.tgz
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.6/kube-arangodb-1.2.6.tgz --set "operator.features.storage=true"
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.2.7/kube-arangodb-1.2.7.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.7-preview-3+git
1.2.7
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.6
version: 1.2.7

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.6
version: 1.2.7

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.6
version: 1.2.7

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.6
image: arangodb/kube-arangodb:1.2.7
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.6
- image: arangodb/kube-arangodb:1.2.7
name: reboot
command: ["arangodb_operator", "reboot"]
args:
Expand Down
Loading

0 comments on commit 57b4111

Please sign in to comment.