Skip to content

Commit 592bb9b

Browse files
committed
Updated manifest to 0.3.1
1 parent b2215e4 commit 592bb9b

File tree

4 files changed

+69
-8
lines changed

4 files changed

+69
-8
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,19 @@ it is intended to be.
4141
```bash
4242
# The following will install the operator for `ArangoDeployment` &
4343
# `ArangoDeplomentReplication` resources.
44-
helm install https://github.com/arangodb/kube-arangodb/releases/download/0.3.0/kube-arangodb.tgz
44+
helm install https://github.com/arangodb/kube-arangodb/releases/download/0.3.1/kube-arangodb.tgz
4545
# To use `ArangoLocalStorage`, also run
46-
helm install https://github.com/arangodb/kube-arangodb/releases/download/0.3.0/kube-arangodb-storage.tgz
46+
helm install https://github.com/arangodb/kube-arangodb/releases/download/0.3.1/kube-arangodb-storage.tgz
4747
```
4848

4949
## Installation of latest release using Kubectl
5050

5151
```bash
52-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.3.0/manifests/arango-deployment.yaml
52+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.3.1/manifests/arango-deployment.yaml
5353
# To use `ArangoLocalStorage`, also run
54-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.3.0/manifests/arango-storage.yaml
54+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.3.1/manifests/arango-storage.yaml
5555
# To use `ArangoDeploymentReplication`, also run
56-
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.3.0/manifests/arango-deployment-replication.yaml
56+
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.3.1/manifests/arango-deployment-replication.yaml
5757
```
5858

5959
## Building

manifests/arango-deployment-replication.yaml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## deployment-replication/crd.yaml
2+
apiVersion: apiextensions.k8s.io/v1beta1
3+
kind: CustomResourceDefinition
4+
metadata:
5+
name: arangodeploymentreplications.replication.database.arangodb.com
6+
spec:
7+
group: replication.database.arangodb.com
8+
names:
9+
kind: ArangoDeploymentReplication
10+
listKind: ArangoDeploymentReplicationList
11+
plural: arangodeploymentreplications
12+
shortNames:
13+
- arangorepl
14+
singular: arangodeploymentreplication
15+
scope: Namespaced
16+
version: v1alpha
17+
18+
19+
---
20+
121
## deployment-replication/rbac.yaml
222

323

@@ -103,7 +123,7 @@ spec:
103123
containers:
104124
- name: operator
105125
imagePullPolicy: IfNotPresent
106-
image: arangodb/kube-arangodb@sha256:46053f371917445a52cbde69a9acc72bb065fa4a80f3fafa3fb98ab84911c570
126+
image: arangodb/kube-arangodb@sha256:d69506723c7af8dceacf130137ae542bc04dd076c0d211ca6a0ed0df9a64fe27
107127
args:
108128
- --operator.deployment-replication
109129
env:

manifests/arango-deployment.yaml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
## deployment/crd.yaml
2+
apiVersion: apiextensions.k8s.io/v1beta1
3+
kind: CustomResourceDefinition
4+
metadata:
5+
name: arangodeployments.database.arangodb.com
6+
spec:
7+
group: database.arangodb.com
8+
names:
9+
kind: ArangoDeployment
10+
listKind: ArangoDeploymentList
11+
plural: arangodeployments
12+
shortNames:
13+
- arangodb
14+
- arango
15+
singular: arangodeployment
16+
scope: Namespaced
17+
version: v1alpha
18+
19+
20+
---
21+
122
## deployment/rbac.yaml
223

324

@@ -103,7 +124,7 @@ spec:
103124
containers:
104125
- name: operator
105126
imagePullPolicy: IfNotPresent
106-
image: arangodb/kube-arangodb@sha256:46053f371917445a52cbde69a9acc72bb065fa4a80f3fafa3fb98ab84911c570
127+
image: arangodb/kube-arangodb@sha256:d69506723c7af8dceacf130137ae542bc04dd076c0d211ca6a0ed0df9a64fe27
107128
args:
108129
- --operator.deployment
109130
- --chaos.allowed=false

manifests/arango-storage.yaml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## storage/crd.yaml
2+
apiVersion: apiextensions.k8s.io/v1beta1
3+
kind: CustomResourceDefinition
4+
metadata:
5+
name: arangolocalstorages.storage.arangodb.com
6+
spec:
7+
group: storage.arangodb.com
8+
names:
9+
kind: ArangoLocalStorage
10+
listKind: ArangoLocalStorageList
11+
plural: arangolocalstorages
12+
shortNames:
13+
- arangostorage
14+
singular: arangolocalstorage
15+
scope: Cluster
16+
version: v1alpha
17+
18+
19+
---
20+
121
## storage/rbac.yaml
222

323

@@ -121,7 +141,7 @@ spec:
121141
containers:
122142
- name: operator
123143
imagePullPolicy: IfNotPresent
124-
image: arangodb/kube-arangodb@sha256:46053f371917445a52cbde69a9acc72bb065fa4a80f3fafa3fb98ab84911c570
144+
image: arangodb/kube-arangodb@sha256:d69506723c7af8dceacf130137ae542bc04dd076c0d211ca6a0ed0df9a64fe27
125145
args:
126146
- --operator.storage
127147
env:

0 commit comments

Comments
 (0)