fix(clustertool): correct logging on SOPS secret YAML creation

This commit is contained in:
Kjeld Schouten
2024-10-24 22:19:37 +02:00
parent e4c1f43c64
commit 5d9b33f25f
+1 -1
View File
@@ -465,7 +465,7 @@ func GenSopsSecret() error {
if err != nil {
return fmt.Errorf("failed to write secret YAML to file: %w", err)
}
log.Info().Msgf("Kubernetes secret YAML saved to: %s\n", secretPath)
log.Info().Msgf("SOPS secret YAML saved to: %s\n", secretPath)
return nil
}