File tree Expand file tree Collapse file tree 8 files changed +17
-12
lines changed
kube-arangodb-enterprise-arm64 Expand file tree Collapse file tree 8 files changed +17
-12
lines changed Original file line number Diff line number Diff line change 29
29
- (Feature) (Gateway) Dynamic Configuration
30
30
- (Feature) DebugPackage ArangoRoutes
31
31
- (Feature) (Scheduler) Add Status Conditions
32
+ - (Bugfix) Versioning Alignment
32
33
33
34
## [ 1.2.42] ( https://github.com/arangodb/kube-arangodb/tree/1.2.42 ) (2024-07-23)
34
35
- (Maintenance) Go 1.22.4 & Kubernetes 1.29.6 libraries
Original file line number Diff line number Diff line change @@ -747,7 +747,10 @@ patch-release: patch-readme patch-examples patch-chart
747
747
748
748
.PHONY : patch-chart
749
749
patch-chart :
750
- $(ROOTDIR ) /scripts/patch_chart.sh " $( VERSION_MAJOR_MINOR_PATCH) " " $( OPERATORIMAGE) "
750
+ $(ROOTDIR ) /scripts/patch_chart.sh $(VERSION_MAJOR_MINOR_PATCH )
751
+
752
+ .PHONY : patch
753
+ patch : patch-chart patch-release patch-examples patch-readme
751
754
752
755
.PHONY : tidy
753
756
tidy :
Original file line number Diff line number Diff line change @@ -325,9 +325,9 @@ helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/
325
325
##### Enterprise Edition
326
326
``` bash
327
327
# The following will install the operator and basic CRDs resources.
328
- helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.41 /kube-arangodb-enterprise-1.2.41 .tgz
328
+ helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.42 /kube-arangodb-enterprise-1.2.42 .tgz
329
329
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
330
- helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.41 /kube-arangodb-enterprise-1.2.41 .tgz --set " operator.features.storage=true"
330
+ helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.42 /kube-arangodb-enterprise-1.2.42 .tgz --set " operator.features.storage=true"
331
331
```
332
332
333
333
### Upgrading the operator using Helm
@@ -364,9 +364,9 @@ helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/
364
364
##### Enterprise Edition
365
365
``` bash
366
366
# The following will install the operator and basic CRDs resources.
367
- helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.41 /kube-arangodb-enterprise-1.2.41 .tgz
367
+ helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.42 /kube-arangodb-enterprise-1.2.42 .tgz
368
368
# To use `ArangoLocalStorage`, set field `operator.features.storage` to true
369
- helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.41 /kube-arangodb-enterprise-1.2.41 .tgz --set " operator.features.storage=true"
369
+ helm install --generate-name https://github.com/arangodb/kube-arangodb/releases/download/1.2.42 /kube-arangodb-enterprise-1.2.42 .tgz --set " operator.features.storage=true"
370
370
```
371
371
372
372
## Building
Original file line number Diff line number Diff line change 1
1
operator :
2
- image : arangodb/kube-arangodb:1.2.42
2
+ image : arangodb/kube-arangodb-enterprise :1.2.42
3
3
imagePullPolicy : IfNotPresent
4
4
imagePullSecrets : []
5
5
scope : legacy
6
6
architectures :
7
- - amd64
7
+ - arm64
8
8
debug : false
9
9
args : []
10
10
service :
Original file line number Diff line number Diff line change 1
1
operator :
2
- image : arangodb/kube-arangodb:1.2.42
2
+ image : arangodb/kube-arangodb-enterprise :1.2.42
3
3
imagePullPolicy : IfNotPresent
4
4
imagePullSecrets : []
5
5
scope : legacy
6
6
architectures :
7
- - arm64
7
+ - amd64
8
8
debug : false
9
9
args : []
10
10
service :
Original file line number Diff line number Diff line change 4
4
# version.
5
5
6
6
VERSION=$1
7
- IMAGE=$2
8
7
9
8
if [ -z $VERSION ]; then
10
9
echo " Specify a version argument"
@@ -20,6 +19,7 @@ function replaceInFile {
20
19
for f in kube-arangodb kube-arangodb-enterprise kube-arangodb-arm64 kube-arangodb-enterprise-arm64 kube-arangodb-crd; do
21
20
replaceInFile " s@^version: .*\$ @version: ${VERSION} @g" " chart/${f} /Chart.yaml"
22
21
if [[ -f " chart/${f} /values.yaml" ]]; then
23
- replaceInFile " s@^ image: .*\$ @ image: ${IMAGE} @g" " chart/${f} /values.yaml"
22
+ replaceInFile " s@^ image: arangodb/kube-arangodb:[[:digit:]].*\$ @ image: arangodb/kube-arangodb:${VERSION} @g" " chart/${f} /values.yaml"
23
+ replaceInFile " s@^ image: arangodb/kube-arangodb-enterprise:[[:digit:]].*\$ @ image: arangodb/kube-arangodb-enterprise:${VERSION} @g" " chart/${f} /values.yaml"
24
24
fi
25
25
done
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ if [ -z $VERSION ]; then
9
9
exit 1
10
10
fi
11
11
12
- ARANGODB_VERSION=3.10.8
12
+ ARANGODB_VERSION=3.12.2
13
13
14
14
function replaceInFile {
15
15
local EXPR=$1
Original file line number Diff line number Diff line change @@ -35,3 +35,4 @@ replaceInFile "s@^kubectl apply -f https://raw.githubusercontent.com/arangodb/ku
35
35
replaceInFile " s@https://github\.com/arangodb/kube-arangodb/releases/download/.*/kube-arangodb-crd-[[:digit:]].*\.tgz@https://github.com/arangodb/kube-arangodb/releases/download/${VERSION} /kube-arangodb-crd-${VERSION} .tgz@g" ${f}
36
36
replaceInFile " s@https://github\.com/arangodb/kube-arangodb/releases/download/.*/kube-arangodb-enterprise-[[:digit:]].*\.tgz@https://github.com/arangodb/kube-arangodb/releases/download/${VERSION} /kube-arangodb-enterprise-${VERSION} .tgz@g" ${f}
37
37
replaceInFile " s@https://github\.com/arangodb/kube-arangodb/releases/download/.*/kube-arangodb-[[:digit:]].*\.tgz@https://github.com/arangodb/kube-arangodb/releases/download/${VERSION} /kube-arangodb-${VERSION} .tgz@g" ${f}
38
+ replaceInFile " s@https://github\.com/arangodb/kube-arangodb/releases/download/.*/kube-arangodb-enterprise-[[:digit:]].*\.tgz@https://github.com/arangodb/kube-arangodb/releases/download/${VERSION} /kube-arangodb-enterprise-${VERSION} .tgz@g" ${f}
You can’t perform that action at this time.
0 commit comments