salmon-pizza-65823
09/14/2018, 3:02 PMcreamy-potato-29402
09/14/2018, 4:16 PMcreamy-potato-29402
09/14/2018, 4:16 PMsalmon-pizza-65823
09/14/2018, 4:37 PMsalmon-pizza-65823
09/14/2018, 5:32 PMflaky-receptionist-88878
09/14/2018, 8:06 PMglamorous-printer-66548
09/14/2018, 9:55 PMparent
vs dependsOn
of another resource B? I’m currently just arguing whether I should make the k8s namespace of my app the parent or dependsOn of the resources inside the namespace.wooden-toddler-96888
09/14/2018, 9:58 PMkubernetes:apps:Deployment kube-system/kubernetes-dashboard updating 1 error. error: Plan apply failed: unable to fetch resource description for apps/v1beta2: Unauthorized
Is this a problem speaking to the k8s cluster? I'm using kubeconfig that comes out of the eks resource that is launched right above.glamorous-printer-66548
09/14/2018, 10:47 PMdry-pilot-73614
09/14/2018, 10:58 PMPlan apply failed: Error, failed to create instance unleash: googleapi: Error 403: Access Not Configured. Cloud SQL Admin API has not been used in project 563584335869 before or it is disabled. Enable it by visiting <https://console.developers.google.com/apis/api/sqladmin.googleapis.com/overview?project=563584335869> then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry., accessNotConfigured
I do have sqladmin.googleapis.com enabled, but 563584335869 is not my project.flaky-receptionist-88878
09/15/2018, 3:31 AMflaky-receptionist-88878
09/15/2018, 3:32 AMflaky-receptionist-88878
09/15/2018, 3:32 AMflaky-receptionist-88878
09/15/2018, 3:32 AMflaky-receptionist-88878
09/15/2018, 3:33 AMflaky-receptionist-88878
09/15/2018, 3:34 AMflaky-receptionist-88878
09/15/2018, 3:34 AMflaky-receptionist-88878
09/15/2018, 3:36 AMbitter-oil-46081
09/15/2018, 3:36 AM@pulumi/pulumi/runtime/settings
flaky-receptionist-88878
09/15/2018, 3:38 AMflaky-receptionist-88878
09/15/2018, 3:44 AMflaky-receptionist-88878
09/15/2018, 3:44 AMflaky-receptionist-88878
09/15/2018, 3:44 AMflaky-receptionist-88878
09/15/2018, 4:06 AMflaky-receptionist-88878
09/15/2018, 4:06 AMflaky-receptionist-88878
09/15/2018, 4:07 AMwooden-toddler-96888
09/16/2018, 6:49 PMfunction getLoadBalancer(args, opts) {
return pulumi.runtime.invoke("aws:elasticloadbalancing/getLoadBalancer:getLoadBalancer", {
"name": args.name,
"tags": args.tags,
}, opts);
}
How do I find the code for aws:elasticloadbalancing/getLoadBalancer:getLoadBalancer
?
For quick context, this is what I'm trying to do. Since I'm launching a service of type LoadBalancer on EKS, I then want to get the ELB object and create a Route53 Alias to it. Since I need ELB name to getLoadBalancer
, but EKS gives me the DNS Name or Hostname, I wanted to write a new function to get LoadBalancer by that name.
I presume this'll also help when I get to launching an Ingress Controller.
Of course in your blog post this works great because when you launch a CloudFront distribution, you get a rich object back.
Also tell me if I'm going about this all wrong. I have a hello world launching from EKS. Just need to wire up the last Route53 record.glamorous-printer-66548
09/16/2018, 8:15 PMstaging
or prod
I always have to prefix or suffix the stack name with the name of the project in which it is contained, which seems pretty redundant and actually leads to really long stack names for no apparent reason. I think it would be better if stack names are only required to be unique within a project.
To depict this via an example:
Ideally It’d like to have names like this:
project: my-fancy-project
- stack: staging
- stack: prod
However because of the limitations above I have to use names like this:
project: my-fancy-project
- stack: my-fancy-project-staging
- stack: my-fancy-project-prod
The pulumi CLI also shows in the preview an odd and quite long looking name like this:
TYPE NAME
pulumi😛ulumi:Stack my-fancy-project-my-fancy-project-staging
A really concrete problem with the long stack names is that the name
column of the pulumi😛ulumi:Stack resource in the pulumi preview
uses up so much space that on a notebook there’s barely any space left for the Info
column and I’m often not able to decypher what a particular error message in the Info column actually says.quiet-wolf-18467
09/17/2018, 10:47 AMquiet-wolf-18467
09/17/2018, 10:52 AMinfrastructure
repo that could pull in their resources for a single deployment mechanism? Would anyone advise against that?quiet-wolf-18467
09/17/2018, 10:52 AMinfrastructure
repo that could pull in their resources for a single deployment mechanism? Would anyone advise against that?white-balloon-205
09/17/2018, 1:14 PMinfrastructure
repo (instead of just `git clone`ing the service repo - though that would work fine too). Packages provide a native way to do versioning and dependency management.quiet-wolf-18467
09/17/2018, 1:18 PMstocky-spoon-28903
09/17/2018, 2:00 PMquiet-wolf-18467
09/17/2018, 2:16 PMbig-piano-35669
09/17/2018, 2:51 PMstocky-spoon-28903
09/17/2018, 3:00 PMquiet-wolf-18467
09/17/2018, 3:06 PMwhite-balloon-205
09/17/2018, 3:15 PMHas anyone attempted “GitOps” pipelines with Pulumi?Yes - many Pulumi users are using a GitOps style deployment pipeline. See https://pulumi.io/reference/cd.html for details on CI integration.
is there GitLab support / integrations in the roadmap?Yes! Definitely interested in co-developing with users on this. Cc @square-apartment-28429.
wooden-toddler-96888
09/17/2018, 4:43 PMquiet-wolf-18467
09/17/2018, 4:48 PMwooden-toddler-96888
09/17/2018, 4:53 PM