Component option propagation (NodeJS SDK) #2713
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Proposed changes
Epic: #2254
Fixes: #1938
Fixes: #2049
Fixes: #812
This PR standardizes the option propagation logic for the component resources in the pulumi-kubernetes NodeJS SDK. The general approach is:
version
andpluginDownloadURL
if specified.Specification
The component resource is responsible for computing sub-options for invokes and for child resource declarations. This table outlines the expected behavior for each resource option when presented to a component resource.
additionalSecretOutputs
aliases
customTimeouts
deleteBeforeReplace
deletedWith
dependsOn
ignoreChanges
import
parent
protect
provider
providers
replaceOnChanges
retainOnDelete
transformations
version
Should propagate when child resource is from the same provider type.
pluginDownloadURL
Should propagate when child resource is from the same provider type.
Testing
A new test case is provided (test case, test program) that exercises option propagation across the component resources:
Upgrade testing must be done manually, with an emphasis on avoiding replacement due to reparenting.
Related issues (optional)
The p/p NodeJS SDK doesn't propagate the
pluginDownloadURL
option to the Invoke RPC.pulumi/pulumi#14839