Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/arango-local-storage.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: "storage.arangodb.com/v1alpha"
apiVersion: "storage.arangodb.com/v1"
kind: "ArangoLocalStorage"
metadata:
name: "arangodb-local-storage"
Expand Down
4 changes: 2 additions & 2 deletions examples/cluster1-with-sync.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
apiVersion: "database.arangodb.com/v1alpha"
apiVersion: "database.arangodb.com/v1"
kind: "ArangoDeployment"
metadata:
name: "cluster1-with-sync"
spec:
mode: Cluster
image: arangodb/arangodb:3.6.1
image: 'arangodb/arangodb:3.7.10'
tls:
altNames: ["kube-01", "kube-02", "kube-03"]
sync:
Expand Down
4 changes: 2 additions & 2 deletions examples/cluster2-with-sync.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
apiVersion: "database.arangodb.com/v1alpha"
apiVersion: "database.arangodb.com/v1"
kind: "ArangoDeployment"
metadata:
name: "cluster2-with-sync"
spec:
mode: Cluster
image: arangodb/arangodb:3.6.1
image: 'arangodb/arangodb:3.7.10'
tls:
altNames: ["kube-01", "kube-02", "kube-03"]
sync:
Expand Down
17 changes: 17 additions & 0 deletions examples/production-cluster-with-metrics.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
apiVersion: "database.arangodb.com/v1"
kind: "ArangoDeployment"
metadata:
name: "production-cluster"
spec:
metrics:
mode: sidecar
enabled: true
image: 'arangodb/arangodb-exporter:0.1.7'
tls: false
annotations:
prometheus.io/scrape: 'true'
prometheus.io/port: '9101'
prometheus.io/scrape_interval: '5s'
mode: Cluster
image: arangodb/arangodb:3.7.10'
environment: Production
4 changes: 2 additions & 2 deletions examples/production-cluster.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: "database.arangodb.com/v1alpha"
apiVersion: "database.arangodb.com/v1"
kind: "ArangoDeployment"
metadata:
name: "production-cluster"
spec:
mode: Cluster
image: arangodb/arangodb:3.6.1
image: 'arangodb/arangodb:3.7.10'
environment: Production
2 changes: 1 addition & 1 deletion examples/reboot-pod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ spec:
command: ["arangodb_operator", "reboot"]
args:
- --deployment-name=my-arangodb-cluster
- --image-name=arangodb/enterprise:3.6.1
- --image-name=arangodb/enterprise:3.7.10
- --license-secret-name=arangodb-license-key
- --coordinators=3
- pvc-9aa241f7-df94-11e9-b74c-42010aac0044
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-cluster-no-tls.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: "database.arangodb.com/v1alpha"
apiVersion: "database.arangodb.com/v1"
kind: "ArangoDeployment"
metadata:
name: "example-simple-cluster-no-tls"
Expand Down
16 changes: 16 additions & 0 deletions examples/simple-cluster-with-metrics.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
apiVersion: "database.arangodb.com/v1"
kind: "ArangoDeployment"
metadata:
name: "example-simple-cluster"
spec:
metrics:
mode: sidecar
enabled: true
image: 'arangodb/arangodb-exporter:0.1.7'
tls: false
annotations:
prometheus.io/scrape: 'true'
prometheus.io/port: '9101'
prometheus.io/scrape_interval: '5s'
mode: Cluster
image: 'arangodb/arangodb:3.7.10'
4 changes: 2 additions & 2 deletions examples/simple-cluster.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: "database.arangodb.com/v1alpha"
apiVersion: "database.arangodb.com/v1"
kind: "ArangoDeployment"
metadata:
name: "example-simple-cluster"
spec:
mode: Cluster
image: arangodb/arangodb:3.6.1
image: 'arangodb/arangodb:3.7.10'
2 changes: 1 addition & 1 deletion examples/single-server-no-auth.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: "database.arangodb.com/v1alpha"
apiVersion: "database.arangodb.com/v1"
kind: "ArangoDeployment"
metadata:
name: "example-simple-single-no-auth"
Expand Down
4 changes: 2 additions & 2 deletions examples/single-server.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: "database.arangodb.com/v1alpha"
apiVersion: "database.arangodb.com/v1"
kind: "ArangoDeployment"
metadata:
name: "example-simple-single"
spec:
mode: Single
image: arangodb/arangodb:3.6.1
image: 'arangodb/arangodb:3.7.10'