Skip to content

Commit

Permalink
Add override for serving service static ip (#100)
Browse files Browse the repository at this point in the history
* Add override for serving service static ip

* Update distribution of chart
  • Loading branch information
zhilingc authored and feast-ci-bot committed Jan 23, 2019
1 parent 6797ba4 commit 19db163
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
Binary file modified charts/dist/feast-0.1.0.tgz
Binary file not shown.
6 changes: 3 additions & 3 deletions charts/dist/index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ entries:
feast:
- apiVersion: v1
appVersion: 0.1.0
created: 2019-01-18T23:20:59.770256601+08:00
created: 2019-01-23T15:59:57.223680331+08:00
description: A Helm chart to install Feast on kubernetes
digest: deced7dc470115e8b81815e1a719185404380e310bc6951c480f2858dd9a48ac
digest: 1b392c4fa1e3b7cff7afb1dc635a248d86c0c05d8b02b6fc4e884c20f6a03ff2
name: feast
urls:
- feast-0.1.0.tgz
version: 0.1.0
generated: 2019-01-18T23:20:59.769296687+08:00
generated: 2019-01-23T15:59:57.222635289+08:00
2 changes: 2 additions & 0 deletions charts/feast/templates/core-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ metadata:
cloud.google.com/load-balancer-type: "Internal"
spec:
type: LoadBalancer
{{- if .Values.core.service.extIPAdr }}
loadBalancerIP: {{ .Values.core.service.extIPAdr }}
{{- end }}
ports:
- name: http
port: {{ .Values.core.service.http.port }}
Expand Down
3 changes: 3 additions & 0 deletions charts/feast/templates/serving-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ metadata:
cloud.google.com/load-balancer-type: "Internal"
spec:
type: LoadBalancer
{{- if .Values.serving.service.extIPAdr }}
loadBalancerIP: {{ .Values.serving.service.extIPAdr }}
{{- end}}
ports:
- name: grpc
port: {{ .Values.serving.service.grpc.port }}
Expand Down

0 comments on commit 19db163

Please sign in to comment.