From e1d0899efecc5c968e64a829f38b5edaaa628076 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Steenis Date: Mon, 8 Apr 2019 17:11:33 +0200 Subject: [PATCH] Show correct filename for webhook auth config file --- cluster/hosts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/hosts.go b/cluster/hosts.go index fc3abfd1..a76e5caf 100644 --- a/cluster/hosts.go +++ b/cluster/hosts.go @@ -159,7 +159,7 @@ func (c *Cluster) SetUpHosts(ctx context.Context, flags ExternalFlags) error { if err := deployFile(ctx, hostList, c.SystemImages.Alpine, c.PrivateRegistriesMap, authnWebhookFileName, c.Authentication.Webhook.ConfigFile); err != nil { return err } - log.Infof(ctx, "[%s] Successfully deployed authentication webhook config Cluster nodes", cloudConfigFileName) + log.Infof(ctx, "[%s] Successfully deployed authentication webhook config Cluster nodes", authnWebhookFileName) } } return nil