File tree 3 files changed +24
-3
lines changed
infra/charts/feast-feature-server
3 files changed +24
-3
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ See [here](https://github.com/feast-dev/feast/tree/master/examples/python-helm-d
35
35
| Key | Type | Default | Description |
36
36
| -----| ------| ---------| -------------|
37
37
| affinity | object | ` {} ` | |
38
+ | extraEnvs | list | ` [] ` | Additional environment variables to be set in the container |
38
39
| feast_mode | string | ` "online" ` | Feast supported deployment modes - online (default), offline, ui and registry |
39
40
| feature_store_yaml_base64 | string | ` "" ` | [ required] a base64 encoded version of feature_store.yaml |
40
41
| fullnameOverride | string | ` "" ` | |
@@ -61,4 +62,6 @@ See [here](https://github.com/feast-dev/feast/tree/master/examples/python-helm-d
61
62
| service.port | int | ` 80 ` | |
62
63
| service.type | string | ` "ClusterIP" ` | |
63
64
| serviceAccount.name | string | ` "" ` | |
64
- | tolerations | list | ` [] ` | |
65
+ | tolerations | list | ` [] ` | |
66
+ | volumeMounts | list | ` [] ` | |
67
+ | volumes | list | ` [] ` | |
Original file line number Diff line number Diff line change 28
28
{{- end }}
29
29
securityContext :
30
30
{{- toYaml .Values.podSecurityContext | nindent 8 }}
31
+ {{- with .Values.volumes }}
32
+ volumes :
33
+ {{- toYaml . | nindent 8 }}
34
+ {{- end }}
31
35
containers :
32
36
- name : {{ .Chart.Name }}
33
37
securityContext :
39
43
value : {{ .Values.feature_store_yaml_base64 }}
40
44
- name : INTRA_COMMUNICATION_BASE64
41
45
value : {{ "intra-server-communication" | b64enc }}
46
+ {{- with .Values.extraEnvs}}
47
+ {{- toYaml . | nindent 12 }}
48
+ {{- end}}
42
49
command :
43
50
{{- if eq .Values.feast_mode "offline" }}
44
51
- " feast"
@@ -99,6 +106,10 @@ spec:
99
106
periodSeconds : {{ .Values.readinessProbe.periodSeconds }}
100
107
resources :
101
108
{{- toYaml .Values.resources | nindent 12 }}
109
+ {{- with .Values.volumeMounts}}
110
+ volumeMounts :
111
+ {{- toYaml . | nindent 12 }}
112
+ {{- end }}
102
113
{{- with .Values.nodeSelector }}
103
114
nodeSelector :
104
115
{{- toYaml . | nindent 8 }}
@@ -110,4 +121,4 @@ spec:
110
121
{{- with .Values.tolerations }}
111
122
tolerations :
112
123
{{- toYaml . | nindent 8 }}
113
- {{- end }}
124
+ {{- end }}
Original file line number Diff line number Diff line change @@ -75,6 +75,13 @@ readinessProbe:
75
75
initialDelaySeconds : 20
76
76
periodSeconds : 10
77
77
78
+ volumeMounts : []
79
+
80
+ # extraEnvs -- Additional environment variables to be set in the container
81
+ extraEnvs : []
82
+
83
+ volumes : []
84
+
78
85
# to create OpenShift Route object for UI
79
86
route :
80
- enabled : false
87
+ enabled : false
You can’t perform that action at this time.
0 commit comments