Skip to content

Commit

Permalink
Release 1.1.5-1
Browse files Browse the repository at this point in the history
  • Loading branch information
ajanikow committed Apr 6, 2021
1 parent 1e6f7df commit c229408
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,12 @@ for details.
## Installation of latest release using Kubectl

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

This procedure can also be used for upgrades and will not harm any
Expand Down Expand Up @@ -132,12 +132,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.1.5/kube-arangodb-crd-1.1.5.tgz
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.1.5-1/kube-arangodb-crd-1.1.5-1.tgz
# The following will install the operator for `ArangoDeployment` &
# `ArangoDeploymentReplication` resources.
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.1.5/kube-arangodb-1.1.5.tgz
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.1.5-1/kube-arangodb-1.1.5-1.tgz
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.1.5/kube-arangodb-1.1.5.tgz --set "operator.features.storage=true"
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.1.5-1/kube-arangodb-1.1.5-1.tgz --set "operator.features.storage=true"
```

## Upgrading the operator using Helm
Expand Down Expand Up @@ -172,9 +172,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.1.5/kube-arangodb-1.1.5.tgz
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.1.5-1/kube-arangodb-1.1.5-1.tgz
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.1.5/kube-arangodb-1.1.5.tgz --set "operator.features.storage=true"
helm install https://github.com/arangodb/kube-arangodb/releases/download/1.1.5-1/kube-arangodb-1.1.5-1.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.1.5
1.1.5-1
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.1.5
version: 1.1.5-1

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.1.5
version: 1.1.5-1

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.1.5
version: 1.1.5-1

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

0 comments on commit c229408

Please sign in to comment.