From 029047a6f34d1be4c2da2e2c8eabcf814cbb3d8d Mon Sep 17 00:00:00 2001 From: Garth Bushell Date: Thu, 8 Feb 2018 10:57:53 +0000 Subject: [PATCH] Spell passphrase correctly (#61) --- pkg/oci/client/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/oci/client/config.go b/pkg/oci/client/config.go index 4b308554b..299e754fa 100644 --- a/pkg/oci/client/config.go +++ b/pkg/oci/client/config.go @@ -31,7 +31,7 @@ type AuthConfig struct { PrivateKey string `yaml:"key"` Fingerprint string `yaml:"fingerprint"` Region string `yaml:"region"` - PrivateKeyPassphrase string `yaml:"key_passphase"` + PrivateKeyPassphrase string `yaml:"key_passphrase"` } // Config holds the OCI cloud-provider config passed to Kubernetes compontents.