examples
examples copied to clipboard
Infrastructure, containers, and serverless apps to AWS, Azure, GCP, and Kubernetes... all deployed with Pulumi
Is the text here correct? https://github.com/pulumi/examples/blob/8141d690013c013eb47534f8f4a1de845eda0457/azure-ts-vm-provisioners/provisioners/provisioner.ts#L6 It says it runs the first time and then continues with saying that it runs every time it changes. So what is it?
EKS requires specific subnets tags for the EKS cluster to work. Not all our examples have these set.
Lots of the examples in this repo use string interpolation to build YAML or JSON documents, especially around generating kubeconfig files. A few examples I could find: https://github.com/pulumi/examples/blob/fd422a115ca1602eed9a895ab4ed748185d798cc/aws-go-eks/main.go#L227 https://github.com/pulumi/examples/blob/90f6fa541f7d6cf0b5171b39e7ef234b785cc98f/aws-cs-eks/EksStack.cs#L14-L52 Unfortunately,...
Following [the example](https://www.pulumi.com/docs/tutorials/azure/azure-ts-dynamicresource/) I get an error if I try to enable https for the custom domain. ``` error: The resource format is invalid. ``` Creating the custom domain works,...
There's no mechanism to ensure that code blocks referencing example code match. We should have a mechanism to audit that code in the README matches that within the example or...
The TODO app container appears to be invalid. I followed the README and successfully created the cluster and deployed the app, but the container is crash looping. I connected to...
Can we have an example for python integration testing please?
Some helm charts have configmap diffs that need to trigger a pod rollout. This isn't a supported kubernetes feature (yet) so adding an example using a transformation might be useful....
@EvanBoyle wrote this in slack, and I think it'd be useful to put here somewhere: ```go package main import ( "github.com/pulumi/pulumi/sdk/v2/go/pulumi" ) func main() { pulumi.Run(func(ctx *pulumi.Context) error { ref,...
[Kubernetes Helm chart example](https://github.com/pulumi/examples/tree/master/kubernetes-ts-helm-wordpress) needs to be updated. The `stable` repository has been deprecated. The WordPress examples should point to [bitnami/wordpress](https://hub.helm.sh/charts/bitnami/wordpress) ```ts const wordpress = new k8s.helm.v2.Chart("wpdev", { repo: "stable",...