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

    bitter-dentist-28132

    08/30/2019, 2:10 PM
    is there a way to wait for things, like what you can do with terraform and
    null_resource
    ? I just can't seem to order a
    ClusterIssuer
    correctly so i'd like to just wait a bit after cert-manager is installed.
    e
    b
    c
    • 4
    • 44
  • b

    bitter-dentist-28132

    08/30/2019, 7:47 PM
    Plan apply failed: Unauthorized
    what does this mean? it seems to only happen on one stack...? 🤔
    w
    • 2
    • 15
  • s

    some-doctor-62800

    08/30/2019, 7:52 PM
    @bitter-oil-46081 did 2744 not fix this as well? Error: Cannot call 'requireOutputSync' if the referenced stack has secret outputs. Use 'requireOutput' instead.
  • s

    some-doctor-62800

    08/30/2019, 7:52 PM
    https://github.com/pulumi/pulumi/issues/2744
    w
    • 2
    • 3
  • s

    some-doctor-62800

    08/30/2019, 8:00 PM
    right, manual installation fixes it, brew is still serving beta 2
  • s

    some-doctor-62800

    08/30/2019, 8:03 PM
    @bitter-oil-46081 thanks for the welcome improvement 🙂
    👍 1
  • s

    some-doctor-62800

    08/30/2019, 8:31 PM
    this is such a gross hack 😶https://github.com/terraform-providers/terraform-provider-postgresql/issues/49
  • s

    some-doctor-62800

    08/30/2019, 8:31 PM
    wouldn't even be able to connect to two ssl required dbs
  • b

    bitter-dentist-28132

    08/30/2019, 10:20 PM
    can
    pulumi config
    no longer show secrets?
    w
    • 2
    • 2
  • a

    ambitious-ram-5811

    08/30/2019, 11:59 PM
    When we find bugs, should we file them on pulumi/pulumi, or try to find (and possibly incorrectly guess) the specific module?
    b
    • 2
    • 1
  • a

    ambitious-ram-5811

    08/30/2019, 11:59 PM
    (re: https://pulumi-community.slack.com/archives/C84L4E3N1/p1567208954139700?thread_ts=1567142868.092900&cid=C84L4E3N1)
  • i

    incalculable-diamond-5088

    08/31/2019, 6:36 PM
    On large stacks (~400 resources) pulumi times out on some resources and exits, but doesn’t update the state with resources created in that time. Obviously on the next
    pulumi up
    it tries to created those resorces and fails as they already exist. It’s a big problem when this resource is an enabler for other resources (for example a k8s CRD controller) Is there a concurrency limit I can increase or any other way to solve this?
    g
    • 2
    • 3
  • m

    mammoth-caravan-51104

    09/01/2019, 11:52 AM
    I want to use AWS Container Insights in a kubernetes cluster. AWS provides config yaml file. However there are some placeholders that needs to be replaced with cluster name and region. I was thinking about writing a simple async function to get the file and replace placeholders. I'm lost with types, because ConfigGroup yaml: doesn't accept a Promise. Any hints how to handle that?
    e
    • 2
    • 3
  • m

    mammoth-caravan-51104

    09/01/2019, 5:53 PM
    Our of curiosity, how do you handle monitoring in your Kubernetes clusters? What kind of tools / setup do you use?
    r
    w
    • 3
    • 9
  • h

    hundreds-portugal-17080

    09/01/2019, 8:38 PM
    Hello, when I perform pulumi up to launch kubernetes and some pods, if the pod goes into retry due to some errors, pulumi up never exits. is there a way to set number of retries or timeout? It took 52 minutes and pulumi exited with the stack failure and the pod actually retried 12 times.
    w
    b
    +2
    • 5
    • 8
  • b

    best-xylophone-83824

    09/02/2019, 1:05 PM
    does anybody experience slowness of pulumi runs? Simple run with no refresh, only a single stack output variable added, with no resources unchanged per plan has been running for 10 minutes by now... I'll try to gather more debug info
    t
    w
    • 3
    • 21
  • s

    sparse-action-84781

    09/02/2019, 1:35 PM
    Anyone have any idea how this could be solved? Have the same issue and now Pulumi apply is occasionally clearing the sub-domain record entirely.
    🤔 1
  • r

    rhythmic-finland-36256

    09/02/2019, 7:25 PM
    I get the idea of convention over configuration regarding the providers (e.g. azure or kubernetes) but somehow falling back to a default like the currently logged in azure account or the active kubeconfig of the terminal looks to me like a bit of a risky thing. Sure, if pulumi is only run on CI and I locally only use test clusters this should not be an issue. But there may be the situation that one is developing some new features of a pulumi program, forgets to explicitly add the provider and pulumi falls back to the default provider which accidentally at this point in time is a current session on the production azure account. Is there an easy way to secure against such a scenario? Can I disable the default provider globally or is there a way to set the default provider to some invalid credentials on a per project (but for all stacks) basis? For the kubeconfig I could imaging setting an according
    direnv
    . Maybe this also works for Azure ARM env vars. But is there a better concept? If not, are there plans of doing so or are there good reasons for always having a default in place? Thanks for your help!
    👍 1
    w
    • 2
    • 3
  • d

    damp-room-71337

    09/03/2019, 8:35 AM
    anyone know why my ComponentResource doesn’t output
    port
    , but does correctly include it in
    url
    ?
    this.hostname = service.metadata.name;
    this.port = service.spec.ports.apply(
        ports => ports.find(p => p.name === "http").port
    );
    this.url = pulumi.interpolate`http://${this.hostname}:${this.port}/`;
    
    this.registerOutputs({
        hostname: this.hostname,
        port: this.port,
        url: this.url
    });
  • g

    gray-lawyer-89054

    09/03/2019, 8:55 AM
    Is there any good reason why
    pulumi preview
    command hasn't got
    --config
    flag like a
    pulumi up
    has? I feel it's little bit inconsistent because
    up
    does preview before applying changes.
    g
    • 2
    • 1
  • d

    damp-room-71337

    09/03/2019, 1:27 PM
    does
    StackReference
    work with S3 state backends?
    w
    • 2
    • 8
  • q

    quick-action-34599

    09/03/2019, 2:32 PM
    What’s the right way to check and see if an S3 bucket already exists before I try to create it?
  • q

    quick-action-34599

    09/03/2019, 2:33 PM
    I know I can do
    getBucket()
  • q

    quick-action-34599

    09/03/2019, 2:33 PM
    will
    GetBucketResult
    be null if I await it, if the bucket doesn’t exist?
    • 1
    • 1
  • d

    damp-room-71337

    09/03/2019, 2:41 PM
    stackReferences + S3 backend means having to store all stack states in the same bucket, requiring stacks to have unique names across stacks. I now have a stack called
    cluster-infrastructure-cluster-infrastructure-dev
  • m

    magnificent-accountant-19074

    09/03/2019, 3:40 PM
    When I register for new account and try to run the getting started code I get could not create stack: [404] Not Found: Organization 'xx' not found anyone running into same problems?
    w
    m
    • 3
    • 12
  • s

    some-doctor-62800

    09/03/2019, 5:44 PM
    parent
    behavior when a child changes a property that should result in a replace of only the child becomes a very unintuitive tree instead. At this point it's not a replace so it also doesn't respect
    deleteBeforeReplace
    set on the child
  • s

    some-doctor-62800

    09/03/2019, 5:45 PM
    (and without parent reference + how you'd expect it with parent reference too)
  • s

    some-doctor-62800

    09/03/2019, 5:46 PM
    Can somebody explain me why this exactly manifests, is it expected behavior?
    w
    • 2
    • 9
  • s

    some-doctor-62800

    09/03/2019, 5:54 PM
    I would like to better understand what specifying a parent entails, and when you really shouldn't
Powered by Linen
Title
s

some-doctor-62800

09/03/2019, 5:54 PM
I would like to better understand what specifying a parent entails, and when you really shouldn't
View count: 1