File tree Expand file tree Collapse file tree 4 files changed +25
-2
lines changed
infra/charts/feast-feature-server Expand file tree Collapse file tree 4 files changed +25
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : feast-feature-server
3
3
description : Feast Feature Server in Go or Python
4
4
type : application
5
- version : 0.42.0
5
+ version : 0.42.1
6
6
keywords :
7
7
- machine learning
8
8
- big data
Original file line number Diff line number Diff line change @@ -60,4 +60,5 @@ See [here](https://github.com/feast-dev/feast/tree/master/examples/python-helm-d
60
60
| service.port | int | ` 80 ` | |
61
61
| service.type | string | ` "ClusterIP" ` | |
62
62
| serviceAccount.name | string | ` "" ` | |
63
- | tolerations | list | ` [] ` | |
63
+ | tolerations | list | ` [] ` | |
64
+ | route.enabled | bool | ` false ` | |
Original file line number Diff line number Diff line change
1
+ {{- if and (.Values.route.enabled) (eq .Values.feast_mode "ui") }}
2
+ ---
3
+ kind : Route
4
+ apiVersion : route.openshift.io/v1
5
+ metadata :
6
+ name : {{ include "feast-feature-server.fullname" . }}
7
+ labels :
8
+ {{- include "feast-feature-server.labels" . | nindent 4 }}
9
+ spec :
10
+ to :
11
+ kind : Service
12
+ name : {{ include "feast-feature-server.fullname" . }}
13
+ port :
14
+ targetPort : http
15
+ tls :
16
+ termination : edge
17
+ insecureEdgeTerminationPolicy : Redirect
18
+ {{- end}}
Original file line number Diff line number Diff line change @@ -74,3 +74,7 @@ livenessProbe:
74
74
readinessProbe :
75
75
initialDelaySeconds : 20
76
76
periodSeconds : 10
77
+
78
+ # to create OpenShift Route object for UI
79
+ route :
80
+ enabled : false
You can’t perform that action at this time.
0 commit comments