Hi Team, I'm planning to conduct a POC for the fol...
# automation-api
h
Hi Team, I'm planning to conduct a POC for the following use case and would appreciate your assistance in providing related links, GitHub repositories, documentation, and examples. Use Case: 1. Utilize Pulumi for infrastructure automation. 2. Establish a CI/CD pipeline. 3. Create a GKE cluster using Go lang. 4. Deploy a sample containerized application in the created GKE. 5. Roll out the infrastructure and application containers to the next environment (for example, if the initial setup is for Dev, roll out the same setup to the QA environment). Your support in gathering the necessary resources for this POC would be highly valued. Thank you.
w
You can find all this with a simple Google search or looking at the Pulumi documentation https://www.pulumi.com/docs. 1. It doesn’t sound like you need to use the automation API for this POC. You could probably get away with using the CLI (https://www.pulumi.com/docs/cli/) 2. Using Pulumi Cloud Deployments will be the easiest way to do CI/CD (https://www.pulumi.com/docs/pulumi-cloud/deployments/ci-cd-integration-assistant/) 3. That’s all here https://www.pulumi.com/registry/packages/gcp/how-to-guides/gcp-go-gke/ 4. Use kubectl or whatever else to deploy your app 5. You need to understand how stacks work for that https://www.pulumi.com/docs/concepts/stack/
h
Hi Jason, Thanks a lot for your info.