Skip to content

Commit d6efb15

Browse files
Eyal-Danieliroyischossalxtkr77Alex Tokerdanielperezz
authored
Cherry Pick from Development (#964)
* update requirements.txt with stable mlrun version (#960) * [Agent Deployer] Replace TDEngine with TimescaleDB for CE model monitoring (#961) Replace DatastoreProfileTDEngine with DatastoreProfilePostgreSQL for Community Edition deployments. TimescaleDB uses PostgreSQL protocol. - Add conditional import: try DatastoreProfilePostgreSQL first, fallback to DatastoreProfileTDEngine for older mlrun versions - Configure TimescaleDB connection for CE mode (when available): - Host: timescaledb.{namespace}.svc.cluster.local - Port: 5432 - Credentials: postgres/postgres - Database: postgres - Maintain backwards compatibility with older mlrun versions using TDEngine Reference: ML-11628 Co-authored-by: Alex Toker <alext@mckinsey.com> * Add kind to step and rename the `utils` category to `utilities` (#962) * replace utils with utilities * add kind to verify_schema * add kind to the step template --------- Co-authored-by: Roy Schossberger <85231212+royischoss@users.noreply.github.com> Co-authored-by: alxtkr77 <3098237+alxtkr77@users.noreply.github.com> Co-authored-by: Alex Toker <alext@mckinsey.com> Co-authored-by: Daniel Perez <100069700+danielperezz@users.noreply.github.com>
1 parent 9247e44 commit d6efb15

File tree

18 files changed

+45
-23
lines changed

18 files changed

+45
-23
lines changed

cli/utils/step_item_template.yaml.j2

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@ spec:
1414
filename: {{ filename|default('') }} {# Implementation file #}
1515
image: mlrun/mlrun {# Base image name #}
1616
requirements: [] {# List of Pythonic library requirements #}
17+
kind: '' {# Step kind #}
1718
version: 1.0.0 {# Step version, should follow standard semantic versioning schema #}

functions/src/arc_to_parquet/function.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ spec:
9494
disable_auto_mount: false
9595
metadata:
9696
categories:
97-
- utils
97+
- utilities
9898
name: arc-to-parquet
9999
tag: ''
100100
verbose: false

functions/src/arc_to_parquet/item.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v1
22
categories:
3-
- utils
3+
- utilities
44
description: retrieve remote archive, open and save as parquet
55
doc: ''
66
example: arc_to_parquet.ipynb

functions/src/azureml_utils/function.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,6 @@ kind: job
242242
metadata:
243243
categories:
244244
- model-serving
245-
- utils
245+
- utilities
246246
tag: ''
247247
name: azureml-utils

functions/src/azureml_utils/item.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
categories:
33
- model-serving
4-
- utils
4+
- utilities
55
description: Azure AutoML integration in MLRun, including utils functions for training
66
models on Azure AutoML platfrom.
77
doc: ''

functions/src/github_utils/function.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
labels:
88
author: Iguazio
99
categories:
10-
- utils
10+
- utilities
1111
spec:
1212
command: ''
1313
args: []

functions/src/github_utils/item.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v1
22
categories:
3-
- utils
3+
- utilities
44
description: add comments to github pull request
55
doc: ''
66
example: github_utils.ipynb

functions/src/mlflow_utils/function.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ spec:
2626
metadata:
2727
categories:
2828
- model-serving
29-
- utils
29+
- utilities
3030
name: mlflow-utils
3131
tag: ''
3232
kind: serving

functions/src/mlflow_utils/item.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
categories:
33
- model-serving
4-
- utils
4+
- utilities
55
description: Mlflow model server, and additional utils.
66
doc: ''
77
example: mlflow_utils.ipynb

functions/src/onnx_utils/function.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
kind: job
22
metadata:
33
categories:
4-
- utils
4+
- utilities
55
- deep-learning
66
name: onnx-utils
77
tag: ''

0 commit comments

Comments
 (0)