From 5aaaa7badb3f3c29bad8b5a49e2b1f185e821771 Mon Sep 17 00:00:00 2001 From: HuabingZhao Date: Fri, 15 Sep 2017 08:02:38 +0000 Subject: Add path property support Issue-Id: OOM-61 Change-Id: Ifde7c3987c41beb49b77556b20e6e2018d52e1aa Signed-off-by: HuabingZhao --- src/kube2msb/msb_client.go | 1 + src/kube2msb/types.go | 1 + 2 files changed, 2 insertions(+) diff --git a/src/kube2msb/msb_client.go b/src/kube2msb/msb_client.go index 2c1b402..74e2319 100644 --- a/src/kube2msb/msb_client.go +++ b/src/kube2msb/msb_client.go @@ -124,6 +124,7 @@ func ServiceAnnotation2ServiceUnit(sa *ServiceAnnotation) *ServiceUnit { Protocol: sa.Protocol, LBPolicy: sa.LBPolicy, VisualRange: sa.VisualRange, + Path: sa.Path, Instances: []InstanceUnit{{ServiceIP: sa.IP, ServicePort: sa.Port}}, } } diff --git a/src/kube2msb/types.go b/src/kube2msb/types.go index 095400b..d496b1c 100644 --- a/src/kube2msb/types.go +++ b/src/kube2msb/types.go @@ -133,4 +133,5 @@ type ServiceAnnotation struct { Protocol string `json:"protocol,omitempty"` LBPolicy string `json:"lb_policy,omitempty"` VisualRange string `json:"visualRange,omitempty"` + Path string `json:"path,omitempty"` } -- cgit 1.2.3-korg