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/cluster1-with-sync.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
name: "cluster1-with-sync"
spec:
mode: Cluster
image: 'arangodb/arangodb:3.7.10'
image: 'arangodb/arangodb:3.10.6'
tls:
altNames: ["kube-01", "kube-02", "kube-03"]
sync:
Expand Down
2 changes: 1 addition & 1 deletion examples/cluster2-with-sync.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
name: "cluster2-with-sync"
spec:
mode: Cluster
image: 'arangodb/arangodb:3.7.10'
image: 'arangodb/arangodb:3.10.6'
tls:
altNames: ["kube-01", "kube-02", "kube-03"]
sync:
Expand Down
2 changes: 1 addition & 1 deletion examples/production-cluster-with-metrics.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ spec:
prometheus.io/port: '9101'
prometheus.io/scrape_interval: '5s'
mode: Cluster
image: 'arangodb/arangodb:3.7.10'
image: 'arangodb/arangodb:3.10.6'
environment: Production
2 changes: 1 addition & 1 deletion examples/production-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ metadata:
name: "production-cluster"
spec:
mode: Cluster
image: 'arangodb/arangodb:3.7.10'
image: 'arangodb/arangodb:3.10.6'
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.7.10
- --image-name=arangodb/enterprise:3.10.6
- --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-with-metrics.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ spec:
prometheus.io/port: '9101'
prometheus.io/scrape_interval: '5s'
mode: Cluster
image: 'arangodb/arangodb:3.7.10'
image: 'arangodb/arangodb:3.10.6'
2 changes: 1 addition & 1 deletion examples/simple-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ metadata:
name: "example-simple-cluster"
spec:
mode: Cluster
image: 'arangodb/arangodb:3.7.10'
image: 'arangodb/arangodb:3.10.6'
2 changes: 1 addition & 1 deletion examples/single-server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ metadata:
name: "example-simple-single"
spec:
mode: Single
image: 'arangodb/arangodb:3.7.10'
image: 'arangodb/arangodb:3.10.6'
2 changes: 1 addition & 1 deletion scripts/patch_examples.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if [ -z $VERSION ]; then
exit 1
fi

ARANGODB_VERSION=3.7.10
ARANGODB_VERSION=3.10.6

function replaceInFile {
local EXPR=$1
Expand Down