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
  • h

    helpful-vegetable-35581

    08/16/2018, 5:08 PM
    Yeh I'd love to give it a try, our current terraform code uses cloudint_config quite a bit
  • s

    stocky-spoon-28903

    08/16/2018, 5:09 PM
    @helpful-vegetable-35581 awesome, youโ€™re the first person Iโ€™ve met that actually uses it ๐Ÿ™‚
  • m

    microscopic-florist-22719

    08/16/2018, 5:15 PM
    @helpful-vegetable-35581 here's the repo: https://github.com/pulumi/pulumi-terraform-template
  • h

    helpful-vegetable-35581

    08/16/2018, 5:16 PM
    Thanks, I'll give it a shot first thing in the morning
  • m

    microscopic-florist-22719

    08/16/2018, 5:17 PM
    We're not yet publishing packages for it and it's a touch out of date w.r.t. our releases, but it does have a small example.
  • h

    helpful-vegetable-35581

    08/16/2018, 5:17 PM
    I can build my own node packages not an issue
    m
    • 2
    • 2
  • h

    helpful-vegetable-35581

    08/16/2018, 5:17 PM
    I'll see if theres anything sensible from my attempt to PR
  • h

    helpful-vegetable-35581

    08/16/2018, 9:03 PM
    @microscopic-florist-22719 raised a small issue on the terraform-template repo. Also just ran into an odd case with an update
  • h

    helpful-vegetable-35581

    08/16/2018, 9:04 PM
    update decided that an openstack compute instance needed to be replaced
  • h

    helpful-vegetable-35581

    08/16/2018, 9:06 PM
    so did the pulumi thing of create before destroy, but that create pushed me over quota so the instance was created but failed to start and got an error back. That's all ok but now I've got a dead instance that pulumi hasn't actually kept a record of. So I run pulumi destroy to try and get back to a blank slate and this error'd instance is still there and had to be deleted manually.
  • h

    helpful-vegetable-35581

    08/16/2018, 9:06 PM
    I'm guessing an assumption failed somewhere that if a create failed the thing isn't created at all which wasn't true in this case?
  • m

    microscopic-florist-22719

    08/16/2018, 9:07 PM
    I'm guessing an assumption failed somewhere that if a create failed the thing isn't created at all which wasn't true in this case?
    That's right. Pulumi does support the notion of partial state to help accommodate cases like this, but it's not yet plumbed through
    tfbridge
    .
  • m

    microscopic-florist-22719

    08/16/2018, 9:08 PM
    (and once it is, we still depend on the provider to do the right thing here and return partial state that we can keep track of)
  • m

    microscopic-florist-22719

    08/16/2018, 9:08 PM
    This is tracked by https://github.com/pulumi/pulumi-terraform/issues/213
  • h

    helpful-vegetable-35581

    08/16/2018, 9:09 PM
    Cool I'll keep an eye on it, just hit it again because an instance didn't create because the volume backend was too slow. (Our OpenStack installation is a little bit iffy ๐Ÿ˜ž)
    ๐Ÿ‘ 1
  • a

    adventurous-jordan-10043

    08/17/2018, 7:01 AM
    Pulumi is finally available on homebrew repo, meaning
    brew install pulumi
    is a new way to get Pulumi on your machine ๐ŸŽ‰
    ๐Ÿ’ฏ 3
    ๐ŸŽ‰ 6
    โค๏ธ 7
    w
    b
    • 3
    • 2
  • h

    helpful-vegetable-35581

    08/17/2018, 3:55 PM
    So pulumi seems to stop creating resources when one fails?
  • h

    helpful-vegetable-35581

    08/17/2018, 3:56 PM
    I have a plan with 19 resources, one of them happens to fail to create and I end up with only 12 created
  • h

    helpful-vegetable-35581

    08/17/2018, 3:56 PM
    pulumi just never tried to make the other 6?
  • h

    helpful-vegetable-35581

    08/17/2018, 3:58 PM
    If I keep runing "pulumi up" it eventually gets the rest built. Is this some funky early exit stuff caused by the parallelism?
    s
    m
    • 3
    • 4
  • h

    helpful-vegetable-35581

    08/20/2018, 9:47 AM
    So the Pulumi stack setting files (files like Pulumi.infrastructure-frawat01.yaml), what's the recommended workflow for them? the default .gitignore doesn't ignore them suggesting we should check them in, but aren't they just a local cache of what's on the pulumi service anyway? Bit confused by them.
    b
    • 2
    • 2
  • s

    strong-helicopter-19655

    08/20/2018, 2:26 PM
    I have a failing
    pulumi up
    update, which I think is a bug in Pulumi, though it might be a bug in Terraform as well. Can I report this privately?
    w
    • 2
    • 1
  • g

    gray-city-50684

    08/20/2018, 4:01 PM
    I try to run the following Helm install, targeting an Azure AKS cluster, on Windows 10 (Pulumi v0.15.0)
  • g

    gray-city-50684

    08/20/2018, 4:01 PM
    export const certManagerChart = new helm.v2.Chart("cert-manager", { repo: "stable", chart: "cert-manager", version: "v0.4.1", }, { providers: { kubernetes: k8sProvider } });
  • g

    gray-city-50684

    08/20/2018, 4:01 PM
    And I get an error, something that looks like wrong escaping of drive letter on Windows:
    w
    • 2
    • 1
  • c

    creamy-potato-29402

    08/20/2018, 4:02 PM
    Ah. That's very plausible. I did not test that stuff on Windows
  • c

    creamy-potato-29402

    08/20/2018, 4:03 PM
    Please file a bug with the error
  • g

    gray-city-50684

    08/20/2018, 4:04 PM
    OK, I'll do it right away
  • g

    gray-city-50684

    08/20/2018, 4:09 PM
    Done as #143 in pulumi-kubernetes (I hope that is the right repo for this)
  • c

    creamy-potato-29402

    08/20/2018, 4:10 PM
    That's great, thanks
Powered by Linen
Title
c

creamy-potato-29402

08/20/2018, 4:10 PM
That's great, thanks
View count: 1