https://pulumi.com logo
Docs
Join the conversationJoin Slack
Channels
announcements
automation-api
aws
azure
blog-posts
built-with-pulumi
cloudengineering
cloudengineering-support
content-share
contribex
contribute
docs
dotnet
finops
general
getting-started
gitlab
golang
google-cloud
hackathon-03-19-2020
hacktoberfest
install
java
jobs
kubernetes
learn-pulumi-events
linen
localstack
multi-language-hackathon
office-hours
oracle-cloud-infrastructure
plugin-framework
pulumi-cdk
pulumi-crosscode
pulumi-deployments
pulumi-kubernetes-operator
pulumi-service
pulumiverse
python
registry
status
testingtesting123
testingtesting321
typescript
welcome
workshops
yaml
Powered by Linen
general
  • b

    brave-angle-33257

    12/12/2018, 4:59 PM
    does pulumi have targeted resource updating? similar to
    -target vm.myvm
    in terraform? we have some stacks with multiple VMSS in them, but we may want to only update the config of 1 of the multiple resources as a blue/green test
    • 1
    • 1
  • f

    full-dress-10026

    12/12/2018, 5:19 PM
    How would I set the health check params on a LB defined like:
    let fibLB = infra.x.ecs.LoadBalancer.fromPortInfo("fib-fargate-lb", {
        cluster: cluster,
        port: 80,
        targetPort: 8080,
        external: true,
        protocol: "http"
    });
    l
    • 2
    • 10
  • f

    full-dress-10026

    12/12/2018, 5:38 PM
    The docs for
    port
    in
    TargetGroupArgs
    say this:
    /**
         * The port to use to connect with the target. Valid values are either ports 1-65536, or `traffic-port`. Defaults to `traffic-port`.
         */
        readonly port: pulumi.Input<number>;
    How are you supposed to put in
    traffic-port
    if the type is a
    number
    ?
  • i

    incalculable-soccer-97284

    12/12/2018, 10:11 PM
    Hi, I'm currently blocked by https://github.com/pulumi/pulumi/issues/2284 and would like to revert to <1.16.3 in the mean time. I grabbed the tarball from change log, but am running into
    error: failed to load language plugin python: no language plugin `python` found in the workspace or on your $PATH
    . Has anyone run into this issue? Any pointers as to how to make it work?
    m
    b
    • 3
    • 8
  • e

    early-musician-41645

    12/12/2018, 10:17 PM
    Can I get a pointer to a doc showing how to
    get
    an existing resource in AWS? E.g. someone created an IAM role and I'd like to create some `aws.iam.RolePolicy`s for it
    m
    c
    w
    • 4
    • 22
  • e

    elegant-planet-7298

    12/13/2018, 5:31 AM
    Has anyone found a way to change the default kubernetes upscale and downscale parameters using Pulumi or have you had to change the kube config file directly? I can't see anything relating to this in the GCP or Python references.
    c
    • 2
    • 1
  • c

    cold-coat-35200

    12/13/2018, 10:24 AM
    Hi, With the latest pulumi cli version the preview is really slow, 5 time slower with the same code, any idea what cause this?
    Untitled.txt
    m
    b
    c
    • 4
    • 12
  • a

    abundant-cpu-32345

    12/13/2018, 1:04 PM
    Hey everyone, I have a weird issue. I deployed on ECS with pulumi and somehow all outgoing network requests timeout in the containers. The EC2 instance doesn't have this problem, but when using i.e. curl in the container to do any http(s) request it just hangs. Am I missing something obvious here?
  • b

    better-rainbow-14549

    12/13/2018, 4:08 PM
    i've got a strange issue where pulumi keeps wanting to create kubernetes resources that already exist, but only if i run pulumi from a different machine (with shared state files). i assume it's a permissions issue of some sort but afaict pulumi's using the same ARM_CLIENT_ID etc. on both machiens and I haven't got anywhere with fixing it. any ideas please?
    m
    g
    c
    • 4
    • 14
  • g

    gifted-island-55702

    12/13/2018, 7:16 PM
    Hi. I just found this example: https://github.com/pulumi/kubernetes-the-prod-way/blob/master/gcp/infrastructure/index.ts#L23-L32
  • g

    gifted-island-55702

    12/13/2018, 7:17 PM
    However, it seems that there is no such package: pulumi/gke. I know I can use pulumi/gcp/container but is there a utility to generate a kubeconfig from the cluster outputs?
    c
    • 2
    • 7
  • g

    gifted-island-55702

    12/13/2018, 7:18 PM
    gcp.container.Cluster
    doesn’t have kubeconfig output
  • c

    creamy-potato-29402

    12/13/2018, 7:18 PM
    Right. My bad. I'll fix right away
  • a

    abundant-airplane-93796

    12/13/2018, 7:18 PM
    Hey all. Is there any way for me to get Pulumi to take control of a pre-existing resource on GCP?
    w
    • 2
    • 1
  • c

    creamy-potato-29402

    12/13/2018, 7:20 PM
    Basically we just want to use gcp package instead
  • c

    creamy-potato-29402

    12/13/2018, 7:21 PM
    @abundant-airplane-93796 yes, depending on what you mean. Gcp.container.cluster.get (for example)
  • c

    creamy-potato-29402

    12/13/2018, 7:21 PM
    Each resource has a get function
  • a

    abundant-airplane-93796

    12/13/2018, 7:23 PM
    @creamy-potato-29402 I've been trying to use that (which is unfortunately missing in python so I had to switch to node 😭), but can't quite figure out the correct args
  • c

    creamy-potato-29402

    12/13/2018, 7:25 PM
    Cc @incalculable-sundown-82514
  • i

    incalculable-sundown-82514

    12/13/2018, 7:26 PM
    It’s true, it’s missing in Python - currently tracked by https://github.com/pulumi/pulumi/issues/1123. It’s on my to-do list over the next month!
  • g

    gifted-island-55702

    12/13/2018, 7:27 PM
    @creamy-potato-29402 I know I can use gcp package but is there an existing function that returns kubeconfig contents from GKE cluster outputs?
  • a

    abundant-airplane-93796

    12/13/2018, 7:30 PM
    is there a way I can find what the ID argument should be for that get function for a GCP cluster? I think that's what I'm messing up
    c
    • 2
    • 17
  • c

    creamy-potato-29402

    12/13/2018, 7:34 PM
    @gifted-island-55702 Yes, I’m just saying I’ll change this to uuse the GCP SDK directly
  • c

    creamy-potato-29402

    12/13/2018, 7:34 PM
    one moment
  • e

    early-family-43281

    12/13/2018, 7:37 PM
    Hi everybody
  • e

    early-family-43281

    12/13/2018, 7:37 PM
    i'm relatively new to pulumi
  • e

    early-family-43281

    12/13/2018, 7:37 PM
    great project, btw
  • e

    early-family-43281

    12/13/2018, 7:37 PM
    been trying to do something and i can't figure out the best way to do it
  • e

    early-family-43281

    12/13/2018, 7:38 PM
    i've got a pulumi app that deploys a stack on aws with some kinesis streams
  • e

    early-family-43281

    12/13/2018, 7:38 PM
    now, i want to run another pulumi app (different) that will share one of those kinesis streams
Powered by Linen
Title
e

early-family-43281

12/13/2018, 7:38 PM
now, i want to run another pulumi app (different) that will share one of those kinesis streams
View count: 2