From 089acf2d7c4014baf55181b50d020f0c915e5ef7 Mon Sep 17 00:00:00 2001 From: Shide Foo Date: Tue, 5 Dec 2023 16:07:59 +0800 Subject: [PATCH 01/12] Modify caraml components to accept annotations --- charts/merlin/README.md | 1 + charts/merlin/ci/ci-values.yaml | 2 ++ charts/merlin/templates/merlin-deployment.yaml | 4 ++++ charts/merlin/values.yaml | 3 +++ charts/mlp/Chart.yaml | 2 +- charts/mlp/README.md | 5 ++--- charts/mlp/templates/deployment.yaml | 4 ++++ charts/mlp/values.yaml | 3 +++ charts/turing/README.md | 1 + charts/turing/templates/turing-deployment.yaml | 4 ++++ charts/turing/values.yaml | 1 + charts/xp-management/Chart.yaml | 2 +- charts/xp-management/README.md | 3 ++- charts/xp-management/ci/ci-values.yaml | 2 ++ charts/xp-management/templates/deployment.yaml | 4 ++++ charts/xp-management/values.yaml | 4 ++++ charts/xp-treatment/Chart.yaml | 2 +- charts/xp-treatment/README.md | 2 +- charts/xp-treatment/ci/ci-values.yaml | 2 ++ charts/xp-treatment/templates/deployment.yaml | 4 ++++ 20 files changed, 47 insertions(+), 8 deletions(-) diff --git a/charts/merlin/README.md b/charts/merlin/README.md index 72094b4e..26b7b69c 100644 --- a/charts/merlin/README.md +++ b/charts/merlin/README.md @@ -162,6 +162,7 @@ The following table lists the configurable parameters of the Merlin chart and th | config.StandardTransformerConfig.ModelServerConnCount | int | `10` | | | config.StandardTransformerConfig.SimulationFeast.FeastBigtableURL | string | `"online-serving-bt.feast.dev"` | | | config.StandardTransformerConfig.SimulationFeast.FeastRedisURL | string | `"online-serving-redis.feast.dev"` | | +| deployment.annotations | object | `{}` | | | deployment.extraArgs | list | `[]` | List of string containing additional Merlin API server arguments. For example, multiple "-config" can be specified to use multiple config files | | deployment.extraContainers | list | `[]` | List of sidecar containers to attach to the Pod. For example, you can attach sidecar container that forward logs or dynamically update some configuration files. | | deployment.extraEnvs | list | `[]` | List of extra environment variables to add to Merlin API server container | diff --git a/charts/merlin/ci/ci-values.yaml b/charts/merlin/ci/ci-values.yaml index 6dc1a3e1..9cc88654 100644 --- a/charts/merlin/ci/ci-values.yaml +++ b/charts/merlin/ci/ci-values.yaml @@ -9,6 +9,8 @@ global: uiPrefix: "/" uiServiceName: mlp deployment: + annotations: + test: "123" replicaCount: "1" resources: requests: diff --git a/charts/merlin/templates/merlin-deployment.yaml b/charts/merlin/templates/merlin-deployment.yaml index 471f8d89..93e27e78 100644 --- a/charts/merlin/templates/merlin-deployment.yaml +++ b/charts/merlin/templates/merlin-deployment.yaml @@ -14,6 +14,10 @@ metadata: {{- if .Values.deployment.labels }} {{- toYaml .Values.deployment.labels | nindent 4 }} {{- end }} + {{- if .Values.deployment.annotations }} + annotations: + {{ toYaml .Values.deployment.annotations | indent 2 }} + {{- end }} spec: replicas: {{ .Values.deployment.replicaCount }} selector: diff --git a/charts/merlin/values.yaml b/charts/merlin/values.yaml index 1672a390..2a48a302 100644 --- a/charts/merlin/values.yaml +++ b/charts/merlin/values.yaml @@ -20,6 +20,9 @@ deployment: replicaCount: "2" # Additional labels to apply to the deployment labels: {} + + # Additional annotations to apply + annotations: {} # Additional labels to apply to the merlin pods podLabels: {} resources: diff --git a/charts/mlp/Chart.yaml b/charts/mlp/Chart.yaml index d503c57f..7594e8db 100644 --- a/charts/mlp/Chart.yaml +++ b/charts/mlp/Chart.yaml @@ -17,4 +17,4 @@ maintainers: - email: caraml-dev@caraml.dev name: caraml-dev name: mlp -version: 0.6.3 +version: 0.6.7 diff --git a/charts/mlp/README.md b/charts/mlp/README.md index cca1f2c9..6a8c73d3 100644 --- a/charts/mlp/README.md +++ b/charts/mlp/README.md @@ -1,6 +1,6 @@ # mlp -![Version: 0.6.3](https://img.shields.io/badge/Version-0.6.3-informational?style=flat-square) ![AppVersion: v1.10.0](https://img.shields.io/badge/AppVersion-v1.10.0-informational?style=flat-square) +![Version: 0.6.7](https://img.shields.io/badge/Version-0.6.7-informational?style=flat-square) ![AppVersion: v1.10.0](https://img.shields.io/badge/AppVersion-v1.10.0-informational?style=flat-square) MLP API @@ -40,6 +40,7 @@ MLP API | config.streams | object | `{}` | Streams list | | config.ui.clockworkUIHomepage | string | `"http://clockwork.dev"` | | | config.ui.kubeflowUIHomepage | string | `"http://kubeflow.org"` | | +| deployment.annotations | object | `{}` | Annotations | | deployment.extraLabels | object | `{}` | Additional labels to apply on the deployment | | deployment.image | object | `{"pullPolicy":"IfNotPresent","registry":"ghcr.io","repository":"caraml-dev/mlp","tag":"v1.10.1"}` | mlp image related configs | | deployment.livenessProbe.path | string | `"/v1/internal/live"` | | @@ -86,5 +87,3 @@ MLP API | serviceAccount.create | bool | `true` | | | serviceAccount.name | string | `"mlp"` | | ----------------------------------------------- -Autogenerated from chart metadata using [helm-docs v1.11.0](https://github.com/norwoodj/helm-docs/releases/v1.11.0) diff --git a/charts/mlp/templates/deployment.yaml b/charts/mlp/templates/deployment.yaml index e3e8ffe9..d6cc901c 100644 --- a/charts/mlp/templates/deployment.yaml +++ b/charts/mlp/templates/deployment.yaml @@ -8,6 +8,10 @@ metadata: {{- with .Values.deployment.extraLabels }} {{- toYaml . | nindent 4 }} {{- end }} + {{- if .Values.deployment.annotations }} + annotations: + {{ toYaml .Values.deployment.annotations | indent 2 }} + {{- end }} spec: replicas: {{ .Values.deployment.replicaCount }} selector: diff --git a/charts/mlp/values.yaml b/charts/mlp/values.yaml index f30680bd..84e2d9ea 100644 --- a/charts/mlp/values.yaml +++ b/charts/mlp/values.yaml @@ -36,6 +36,9 @@ deployment: # -- Additional labels to apply on the deployment extraLabels: {} + # -- Annotations + annotations: {} + service: externalPort: 8080 internalPort: 8080 diff --git a/charts/turing/README.md b/charts/turing/README.md index a07e6225..49129af0 100644 --- a/charts/turing/README.md +++ b/charts/turing/README.md @@ -70,6 +70,7 @@ The following table lists the configurable parameters of the Turing chart and th | clusterConfig.environmentConfigPath | string | `"environments.yaml"` | environmentConfigPath is a path to a file that contains environmentConfigs. See api/environments-dev.yaml for example contents | | clusterConfig.useInClusterConfig | bool | `false` | Configuration to tell Turing API how it should authenticate with deployment k8s cluster By default, Turing API expects to use a remote k8s cluster for deployment and to do so, it requires cluster access configurations to be configured as part of values.yaml | | config | object | computed value | Turing API server configuration. Please refer to https://github.com/caraml-dev/turing/blob/main/api/turing/config/example.yaml for the detailed explanation on Turing API config options | +| deployment.annotations | object | `{}` | | | deployment.extraArgs | list | `[]` | List of string containing additional Turing API server arguments. For example, multiple "-config" can be specified to use multiple config files | | deployment.extraContainers | list | `[]` | List of sidecar containers to attach to the Pod. For example, you can attach sidecar container that forward logs or dynamically update some configuration files. | | deployment.extraEnvs | list | `[]` | List of extra environment variables to add to Turing API server container | diff --git a/charts/turing/templates/turing-deployment.yaml b/charts/turing/templates/turing-deployment.yaml index 7b05cc99..d900f4f4 100644 --- a/charts/turing/templates/turing-deployment.yaml +++ b/charts/turing/templates/turing-deployment.yaml @@ -5,6 +5,10 @@ metadata: namespace: {{ .Release.Namespace }} labels: {{- include "turing.labels" . | nindent 4 }} + {{- if .Values.deployment.annotations }} + annotations: + {{ toYaml .Values.deployment.annotations | indent 2 }} + {{- end }} spec: replicas: {{ .Values.deployment.replicaCount }} selector: diff --git a/charts/turing/values.yaml b/charts/turing/values.yaml index 8d2e9ae1..3a4c9e26 100644 --- a/charts/turing/values.yaml +++ b/charts/turing/values.yaml @@ -17,6 +17,7 @@ deployment: # -- Docker image tag for Turing image tag: "" labels: {} + annotations: {} # -- Resources requests and limits for Turing API. This should be set # according to your cluster capacity and service level objectives. # Reference: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ diff --git a/charts/xp-management/Chart.yaml b/charts/xp-management/Chart.yaml index 70587867..94e3734f 100644 --- a/charts/xp-management/Chart.yaml +++ b/charts/xp-management/Chart.yaml @@ -18,4 +18,4 @@ maintainers: - email: caraml-dev@caraml.dev name: caraml-dev name: xp-management -version: 0.2.9 +version: 0.2.10 diff --git a/charts/xp-management/README.md b/charts/xp-management/README.md index b354eedd..471c55fb 100644 --- a/charts/xp-management/README.md +++ b/charts/xp-management/README.md @@ -1,7 +1,7 @@ # xp-management --- -![Version: 0.2.9](https://img.shields.io/badge/Version-0.2.9-informational?style=flat-square) +![Version: 0.2.10](https://img.shields.io/badge/Version-0.2.10-informational?style=flat-square) ![AppVersion: 0.12.1](https://img.shields.io/badge/AppVersion-0.12.1-informational?style=flat-square) Management service - A part of XP system that is used to configure experiments @@ -33,6 +33,7 @@ The following table lists the configurable parameters of the XP Management Servi | Key | Type | Default | Description | |-----|------|---------|-------------| | deployment.annotations | object | `{}` | Annotations to add to Management Service pod | +| deployment.annotations | object | `{}` | Annotations to attach to the deployment. | | deployment.apiConfig | object | `{"AllowedOrigins":"*","AuthorizationConfig":{"Enabled":false},"DbConfig":{"ConnMaxIdleTime":"0s","ConnMaxLifetime":"0s","MaxIdleConns":0,"MaxOpenConns":0},"DeploymentConfig":{"EnvironmentType":"dev"},"MlpConfig":{"URL":"http://mlp:8080"},"NewRelicConfig":{"AppName":"xp-management-service","Enabled":false,"License":""},"Port":8080,"SegmenterConfig":{"S2_IDs":{"MaxS2CellLevel":14,"MinS2CellLevel":10}},"SentryConfig":{"DSN":"","Enabled":false,"Labels":{"App":"xp-management-service"}},"XpUIConfig":{"appDirectory":"/app/xp-ui"}}` | XP Management Service server configuration. Please refer to https://github.com/caraml-dev/xp/blob/main/management-service/config/example.yaml for the detailed explanation on XP Management API config options | | deployment.extraArgs | list | `[]` | List of string containing additional XP Management Service server arguments. For example, multiple "-config" can be specified to use multiple config files | | deployment.extraEnvs | list | `[]` | List of extra environment variables to add to XP Management Service server container | diff --git a/charts/xp-management/ci/ci-values.yaml b/charts/xp-management/ci/ci-values.yaml index 4916ae74..ab07a65d 100644 --- a/charts/xp-management/ci/ci-values.yaml +++ b/charts/xp-management/ci/ci-values.yaml @@ -13,6 +13,8 @@ global: extraLabels: test: "123" deployment: + annotations: + test: "123" replicaCount: "1" resources: requests: diff --git a/charts/xp-management/templates/deployment.yaml b/charts/xp-management/templates/deployment.yaml index cd5b8ab5..358488b2 100644 --- a/charts/xp-management/templates/deployment.yaml +++ b/charts/xp-management/templates/deployment.yaml @@ -7,6 +7,10 @@ metadata: {{- with .Values.deployment.labels }} {{- toYaml . | nindent 4 }} {{- end }} + {{- if .Values.deployment.annotations }} + annotations: + {{ toYaml .Values.deployment.annotations | indent 2 }} + {{- end }} spec: replicas: {{ .Values.deployment.replicaCount }} selector: diff --git a/charts/xp-management/values.yaml b/charts/xp-management/values.yaml index 51a68752..bb783e7f 100644 --- a/charts/xp-management/values.yaml +++ b/charts/xp-management/values.yaml @@ -120,6 +120,10 @@ deployment: # Example # sidecar.custom.inject: "true" + # -- Annotations to attach to the deployment. + annotations: {} + # Example + # sidecar.custom.inject: "true" # -- Extra volumes to attach to the Pod. For example, you can mount # additional secrets to these volumes extraVolumes: [] diff --git a/charts/xp-treatment/Chart.yaml b/charts/xp-treatment/Chart.yaml index 9131a72c..fdc8499c 100644 --- a/charts/xp-treatment/Chart.yaml +++ b/charts/xp-treatment/Chart.yaml @@ -15,4 +15,4 @@ maintainers: - email: caraml-dev@caraml.dev name: caraml-dev name: xp-treatment -version: 0.1.25 +version: 0.1.26 diff --git a/charts/xp-treatment/README.md b/charts/xp-treatment/README.md index 1f1043f6..9fd70d61 100644 --- a/charts/xp-treatment/README.md +++ b/charts/xp-treatment/README.md @@ -1,7 +1,7 @@ # xp-treatment --- -![Version: 0.1.25](https://img.shields.io/badge/Version-0.1.25-informational?style=flat-square) +![Version: 0.1.26](https://img.shields.io/badge/Version-0.1.26-informational?style=flat-square) ![AppVersion: 0.12.1](https://img.shields.io/badge/AppVersion-0.12.1-informational?style=flat-square) Treatment service - A part of XP system that is used to obtain the treatment configuration from active experiments diff --git a/charts/xp-treatment/ci/ci-values.yaml b/charts/xp-treatment/ci/ci-values.yaml index 19f28485..8bf5641f 100644 --- a/charts/xp-treatment/ci/ci-values.yaml +++ b/charts/xp-treatment/ci/ci-values.yaml @@ -21,3 +21,5 @@ deployment: limits: cpu: "500m" memory: 512Mi + annotations: + test: 123 diff --git a/charts/xp-treatment/templates/deployment.yaml b/charts/xp-treatment/templates/deployment.yaml index 7c754a7b..6d1209df 100644 --- a/charts/xp-treatment/templates/deployment.yaml +++ b/charts/xp-treatment/templates/deployment.yaml @@ -4,6 +4,10 @@ metadata: name: {{ include "treatment-svc.fullname" . }} labels: {{- include "treatment-svc.labels" . | nindent 4 }} + {{- if .Values.deployment.annotations }} + annotations: + {{ toYaml .Values.deployment.annotations | indent 2 }} + {{- end }} spec: {{- if not .Values.deployment.autoscaling.enabled }} replicas: {{ .Values.deployment.replicaCount }} From 979ae257cf8a2bb7d871d21e242d27ba5a0de320 Mon Sep 17 00:00:00 2001 From: Shide Foo Date: Tue, 5 Dec 2023 16:15:53 +0800 Subject: [PATCH 02/12] Remove extra annotations --- charts/xp-management/values.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/charts/xp-management/values.yaml b/charts/xp-management/values.yaml index bb783e7f..890e90e9 100644 --- a/charts/xp-management/values.yaml +++ b/charts/xp-management/values.yaml @@ -120,8 +120,6 @@ deployment: # Example # sidecar.custom.inject: "true" - # -- Annotations to attach to the deployment. - annotations: {} # Example # sidecar.custom.inject: "true" # -- Extra volumes to attach to the Pod. For example, you can mount From b78441b756961d612528fb33c1260025dbbab696 Mon Sep 17 00:00:00 2001 From: Shide Foo Date: Tue, 5 Dec 2023 16:18:49 +0800 Subject: [PATCH 03/12] Update readme --- charts/xp-management/README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/charts/xp-management/README.md b/charts/xp-management/README.md index 471c55fb..1f5634ca 100644 --- a/charts/xp-management/README.md +++ b/charts/xp-management/README.md @@ -33,7 +33,6 @@ The following table lists the configurable parameters of the XP Management Servi | Key | Type | Default | Description | |-----|------|---------|-------------| | deployment.annotations | object | `{}` | Annotations to add to Management Service pod | -| deployment.annotations | object | `{}` | Annotations to attach to the deployment. | | deployment.apiConfig | object | `{"AllowedOrigins":"*","AuthorizationConfig":{"Enabled":false},"DbConfig":{"ConnMaxIdleTime":"0s","ConnMaxLifetime":"0s","MaxIdleConns":0,"MaxOpenConns":0},"DeploymentConfig":{"EnvironmentType":"dev"},"MlpConfig":{"URL":"http://mlp:8080"},"NewRelicConfig":{"AppName":"xp-management-service","Enabled":false,"License":""},"Port":8080,"SegmenterConfig":{"S2_IDs":{"MaxS2CellLevel":14,"MinS2CellLevel":10}},"SentryConfig":{"DSN":"","Enabled":false,"Labels":{"App":"xp-management-service"}},"XpUIConfig":{"appDirectory":"/app/xp-ui"}}` | XP Management Service server configuration. Please refer to https://github.com/caraml-dev/xp/blob/main/management-service/config/example.yaml for the detailed explanation on XP Management API config options | | deployment.extraArgs | list | `[]` | List of string containing additional XP Management Service server arguments. For example, multiple "-config" can be specified to use multiple config files | | deployment.extraEnvs | list | `[]` | List of extra environment variables to add to XP Management Service server container | From dace1dc7f5baed3e6a55beaf408fa2ca8c40a1c6 Mon Sep 17 00:00:00 2001 From: Shide Foo Date: Tue, 5 Dec 2023 16:23:47 +0800 Subject: [PATCH 04/12] Add missing line --- charts/mlp/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/charts/mlp/README.md b/charts/mlp/README.md index 6a8c73d3..d2e21549 100644 --- a/charts/mlp/README.md +++ b/charts/mlp/README.md @@ -87,3 +87,5 @@ MLP API | serviceAccount.create | bool | `true` | | | serviceAccount.name | string | `"mlp"` | | +---------------------------------------------- +Autogenerated from chart metadata using [helm-docs v1.11.0](https://github.com/norwoodj/helm-docs/releases/v1.11.0) From 7fa87ba50aa2e45bbff3a1c047de43cc9c2ec306 Mon Sep 17 00:00:00 2001 From: Shide Foo Date: Tue, 5 Dec 2023 16:45:53 +0800 Subject: [PATCH 05/12] Fix xp-treatment ci-values --- charts/xp-treatment/ci/ci-values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/xp-treatment/ci/ci-values.yaml b/charts/xp-treatment/ci/ci-values.yaml index 8bf5641f..9dcfcb7c 100644 --- a/charts/xp-treatment/ci/ci-values.yaml +++ b/charts/xp-treatment/ci/ci-values.yaml @@ -22,4 +22,4 @@ deployment: cpu: "500m" memory: 512Mi annotations: - test: 123 + test: "123" From a3bac778f6a188aa8ae20802a1e0436ceceea699 Mon Sep 17 00:00:00 2001 From: Shide Foo Date: Tue, 5 Dec 2023 17:37:03 +0800 Subject: [PATCH 06/12] Remove helm doc from pre-commit, bump merlin chart version --- .pre-commit-config.yaml | 8 ++++---- charts/merlin/Chart.yaml | 2 +- charts/merlin/README.md | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index e39fc605..c6df9765 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -5,10 +5,10 @@ repos: hooks: - id: end-of-file-fixer - id: trailing-whitespace - - repo: https://github.com/norwoodj/helm-docs - rev: v1.11.0 - hooks: - - id: helm-docs + # - repo: https://github.com/norwoodj/helm-docs + # rev: v1.11.0 + # hooks: + # - id: helm-docs-built - repo: https://github.com/gruntwork-io/pre-commit rev: v0.1.22 hooks: diff --git a/charts/merlin/Chart.yaml b/charts/merlin/Chart.yaml index 251142a7..16358e91 100644 --- a/charts/merlin/Chart.yaml +++ b/charts/merlin/Chart.yaml @@ -33,4 +33,4 @@ maintainers: - email: caraml-dev@caraml.dev name: caraml-dev name: merlin -version: 0.13.5 +version: 0.13.6 diff --git a/charts/merlin/README.md b/charts/merlin/README.md index 26b7b69c..669228ad 100644 --- a/charts/merlin/README.md +++ b/charts/merlin/README.md @@ -1,7 +1,7 @@ # merlin --- -![Version: 0.13.5](https://img.shields.io/badge/Version-0.13.5-informational?style=flat-square) +![Version: 0.13.6](https://img.shields.io/badge/Version-0.13.5-informational?style=flat-square) ![AppVersion: v0.36.0](https://img.shields.io/badge/AppVersion-v0.36.0-informational?style=flat-square) Kubernetes-friendly ML model management, deployment, and serving. From ed2c0cb408a46aded870ccf6c7858f4084903e4e Mon Sep 17 00:00:00 2001 From: Shide Foo Date: Tue, 5 Dec 2023 17:42:22 +0800 Subject: [PATCH 07/12] Fix merlin version --- charts/merlin/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/merlin/README.md b/charts/merlin/README.md index 669228ad..d85f796a 100644 --- a/charts/merlin/README.md +++ b/charts/merlin/README.md @@ -1,7 +1,7 @@ # merlin --- -![Version: 0.13.6](https://img.shields.io/badge/Version-0.13.5-informational?style=flat-square) +![Version: 0.13.6](https://img.shields.io/badge/Version-0.13.6-informational?style=flat-square) ![AppVersion: v0.36.0](https://img.shields.io/badge/AppVersion-v0.36.0-informational?style=flat-square) Kubernetes-friendly ML model management, deployment, and serving. From a312238ff2502861bcad156599f82900bfdbf404 Mon Sep 17 00:00:00 2001 From: Shide Foo Date: Wed, 6 Dec 2023 15:29:33 +0800 Subject: [PATCH 08/12] Fix precommit --- .pre-commit-config.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index c6df9765..bb674a96 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -5,10 +5,10 @@ repos: hooks: - id: end-of-file-fixer - id: trailing-whitespace - # - repo: https://github.com/norwoodj/helm-docs - # rev: v1.11.0 - # hooks: - # - id: helm-docs-built + - repo: https://github.com/norwoodj/helm-docs + rev: v1.11.0 + hooks: + - id: helm-docs-built - repo: https://github.com/gruntwork-io/pre-commit rev: v0.1.22 hooks: From 7d5befce1407c3a62cd5a1e589b2088630b362eb Mon Sep 17 00:00:00 2001 From: Shide Foo Date: Wed, 6 Dec 2023 15:32:57 +0800 Subject: [PATCH 09/12] Fix mlp chart version --- charts/mlp/Chart.yaml | 2 +- charts/mlp/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/mlp/Chart.yaml b/charts/mlp/Chart.yaml index 7594e8db..e3414c9c 100644 --- a/charts/mlp/Chart.yaml +++ b/charts/mlp/Chart.yaml @@ -17,4 +17,4 @@ maintainers: - email: caraml-dev@caraml.dev name: caraml-dev name: mlp -version: 0.6.7 +version: 0.6.4 diff --git a/charts/mlp/README.md b/charts/mlp/README.md index d2e21549..1eafe9fe 100644 --- a/charts/mlp/README.md +++ b/charts/mlp/README.md @@ -1,6 +1,6 @@ # mlp -![Version: 0.6.7](https://img.shields.io/badge/Version-0.6.7-informational?style=flat-square) ![AppVersion: v1.10.0](https://img.shields.io/badge/AppVersion-v1.10.0-informational?style=flat-square) +![Version: 0.6.4](https://img.shields.io/badge/Version-0.6.4-informational?style=flat-square) ![AppVersion: v1.10.0](https://img.shields.io/badge/AppVersion-v1.10.0-informational?style=flat-square) MLP API From 2c70207871f2ba3b05ff7f311167c4284903eacd Mon Sep 17 00:00:00 2001 From: Shide Foo Date: Wed, 6 Dec 2023 15:33:50 +0800 Subject: [PATCH 10/12] Fix xp values --- charts/xp-management/values.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/charts/xp-management/values.yaml b/charts/xp-management/values.yaml index 890e90e9..51a68752 100644 --- a/charts/xp-management/values.yaml +++ b/charts/xp-management/values.yaml @@ -120,8 +120,6 @@ deployment: # Example # sidecar.custom.inject: "true" - # Example - # sidecar.custom.inject: "true" # -- Extra volumes to attach to the Pod. For example, you can mount # additional secrets to these volumes extraVolumes: [] From 5c79014741d56b7c831f3d1d36aa4093a5e10b3a Mon Sep 17 00:00:00 2001 From: Shide Foo Date: Wed, 6 Dec 2023 15:38:15 +0800 Subject: [PATCH 11/12] Remove test annotations from ci-values --- charts/merlin/ci/ci-values.yaml | 2 -- charts/xp-management/ci/ci-values.yaml | 2 -- charts/xp-treatment/ci/ci-values.yaml | 2 -- 3 files changed, 6 deletions(-) diff --git a/charts/merlin/ci/ci-values.yaml b/charts/merlin/ci/ci-values.yaml index 9cc88654..6dc1a3e1 100644 --- a/charts/merlin/ci/ci-values.yaml +++ b/charts/merlin/ci/ci-values.yaml @@ -9,8 +9,6 @@ global: uiPrefix: "/" uiServiceName: mlp deployment: - annotations: - test: "123" replicaCount: "1" resources: requests: diff --git a/charts/xp-management/ci/ci-values.yaml b/charts/xp-management/ci/ci-values.yaml index ab07a65d..4916ae74 100644 --- a/charts/xp-management/ci/ci-values.yaml +++ b/charts/xp-management/ci/ci-values.yaml @@ -13,8 +13,6 @@ global: extraLabels: test: "123" deployment: - annotations: - test: "123" replicaCount: "1" resources: requests: diff --git a/charts/xp-treatment/ci/ci-values.yaml b/charts/xp-treatment/ci/ci-values.yaml index 9dcfcb7c..19f28485 100644 --- a/charts/xp-treatment/ci/ci-values.yaml +++ b/charts/xp-treatment/ci/ci-values.yaml @@ -21,5 +21,3 @@ deployment: limits: cpu: "500m" memory: 512Mi - annotations: - test: "123" From 0dcfbd3032b450c79955745af22d3cda86180aa3 Mon Sep 17 00:00:00 2001 From: Shide Foo Date: Wed, 6 Dec 2023 15:46:24 +0800 Subject: [PATCH 12/12] Bump turing version --- charts/turing/Chart.yaml | 2 +- charts/turing/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/turing/Chart.yaml b/charts/turing/Chart.yaml index b7bc80e2..2ab15a2b 100644 --- a/charts/turing/Chart.yaml +++ b/charts/turing/Chart.yaml @@ -22,4 +22,4 @@ maintainers: - email: caraml-dev@caraml.dev name: caraml-dev name: turing -version: 0.3.6 +version: 0.3.7 diff --git a/charts/turing/README.md b/charts/turing/README.md index 49129af0..956add28 100644 --- a/charts/turing/README.md +++ b/charts/turing/README.md @@ -1,7 +1,7 @@ # turing --- -![Version: 0.3.6](https://img.shields.io/badge/Version-0.3.6-informational?style=flat-square) +![Version: 0.3.7](https://img.shields.io/badge/Version-0.3.7-informational?style=flat-square) ![AppVersion: v1.16.0](https://img.shields.io/badge/AppVersion-v1.16.0-informational?style=flat-square) Kubernetes-friendly multi-model orchestration and experimentation system.