From e95fde067d2ac1903085040df2fed7bc9a6c0618 Mon Sep 17 00:00:00 2001 From: Jakub Warczarek Date: Thu, 17 Aug 2023 10:57:25 +0200 Subject: [PATCH] chore(ci): improve logs for test.conformance (#4527) --- internal/util/test/crds.go | 4 ++-- internal/util/test/rbacs.go | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/internal/util/test/crds.go b/internal/util/test/crds.go index 4c4e2aa609..87520cca74 100644 --- a/internal/util/test/crds.go +++ b/internal/util/test/crds.go @@ -27,12 +27,12 @@ func DeployCRDsForCluster(ctx context.Context, cluster clusters.Cluster) error { return err } - fmt.Printf("INFO: deploying Kong CRDs to cluster") + fmt.Printf("INFO: deploying Kong CRDs to cluster\n") if err := clusters.KustomizeDeployForCluster(ctx, cluster, kongCRDsKustomize); err != nil { return err } - fmt.Printf("INFO: deploying Gateway CRDs to cluster") + fmt.Printf("INFO: deploying Gateway CRDs to cluster\n") if err := clusters.KustomizeDeployForCluster(ctx, cluster, consts.GatewayExperimentalCRDsKustomizeURL); err != nil { return err } diff --git a/internal/util/test/rbacs.go b/internal/util/test/rbacs.go index 5449f40786..8cc5d9a30b 100644 --- a/internal/util/test/rbacs.go +++ b/internal/util/test/rbacs.go @@ -17,21 +17,21 @@ const ( ) func DeployRBACsForCluster(ctx context.Context, cluster clusters.Cluster) error { - fmt.Printf("INFO: deploying Kong RBACs to cluster") + fmt.Printf("INFO: deploying Kong RBACs to cluster\n") if err := clusters.KustomizeDeployForCluster(ctx, cluster, kongRBACsKustomize, "-n", consts.ControllerNamespace); err != nil { return err } - fmt.Printf("INFO: deploying Kong knative RBACs to cluster") + fmt.Printf("INFO: deploying Kong knative RBACs to cluster\n") if err := clusters.KustomizeDeployForCluster(ctx, cluster, kongKnativeRBACsKustomize, "-n", consts.ControllerNamespace); err != nil { return err } - fmt.Printf("INFO: deploying Kong gateway RBACs to cluster") + fmt.Printf("INFO: deploying Kong gateway RBACs to cluster\n") if err := clusters.KustomizeDeployForCluster(ctx, cluster, kongGatewayRBACsKustomize, "-n", consts.ControllerNamespace); err != nil { return err } - fmt.Printf("INFO: deploying Kong CRDs RBACs to cluster") + fmt.Printf("INFO: deploying Kong CRDs RBACs to cluster\n") return clusters.KustomizeDeployForCluster(ctx, cluster, kongCRDsRBACsKustomize, "-n", consts.ControllerNamespace) }