Skip to content

Commit c463d0e

Browse files
authored
[Feature] Preparation for 1.3.0 Release (#1948)
1 parent ad5452d commit c463d0e

File tree

220 files changed

+8297
-2249
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

220 files changed

+8297
-2249
lines changed

.golangci.yaml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,12 +101,18 @@ linters-settings:
101101
pkg: github.com/arangodb/kube-arangodb/pkg/apis/ml/v1alpha1
102102
- alias: mlApi
103103
pkg: github.com/arangodb/kube-arangodb/pkg/apis/ml/v1beta1
104-
- alias: networkingApi
104+
- alias: networkingApiv1alpha1
105105
pkg: github.com/arangodb/kube-arangodb/pkg/apis/networking/v1alpha1
106-
- alias: platformApi
106+
- alias: networkingApi
107+
pkg: github.com/arangodb/kube-arangodb/pkg/apis/networking/v1beta1
108+
- alias: platformApiv1alpha1
107109
pkg: github.com/arangodb/kube-arangodb/pkg/apis/platform/v1alpha1
108-
- alias: platformAuthenticationApi
110+
- alias: platformApi
111+
pkg: github.com/arangodb/kube-arangodb/pkg/apis/platform/v1beta1
112+
- alias: platformAuthenticationApiv1alpha1
109113
pkg: github.com/arangodb/kube-arangodb/pkg/apis/platform/v1alpha1/authentication
114+
- alias: platformAuthenticationApi
115+
pkg: github.com/arangodb/kube-arangodb/pkg/apis/platform/v1beta1/authentication
110116
- alias: schedulerApiv1alpha1
111117
pkg: github.com/arangodb/kube-arangodb/pkg/apis/scheduler/v1alpha1
112118
- alias: schedulerContainerApiv1alpha1

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
- (Feature) OptionalReplace Upgrade Mode
1919
- (Feature) Update GoDriver
2020
- (Feature) Use Version Consts
21+
- (Maintenace) 1.3.x Release Preparation
2122

2223
## [1.2.50](https://github.com/arangodb/kube-arangodb/tree/1.2.50) (2025-07-04)
2324
- (Feature) (Platform) MetaV1 Integration Service

chart/kube-arangodb-arm64/crds/networking-route.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,28 @@ spec:
1212
scope: Namespaced
1313
versions:
1414
- name: v1alpha1
15+
schema:
16+
openAPIV3Schema:
17+
type: object
18+
x-kubernetes-preserve-unknown-fields: true
19+
served: true
20+
storage: false
21+
additionalPrinterColumns:
22+
- jsonPath: '.status.conditions[?(@.type=="Ready")].status'
23+
description: Defines if Route is valid
24+
name: Ready
25+
type: string
26+
- jsonPath: '.status.deployment.name'
27+
description: ArangoDeployment Name
28+
name: Deployment
29+
type: string
30+
- jsonPath: '.status.target.route.path'
31+
description: Route Path
32+
name: Route
33+
type: string
34+
subresources:
35+
status: {}
36+
- name: v1beta1
1537
schema:
1638
openAPIV3Schema:
1739
type: object

chart/kube-arangodb-arm64/crds/platform-chart.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,33 @@ spec:
1212
scope: Namespaced
1313
versions:
1414
- name: v1alpha1
15+
schema:
16+
openAPIV3Schema:
17+
type: object
18+
x-kubernetes-preserve-unknown-fields: true
19+
served: true
20+
storage: false
21+
additionalPrinterColumns:
22+
- jsonPath: '.status.conditions[?(@.type=="Ready")].status'
23+
description: Defines if Chart is valid
24+
name: Ready
25+
type: string
26+
- jsonPath: .status.info.details.name
27+
description: Defines the name of Chart
28+
name: ChartName
29+
type: string
30+
- jsonPath: .status.info.details.version
31+
description: Defines the version of Chart
32+
name: ChartVersion
33+
type: string
34+
- jsonPath: .status.info.checksum
35+
description: Defines the checksum of Chart
36+
name: ChartChecksum
37+
type: string
38+
priority: 1
39+
subresources:
40+
status: {}
41+
- name: v1beta1
1542
schema:
1643
openAPIV3Schema:
1744
type: object

chart/kube-arangodb-arm64/crds/platform-service.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,20 @@ spec:
1212
scope: Namespaced
1313
versions:
1414
- name: v1alpha1
15+
schema:
16+
openAPIV3Schema:
17+
type: object
18+
x-kubernetes-preserve-unknown-fields: true
19+
served: true
20+
storage: false
21+
additionalPrinterColumns:
22+
- jsonPath: '.status.conditions[?(@.type=="Ready")].status'
23+
description: Defines if Service is valid
24+
name: Ready
25+
type: string
26+
subresources:
27+
status: {}
28+
- name: v1beta1
1529
schema:
1630
openAPIV3Schema:
1731
type: object

chart/kube-arangodb-arm64/crds/platform-storage.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,20 @@ spec:
1212
scope: Namespaced
1313
versions:
1414
- name: v1alpha1
15+
schema:
16+
openAPIV3Schema:
17+
type: object
18+
x-kubernetes-preserve-unknown-fields: true
19+
served: true
20+
storage: false
21+
additionalPrinterColumns:
22+
- jsonPath: '.status.conditions[?(@.type=="Ready")].status'
23+
description: Defines if Storage is valid
24+
name: Ready
25+
type: string
26+
subresources:
27+
status: {}
28+
- name: v1beta1
1529
schema:
1630
openAPIV3Schema:
1731
type: object

chart/kube-arangodb-enterprise-arm64/crds/networking-route.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,28 @@ spec:
1212
scope: Namespaced
1313
versions:
1414
- name: v1alpha1
15+
schema:
16+
openAPIV3Schema:
17+
type: object
18+
x-kubernetes-preserve-unknown-fields: true
19+
served: true
20+
storage: false
21+
additionalPrinterColumns:
22+
- jsonPath: '.status.conditions[?(@.type=="Ready")].status'
23+
description: Defines if Route is valid
24+
name: Ready
25+
type: string
26+
- jsonPath: '.status.deployment.name'
27+
description: ArangoDeployment Name
28+
name: Deployment
29+
type: string
30+
- jsonPath: '.status.target.route.path'
31+
description: Route Path
32+
name: Route
33+
type: string
34+
subresources:
35+
status: {}
36+
- name: v1beta1
1537
schema:
1638
openAPIV3Schema:
1739
type: object

chart/kube-arangodb-enterprise-arm64/crds/platform-chart.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,33 @@ spec:
1212
scope: Namespaced
1313
versions:
1414
- name: v1alpha1
15+
schema:
16+
openAPIV3Schema:
17+
type: object
18+
x-kubernetes-preserve-unknown-fields: true
19+
served: true
20+
storage: false
21+
additionalPrinterColumns:
22+
- jsonPath: '.status.conditions[?(@.type=="Ready")].status'
23+
description: Defines if Chart is valid
24+
name: Ready
25+
type: string
26+
- jsonPath: .status.info.details.name
27+
description: Defines the name of Chart
28+
name: ChartName
29+
type: string
30+
- jsonPath: .status.info.details.version
31+
description: Defines the version of Chart
32+
name: ChartVersion
33+
type: string
34+
- jsonPath: .status.info.checksum
35+
description: Defines the checksum of Chart
36+
name: ChartChecksum
37+
type: string
38+
priority: 1
39+
subresources:
40+
status: {}
41+
- name: v1beta1
1542
schema:
1643
openAPIV3Schema:
1744
type: object

chart/kube-arangodb-enterprise-arm64/crds/platform-service.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,20 @@ spec:
1212
scope: Namespaced
1313
versions:
1414
- name: v1alpha1
15+
schema:
16+
openAPIV3Schema:
17+
type: object
18+
x-kubernetes-preserve-unknown-fields: true
19+
served: true
20+
storage: false
21+
additionalPrinterColumns:
22+
- jsonPath: '.status.conditions[?(@.type=="Ready")].status'
23+
description: Defines if Service is valid
24+
name: Ready
25+
type: string
26+
subresources:
27+
status: {}
28+
- name: v1beta1
1529
schema:
1630
openAPIV3Schema:
1731
type: object

chart/kube-arangodb-enterprise-arm64/crds/platform-storage.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,20 @@ spec:
1212
scope: Namespaced
1313
versions:
1414
- name: v1alpha1
15+
schema:
16+
openAPIV3Schema:
17+
type: object
18+
x-kubernetes-preserve-unknown-fields: true
19+
served: true
20+
storage: false
21+
additionalPrinterColumns:
22+
- jsonPath: '.status.conditions[?(@.type=="Ready")].status'
23+
description: Defines if Storage is valid
24+
name: Ready
25+
type: string
26+
subresources:
27+
status: {}
28+
- name: v1beta1
1529
schema:
1630
openAPIV3Schema:
1731
type: object

0 commit comments

Comments
 (0)