From 819a687195ef9d6c8dd9753d366c0120886d7736 Mon Sep 17 00:00:00 2001 From: Eric Multanen Date: Tue, 23 Jun 2020 12:19:44 -0700 Subject: 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 --- src/ovnaction/pkg/module/resources.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } -- cgit 1.2.3-korg