You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a follow-up to issue #3263. In addition to storing the provider configuration on provider creation we'll also want to patch the provider configuration after the fact. We might want to implement something like:
and expose that through the CLI. To implement the patch handler we'll need to:
Extend the ProviderManager interface with a new PatchProvider method, e.g PatchProvider(ctx context.Context, uuid uuid.UUID, patch minderv1.ProviderPatch) (minderv1.Provider, error)
Extend the ProviderClassManager interface with a new Patch method
The ProviderManager.PatchProvider would get the correct class manager and call its Patch
The per-provider Patch implementation is where the generic protobuf struct is unmarshalled into the correct Go struct and the configuration adjusted
The text was updated successfully, but these errors were encountered:
This is a follow-up to issue #3263. In addition to storing the provider configuration on provider creation we'll also want to patch the provider configuration after the fact. We might want to implement something like:
and expose that through the CLI. To implement the patch handler we'll need to:
The text was updated successfully, but these errors were encountered: