diff --git a/charts/jupyter-pyspark/Chart.yaml b/charts/jupyter-pyspark/Chart.yaml index 2336473f..eea89d69 100644 --- a/charts/jupyter-pyspark/Chart.yaml +++ b/charts/jupyter-pyspark/Chart.yaml @@ -24,8 +24,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) - -version: 2.3.1 +version: 2.3.2 dependencies: - name: library-chart version: 1.7.0 diff --git a/charts/jupyter-pyspark/templates/secret-milvus.yaml b/charts/jupyter-pyspark/templates/secret-milvus.yaml new file mode 100644 index 00000000..e3f338eb --- /dev/null +++ b/charts/jupyter-pyspark/templates/secret-milvus.yaml @@ -0,0 +1 @@ +{{ include "library-chart.secretMilvus" . }} diff --git a/charts/jupyter-pyspark/templates/statefulset.yaml b/charts/jupyter-pyspark/templates/statefulset.yaml index cf12e588..cb3c93a1 100644 --- a/charts/jupyter-pyspark/templates/statefulset.yaml +++ b/charts/jupyter-pyspark/templates/statefulset.yaml @@ -47,6 +47,9 @@ spec: {{- if not (empty (trim (include "library-chart.secretChromaDB" .))) }} checksum/chromadb: {{ include (print $.Template.BasePath "/secret-chromadb.yaml") . | sha256sum }} {{- end }} + {{- if not (empty (trim (include "library-chart.secretMilvus" .))) }} + checksum/milvus: {{ include (print $.Template.BasePath "/secret-milvus.yaml") . | sha256sum }} + {{- end }} {{- if (include "library-chart.repository.enabled" .) }} checksum/repository: {{ include (print $.Template.BasePath "/configmap-repository.yaml") . | sha256sum }} {{- end }} @@ -278,6 +281,10 @@ spec: - secretRef: name: {{ include "library-chart.secretNameChromaDB" . }} {{- end }} + {{- if not (empty (trim (include "library-chart.secretMilvus" .))) }} + - secretRef: + name: {{ include "library-chart.secretNameMilvus" . }} + {{- end }} {{- if .Values.extraEnvVars }} - secretRef: name: {{ include "library-chart.secretNameExtraEnv" . }} diff --git a/charts/jupyter-pyspark/values.schema.json b/charts/jupyter-pyspark/values.schema.json index c4becc24..5ae174c8 100644 --- a/charts/jupyter-pyspark/values.schema.json +++ b/charts/jupyter-pyspark/values.schema.json @@ -651,6 +651,16 @@ "title": "Discover Metaflow services", "type": "boolean", "default": true + }, + "chromadb": { + "title": "Discover ChromaDB services", + "type": "boolean", + "default": true + }, + "milvus": { + "title": "Discover Milvus services", + "type": "boolean", + "default": true } } }, diff --git a/charts/jupyter-pyspark/values.yaml b/charts/jupyter-pyspark/values.yaml index c659911b..b44261c7 100644 --- a/charts/jupyter-pyspark/values.yaml +++ b/charts/jupyter-pyspark/values.yaml @@ -115,6 +115,7 @@ discovery: mlflow: true metaflow: true chromadb: true + milvus: true hive: secretName: "" @@ -128,6 +129,9 @@ metaflow: chromadb: secretName: "" +milvus: + secretName: "" + coresite: secretName: "" diff --git a/charts/jupyter-python/Chart.yaml b/charts/jupyter-python/Chart.yaml index c1eafff6..cbf9f846 100644 --- a/charts/jupyter-python/Chart.yaml +++ b/charts/jupyter-python/Chart.yaml @@ -22,7 +22,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 2.3.2 +version: 2.3.3 dependencies: - name: library-chart version: 1.7.0 diff --git a/charts/jupyter-python/templates/secret-milvus.yaml b/charts/jupyter-python/templates/secret-milvus.yaml new file mode 100644 index 00000000..e3f338eb --- /dev/null +++ b/charts/jupyter-python/templates/secret-milvus.yaml @@ -0,0 +1 @@ +{{ include "library-chart.secretMilvus" . }} diff --git a/charts/jupyter-python/templates/statefulset.yaml b/charts/jupyter-python/templates/statefulset.yaml index d59d5b3f..47134854 100644 --- a/charts/jupyter-python/templates/statefulset.yaml +++ b/charts/jupyter-python/templates/statefulset.yaml @@ -41,6 +41,9 @@ spec: {{- if not (empty (trim (include "library-chart.secretChromaDB" .))) }} checksum/chromadb: {{ include (print $.Template.BasePath "/secret-chromadb.yaml") . | sha256sum }} {{- end }} + {{- if not (empty (trim (include "library-chart.secretMilvus" .))) }} + checksum/milvus: {{ include (print $.Template.BasePath "/secret-milvus.yaml") . | sha256sum }} + {{- end }} {{- if (include "library-chart.repository.enabled" .) }} checksum/repository: {{ include (print $.Template.BasePath "/configmap-repository.yaml") . | sha256sum }} {{- end }} @@ -229,6 +232,10 @@ spec: - secretRef: name: {{ include "library-chart.secretNameChromaDB" . }} {{- end }} + {{- if not (empty (trim (include "library-chart.secretMilvus" .))) }} + - secretRef: + name: {{ include "library-chart.secretNameMilvus" . }} + {{- end }} {{- if .Values.extraEnvVars }} - secretRef: name: {{ include "library-chart.secretNameExtraEnv" . }} diff --git a/charts/jupyter-python/values.schema.json b/charts/jupyter-python/values.schema.json index 4c54e0df..774c252e 100644 --- a/charts/jupyter-python/values.schema.json +++ b/charts/jupyter-python/values.schema.json @@ -604,6 +604,16 @@ "title": "Discover Metaflow services", "type": "boolean", "default": true + }, + "chromadb": { + "title": "Discover ChromaDB services", + "type": "boolean", + "default": true + }, + "milvus": { + "title": "Discover Milvus services", + "type": "boolean", + "default": true } } }, diff --git a/charts/jupyter-python/values.yaml b/charts/jupyter-python/values.yaml index 27888e4c..93b44b76 100644 --- a/charts/jupyter-python/values.yaml +++ b/charts/jupyter-python/values.yaml @@ -85,6 +85,7 @@ discovery: mlflow: true metaflow: true chromadb: true + milvus: true hive: secretName: "" @@ -98,6 +99,9 @@ metaflow: chromadb: secretName: "" +milvus: + secretName: "" + coresite: secretName: "" diff --git a/charts/vscode-pyspark/Chart.yaml b/charts/vscode-pyspark/Chart.yaml index 928474bc..98973a32 100644 --- a/charts/vscode-pyspark/Chart.yaml +++ b/charts/vscode-pyspark/Chart.yaml @@ -24,7 +24,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 2.3.1 +version: 2.3.2 dependencies: - name: library-chart version: 1.7.0 diff --git a/charts/vscode-pyspark/templates/secret-milvus.yaml b/charts/vscode-pyspark/templates/secret-milvus.yaml new file mode 100644 index 00000000..e3f338eb --- /dev/null +++ b/charts/vscode-pyspark/templates/secret-milvus.yaml @@ -0,0 +1 @@ +{{ include "library-chart.secretMilvus" . }} diff --git a/charts/vscode-pyspark/templates/statefulset.yaml b/charts/vscode-pyspark/templates/statefulset.yaml index 22ae01fd..a58e87e5 100644 --- a/charts/vscode-pyspark/templates/statefulset.yaml +++ b/charts/vscode-pyspark/templates/statefulset.yaml @@ -47,6 +47,9 @@ spec: {{- if not (empty (trim (include "library-chart.secretChromaDB" .))) }} checksum/mlflow: {{ include (print $.Template.BasePath "/secret-chromadb.yaml") . | sha256sum }} {{- end }} + {{- if not (empty (trim (include "library-chart.secretMilvus" .))) }} + checksum/milvus: {{ include (print $.Template.BasePath "/secret-milvus.yaml") . | sha256sum }} + {{- end }} {{- if (include "library-chart.repository.enabled" .) }} checksum/repository: {{ include (print $.Template.BasePath "/configmap-repository.yaml") . | sha256sum }} {{- end }} @@ -288,6 +291,10 @@ spec: - secretRef: name: {{ include "library-chart.secretNameChromaDB" . }} {{- end }} + {{- if not (empty (trim (include "library-chart.secretMilvus" .))) }} + - secretRef: + name: {{ include "library-chart.secretNameMilvus" . }} + {{- end }} {{- if .Values.extraEnvVars }} - secretRef: name: {{ include "library-chart.secretNameExtraEnv" . }} diff --git a/charts/vscode-pyspark/values.schema.json b/charts/vscode-pyspark/values.schema.json index 044e318a..be943ed9 100644 --- a/charts/vscode-pyspark/values.schema.json +++ b/charts/vscode-pyspark/values.schema.json @@ -635,6 +635,16 @@ "title": "Discover Metaflow services", "type": "boolean", "default": true + }, + "chromadb": { + "title": "Discover ChromaDB services", + "type": "boolean", + "default": true + }, + "milvus": { + "title": "Discover Milvus services", + "type": "boolean", + "default": true } } }, diff --git a/charts/vscode-pyspark/values.yaml b/charts/vscode-pyspark/values.yaml index 32482a34..2bf68e96 100644 --- a/charts/vscode-pyspark/values.yaml +++ b/charts/vscode-pyspark/values.yaml @@ -116,6 +116,7 @@ discovery: mlflow: true metaflow: true chromadb: true + milvus: true hive: secretName: "" @@ -129,6 +130,9 @@ metaflow: chromadb: secretName: "" +milvus: + secretName: "" + coresite: secretName: "" diff --git a/charts/vscode-python/Chart.yaml b/charts/vscode-python/Chart.yaml index 3197b2e0..56aef9a0 100644 --- a/charts/vscode-python/Chart.yaml +++ b/charts/vscode-python/Chart.yaml @@ -22,7 +22,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 2.3.3 +version: 2.3.4 dependencies: - name: library-chart version: 1.7.0 diff --git a/charts/vscode-python/templates/secret-milvus.yaml b/charts/vscode-python/templates/secret-milvus.yaml new file mode 100644 index 00000000..e3f338eb --- /dev/null +++ b/charts/vscode-python/templates/secret-milvus.yaml @@ -0,0 +1 @@ +{{ include "library-chart.secretMilvus" . }} diff --git a/charts/vscode-python/templates/statefulset.yaml b/charts/vscode-python/templates/statefulset.yaml index 8cfa2a43..a8f47e0c 100644 --- a/charts/vscode-python/templates/statefulset.yaml +++ b/charts/vscode-python/templates/statefulset.yaml @@ -41,6 +41,9 @@ spec: {{- if not (empty (trim (include "library-chart.secretChromaDB" .))) }} checksum/chromadb: {{ include (print $.Template.BasePath "/secret-chromadb.yaml") . | sha256sum }} {{- end }} + {{- if not (empty (trim (include "library-chart.secretMilvus" .))) }} + checksum/milvus: {{ include (print $.Template.BasePath "/secret-milvus.yaml") . | sha256sum }} + {{- end }} {{- if (include "library-chart.repository.enabled" .) }} checksum/repository: {{ include (print $.Template.BasePath "/configmap-repository.yaml") . | sha256sum }} {{- end }} @@ -228,6 +231,10 @@ spec: - secretRef: name: {{ include "library-chart.secretNameChromaDB" . }} {{- end }} + {{- if not (empty (trim (include "library-chart.secretMilvus" .))) }} + - secretRef: + name: {{ include "library-chart.secretNameMilvus" . }} + {{- end }} {{- if .Values.extraEnvVars }} - secretRef: name: {{ include "library-chart.secretNameExtraEnv" . }} diff --git a/charts/vscode-python/values.schema.json b/charts/vscode-python/values.schema.json index 4b876d91..3f584ae7 100644 --- a/charts/vscode-python/values.schema.json +++ b/charts/vscode-python/values.schema.json @@ -640,6 +640,16 @@ "title": "Discover Metaflow services", "type": "boolean", "default": true + }, + "chromadb": { + "title": "Discover ChromaDB services", + "type": "boolean", + "default": true + }, + "milvus": { + "title": "Discover Milvus services", + "type": "boolean", + "default": true } } }, diff --git a/charts/vscode-python/values.yaml b/charts/vscode-python/values.yaml index 80eb43d6..4eb74ee4 100644 --- a/charts/vscode-python/values.yaml +++ b/charts/vscode-python/values.yaml @@ -80,6 +80,7 @@ discovery: mlflow: true metaflow: true chromadb: true + milvus: true hive: secretName: "" @@ -93,6 +94,9 @@ metaflow: chromadb: secretName: "" +milvus: + secretName: "" + coresite: secretName: ""