cleanup: fix codespell error in internal/utils package

Codespell checker report below error:
```
Resulting CLI options  --check-filenames --check-hidden --skip .git,./vendor --ignore-words-list ExtraVersion,extraversion,ba
1
Error: ./internal/util/aws_metadata.go:96: Kubenetes ==> Kubernetes
```
This commit address the same.

Signed-off-by: Humble Chirammal <hchiramm@redhat.com>
This commit is contained in:
Humble Chirammal 2021-06-11 11:06:59 +05:30 committed by mergify[bot]
parent d5576fd8ae
commit 9f5a2b5c8f

View File

@ -93,7 +93,7 @@ func initAWSMetadataKMS(args KMSInitializerArgs) (EncryptionKMS, error) {
return nil, err return nil, err
} }
// read the Kubenetes Secret with credentials // read the Kubernetes Secret with credentials
secrets, err := kms.getSecrets() secrets, err := kms.getSecrets()
if err != nil { if err != nil {
return nil, fmt.Errorf("failed to get secrets for %T: %w", kms, return nil, fmt.Errorf("failed to get secrets for %T: %w", kms,