From: HuabingZhao Date: Fri, 15 Sep 2017 08:02:38 +0000 (+0000) Subject: Add path property support X-Git-Tag: v1.1.0~29^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F75%2F12675%2F1;p=oom%2Fregistrator.git Add path property support Issue-Id: OOM-61 Change-Id: Ifde7c3987c41beb49b77556b20e6e2018d52e1aa Signed-off-by: HuabingZhao --- 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"` }