Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/mlrun-ce/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: mlrun-ce
version: 0.11.0-rc7
version: 0.11.0-rc8
description: MLRun Open Source Stack
home: https://iguazio.com
icon: https://www.iguazio.com/wp-content/uploads/2019/10/Iguazio-Logo.png
Expand Down
5 changes: 5 additions & 0 deletions charts/mlrun-ce/non_admin_cluster_ip_installation_values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ minio:
mode: standalone
replicas: 1

timescaledb:
service:
type: ClusterIP
nodePort: ""

spark-operator:
enabled: false

Expand Down
10 changes: 10 additions & 0 deletions charts/mlrun-ce/templates/NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -117,5 +117,15 @@ Prometheus UI is available at:
{{- end }}
{{- end }}

{{- if .Values.timescaledb.enabled }}
{{- if eq .Values.timescaledb.service.type "NodePort" }}
{{- "\n" }}
TimescaleDB is available at:
{{ .Values.global.externalHostAddress }}:{{ .Values.timescaledb.service.nodePort }}
- username: {{ .Values.timescaledb.auth.username }}
- database: {{ .Values.timescaledb.auth.database }}
{{- end }}
{{- end }}

Happy MLOPSing!!! :]
{{- end }}
3 changes: 3 additions & 0 deletions charts/mlrun-ce/templates/timescaledb/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ spec:
port: {{ .Values.timescaledb.service.port }}
targetPort: postgresql
protocol: TCP
{{- if (and (eq .Values.timescaledb.service.type "NodePort") (not (empty .Values.timescaledb.service.nodePort))) }}
nodePort: {{ .Values.timescaledb.service.nodePort }}
{{- end }}
selector:
{{- include "mlrun-ce.timescaledb.selectorLabels" . | nindent 4 }}
{{- end }}
3 changes: 2 additions & 1 deletion charts/mlrun-ce/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -472,8 +472,9 @@ timescaledb:
tag: "pg17.7-ts2.24.0"
pullPolicy: IfNotPresent
service:
type: ClusterIP
type: NodePort
port: 5432
nodePort: 30110
auth:
username: postgres
password: postgres
Expand Down
3 changes: 3 additions & 0 deletions tests/kind-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ nodes:
- containerPort: 30443
hostPort: 30443
protocol: TCP
- containerPort: 30110
hostPort: 30110
protocol: TCP
EOF
}

Expand Down