Skip to content

Commit 3ca43c1

Browse files
Merge pull request openshift#8744 from r4f4/ids-warning-message-fix
OCPBUGS-36780: ic: fix typo in warning message
2 parents a39082b + 98f343c commit 3ca43c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/types/validation/installconfig.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ func ValidateInstallConfig(c *types.InstallConfig, usingAgentMethod bool) field.
148148
allErrs = append(allErrs, field.Invalid(field.NewPath("imageContentSources"), c.Publish, "cannot set imageContentSources and imageDigestSources at the same time"))
149149
}
150150
if len(c.DeprecatedImageContentSources) != 0 {
151-
logrus.Warningln("imageContentSources is deprecated, please use ImageDigestSource")
151+
logrus.Warningln("imageContentSources is deprecated, please use ImageDigestSources")
152152
}
153153
allErrs = append(allErrs, validateCloudCredentialsMode(c.CredentialsMode, field.NewPath("credentialsMode"), c.Platform)...)
154154
if c.Capabilities != nil {

0 commit comments

Comments
 (0)