Skip to content

Commit

Permalink
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -35,6 +35,7 @@
- (Feature) (ML) Pod & Container Config
- (Improvement) (ML) BatchJob status update
- (Feature) (ML) Multi DB Settings
- (Feature) (ML) Port adjustments

## [1.2.35](https://github.com/arangodb/kube-arangodb/tree/1.2.35) (2023-11-06)
- (Maintenance) Update go-driver to v1.6.0, update IsNotFound() checks
6 changes: 3 additions & 3 deletions pkg/apis/ml/v1alpha1/extension_spec_deployment.go
Original file line number Diff line number Diff line change
@@ -32,9 +32,9 @@ const (
ArangoMLExtensionSpecDeploymentComponentTraining = "training"
ArangoMLExtensionSpecDeploymentComponentProject = "project"

ArangoMLExtensionSpecDeploymentComponentPredictionDefaultPort = 16000
ArangoMLExtensionSpecDeploymentComponentTrainingDefaultPort = 16001
ArangoMLExtensionSpecDeploymentComponentProjectDefaultPort = 16002
ArangoMLExtensionSpecDeploymentComponentPredictionDefaultPort = 8501
ArangoMLExtensionSpecDeploymentComponentTrainingDefaultPort = 8502
ArangoMLExtensionSpecDeploymentComponentProjectDefaultPort = 8503
)

func GetArangoMLExtensionSpecDeploymentComponentDefaultPort(component string) int32 {

0 comments on commit 7affabd

Please sign in to comment.