calm-quill-21760
09/24/2021, 11:57 PMpulumi_kubernetes.apiextensions.CustomResource
resource to wait upon successful completion of specific services in a pulumi_kubernetes.yaml.ConfigFile
. The CustomResource has ConfigFile listed in depends_on
, but watching the output of pulumi up
shows it’s still trying to run before ConfigFile has completed. What am I missing?billowy-army-68599
09/25/2021, 12:22 AMConfigFile
is a ComponentResource with sub resources, but the await logic in the Kubernetes provider doesn't know the status of the application of the sub resources.
I'd recommend using kube2pulumi to make the resources in the ConfigFile native resources, and use dependsOn therecalm-quill-21760
09/27/2021, 3:36 PM