Skip to content

Commit

Permalink
Log the kind config file generated by our IDP builder
Browse files Browse the repository at this point in the history
Signed-off-by: cmoulliard <[email protected]>
  • Loading branch information
cmoulliard committed Oct 25, 2023
1 parent ff13799 commit 7fe5a7c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/kind/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,10 @@ func (c *Cluster) Reconcile(ctx context.Context, recreate bool) error {
return err
}

fmt.Print("########################### Our kind config ############################\n")
fmt.Printf("%s", rawConfig)
fmt.Print("\n######################### config end ############################\n")

fmt.Printf("Creating kind cluster %s\n", c.name)
if err = c.provider.Create(
c.name,
Expand Down

0 comments on commit 7fe5a7c

Please sign in to comment.