kms: use different context for server lifecycle and initial load

Signed-off-by: Monis Khan <mok@microsoft.com>
This commit is contained in:
Monis Khan 2022-11-16 10:36:42 -05:00
parent 43b7a25353
commit cb3410e1b7
No known key found for this signature in database
2 changed files with 27 additions and 4 deletions

View File

@ -228,9 +228,10 @@ func (s *EtcdOptions) Complete(
}
if len(s.EncryptionProviderConfigFilepath) != 0 {
ctx, closeTransformers := wait.ContextForChannel(stopCh)
ctxTransformers, closeTransformers := wait.ContextForChannel(stopCh)
ctxServer, _ := wait.ContextForChannel(stopCh) // explicitly ignore cancel here because we do not own the server's lifecycle
encryptionConfiguration, err := encryptionconfig.LoadEncryptionConfig(s.EncryptionProviderConfigFilepath, s.EncryptionProviderConfigAutomaticReload, ctx.Done())
encryptionConfiguration, err := encryptionconfig.LoadEncryptionConfig(s.EncryptionProviderConfigFilepath, s.EncryptionProviderConfigAutomaticReload, ctxTransformers.Done())
if err != nil {
// in case of error, we want to close partially initialized (if any) transformers
closeTransformers()
@ -261,10 +262,10 @@ func (s *EtcdOptions) Complete(
s.EncryptionProviderConfigFilepath,
dynamicTransformers,
encryptionConfiguration.EncryptionFileContentHash,
ctx.Done(),
ctxServer.Done(),
)
go kmsConfigController.Run(ctx)
go kmsConfigController.Run(ctxServer)
return nil
},

View File

@ -525,9 +525,11 @@ resources:
func TestEncryptionConfigHotReloadFileWatch(t *testing.T) {
testCases := []struct {
fileUpdateMethod string
sleep time.Duration
}{
{
fileUpdateMethod: "truncate",
sleep: 20 * time.Second, // significantly longer than KMSCloseGracePeriod
},
{
fileUpdateMethod: "deleteAndCreate",
@ -553,6 +555,7 @@ resources:
name: kms-provider
cachesize: 1000
endpoint: unix:///@kms-provider.sock
timeout: 1s
`
pluginMock, err := mock.NewBase64Plugin("@kms-provider.sock")
if err != nil {
@ -598,10 +601,12 @@ resources:
name: new-kms-provider-for-secrets
cachesize: 1000
endpoint: unix:///@new-kms-provider.sock
timeout: 1s
- kms:
name: kms-provider
cachesize: 1000
endpoint: unix:///@kms-provider.sock
timeout: 1s
- resources:
- configmaps
providers:
@ -609,6 +614,7 @@ resources:
name: new-kms-provider-for-configmaps
cachesize: 1000
endpoint: unix:///@new-kms-provider.sock
timeout: 1s
- identity: {}
`
// start new KMS Plugin
@ -706,6 +712,22 @@ resources:
if !bytes.HasPrefix(rawEnvelope, []byte(wantPrefix)) {
t.Fatalf("expected secret to be prefixed with %s, but got %s", wantPrefix, rawEnvelope)
}
// make sure things still work at a "later" time
if tc.sleep != 0 {
time.Sleep(tc.sleep)
}
_, err = test.createSecret(fmt.Sprintf("secret-%d", rand.Intn(100000)), "default")
if err != nil {
t.Fatalf("Failed to create test secret, error: %v", err)
}
_, err = test.restClient.CoreV1().Secrets("").List(
context.TODO(),
metav1.ListOptions{},
)
if err != nil {
t.Fatalf("failed to re-list secrets, err: %v", err)
}
})
}
}