Skip to content

Commit 8c980a4

Browse files
committed
Updated manifest to 0.3.11
1 parent 9c441d8 commit 8c980a4

File tree

5 files changed

+78
-74
lines changed

5 files changed

+78
-74
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ upgrade.
5353
## Installation of latest release using Kubectl
5454

5555
```bash
56-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.3.10/manifests/arango-crd.yaml
57-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.3.10/manifests/arango-deployment.yaml
56+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.3.11/manifests/arango-crd.yaml
57+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.3.11/manifests/arango-deployment.yaml
5858
# To use `ArangoLocalStorage`, also run
59-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.3.10/manifests/arango-storage.yaml
59+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.3.11/manifests/arango-storage.yaml
6060
# To use `ArangoDeploymentReplication`, also run
61-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.3.10/manifests/arango-deployment-replication.yaml
61+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.3.11/manifests/arango-deployment-replication.yaml
6262
```
6363

6464
This procedure can also be used for upgrades and will not harm any
@@ -71,12 +71,12 @@ upgrades.
7171

7272
```bash
7373
# The following will install the custom resources required by the operators.
74-
helm install https://github.com/arangodb/kube-arangodb/releases/download/0.3.10/kube-arangodb-crd.tgz
74+
helm install https://github.com/arangodb/kube-arangodb/releases/download/0.3.11/kube-arangodb-crd.tgz
7575
# The following will install the operator for `ArangoDeployment` &
7676
# `ArangoDeploymentReplication` resources.
77-
helm install https://github.com/arangodb/kube-arangodb/releases/download/0.3.10/kube-arangodb.tgz
77+
helm install https://github.com/arangodb/kube-arangodb/releases/download/0.3.11/kube-arangodb.tgz
7878
# To use `ArangoLocalStorage`, also run
79-
helm install https://github.com/arangodb/kube-arangodb/releases/download/0.3.10/kube-arangodb-storage.tgz
79+
helm install https://github.com/arangodb/kube-arangodb/releases/download/0.3.11/kube-arangodb-storage.tgz
8080
```
8181

8282
## Upgrading the operator using Helm
@@ -113,9 +113,9 @@ with `helm install` as normal:
113113
```bash
114114
# The following will install the operator for `ArangoDeployment` &
115115
# `ArangoDeploymentReplication` resources.
116-
helm install https://github.com/arangodb/kube-arangodb/releases/download/0.3.10/kube-arangodb.tgz
116+
helm install https://github.com/arangodb/kube-arangodb/releases/download/0.3.11/kube-arangodb.tgz
117117
# To use `ArangoLocalStorage`, also run
118-
helm install https://github.com/arangodb/kube-arangodb/releases/download/0.3.10/kube-arangodb-storage.tgz
118+
helm install https://github.com/arangodb/kube-arangodb/releases/download/0.3.11/kube-arangodb-storage.tgz
119119
```
120120

121121
## Building

dashboard/assets.go

Lines changed: 61 additions & 61 deletions
Large diffs are not rendered by default.

manifests/arango-deployment-replication.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ spec:
103103
containers:
104104
- name: operator
105105
imagePullPolicy: IfNotPresent
106-
image: arangodb/kube-arangodb@sha256:bc17d77ca6c8f134a065db4f5dcbc07b84feb74ae10dd6666e822334f9ff9680
106+
image: arangodb/kube-arangodb@sha256:3e695cc42f62a680f5460a320aee2518fe7a3bfb0eb6f3fc248badaa5ed58665
107107
args:
108108
- --operator.deployment-replication
109109
env:

manifests/arango-deployment.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ rules:
2525
verbs: ["*"]
2626
- apiGroups: ["apiextensions.k8s.io"]
2727
resources: ["customresourcedefinitions"]
28-
verbs: ["get"]
28+
verbs: ["get", "list", "watch"]
2929
- apiGroups: [""]
3030
resources: ["pods", "services", "endpoints", "persistentvolumeclaims", "events", "secrets"]
3131
verbs: ["*"]
@@ -41,6 +41,10 @@ rules:
4141
- apiGroups: ["storage.k8s.io"]
4242
resources: ["storageclasses"]
4343
verbs: ["get", "list"]
44+
- apiGroups: ["monitoring.coreos.com"]
45+
resources: ["servicemonitors"]
46+
verbs: ["get", "create", "delete"]
47+
4448

4549
---
4650

@@ -106,7 +110,7 @@ spec:
106110
containers:
107111
- name: operator
108112
imagePullPolicy: IfNotPresent
109-
image: arangodb/kube-arangodb@sha256:bc17d77ca6c8f134a065db4f5dcbc07b84feb74ae10dd6666e822334f9ff9680
113+
image: arangodb/kube-arangodb@sha256:3e695cc42f62a680f5460a320aee2518fe7a3bfb0eb6f3fc248badaa5ed58665
110114
args:
111115
- --operator.deployment
112116
- --chaos.allowed=false

manifests/arango-storage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ spec:
141141
containers:
142142
- name: operator
143143
imagePullPolicy: IfNotPresent
144-
image: arangodb/kube-arangodb@sha256:bc17d77ca6c8f134a065db4f5dcbc07b84feb74ae10dd6666e822334f9ff9680
144+
image: arangodb/kube-arangodb@sha256:3e695cc42f62a680f5460a320aee2518fe7a3bfb0eb6f3fc248badaa5ed58665
145145
args:
146146
- --operator.storage
147147
env:

0 commit comments

Comments
 (0)