From: Eric Multanen Date: Tue, 23 Jun 2020 19:19:44 +0000 (-0700) Subject: Fix ovnaction cnitype key value X-Git-Tag: 6.0.0-ONAP~11^2~13 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F67%2F109467%2F1;p=multicloud%2Fk8s.git Fix ovnaction cnitype key value Fix the annotation key value for cnitype - should be 'type' instead of 'cniType'. Issue-ID: MULTICLOUD-1094 Signed-off-by: Eric Multanen Change-Id: I5b12049e9ed114dbc245c5fb219b5a735d8b7e2c --- diff --git a/src/ovnaction/pkg/module/resources.go b/src/ovnaction/pkg/module/resources.go index 24c9833e..bb21ec48 100644 --- a/src/ovnaction/pkg/module/resources.go +++ b/src/ovnaction/pkg/module/resources.go @@ -36,7 +36,7 @@ import ( ) type NfnAnnotation struct { - CniType string + CniType string `json:"type"` Interface []WorkloadIfIntentSpec }