From 468e63267b0a467fa212119a5ad805d9d9c765d3 Mon Sep 17 00:00:00 2001
From: Blizter <blizter47@gmail.com>
Date: Tue, 27 Oct 2020 15:53:09 -0400
Subject: [PATCH] adding missing brace

---
 examples/ingress-one-to-many.jsonnet | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/examples/ingress-one-to-many.jsonnet b/examples/ingress-one-to-many.jsonnet
index 7b0bc2e7..f5774af4 100644
--- a/examples/ingress-one-to-many.jsonnet
+++ b/examples/ingress-one-to-many.jsonnet
@@ -67,13 +67,14 @@ local kp =
                   httpIngressPath.mixin.backend.withServicePort('http')
           )]
         ),
-    }, + {
+    },
+  } + {
     // Create basic auth secret - replace 'auth' file with your own
     ingress+:: {
       'basic-auth-secret':
         secret.new('basic-auth', { auth: std.base64(importstr 'auth') }) +
         secret.mixin.metadata.withNamespace($._config.namespace),
-    },
+    },      
   };
 
 { [name + '-ingress']: kp.ingress[name] for name in std.objectFields(kp.ingress) }
-- 
GitLab