Did Pulumi support deployment of app or containers...
# general
l
Did Pulumi support deployment of app or containers to cloud foundry instance.
g
Cloud Foundry isn’t in the list of available providers for Pulumi at this moment (https://www.pulumi.com/docs/intro/cloud-providers/), though the terraform community has built a terraform provider (https://github.com/cloudfoundry-community/terraform-provider-cf) so it’s possible to create your own Pulumi provider using the terraform one (I’ve never done that myself so I’m not sure how easy or difficult that is). The newer runtime for CF, which is based on Kubernetes exposes, if I recall correctly, the Kubernetes API server so you might be able to use the Kubernetes provider to deploy apps. If you’re using the “older” Garden and Diego versions of the runtime, that might be harder (in that case you’ll likely need to go the custom provider route)
👍 1