Merge pull request #105078 from aramase/fix-typo-kms-config

fix typo in kms encryption config logs
This commit is contained in:
Kubernetes Prow Robot 2021-09-27 07:33:49 -07:00 committed by GitHub
commit dc2fe6d56c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -101,7 +101,7 @@ func getKMSPluginProbes(reader io.Reader) ([]*kmsPluginProbe, error) {
config, err := loadConfig(configFileContents)
if err != nil {
return result, fmt.Errorf("error while parsing encrypiton provider configuration: %v", err)
return result, fmt.Errorf("error while parsing encryption provider configuration: %v", err)
}
for _, r := range config.Resources {