https://pulumi.com logo
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
  • f

    flaky-receptionist-88878

    09/06/2018, 7:52 PM
    Also I changed dependsOn: [namespace] to parent : namespace and my plan shows a acknowledges of who should run first, it still fails with same error however.
  • f

    flaky-receptionist-88878

    09/06/2018, 7:52 PM
  • c

    creamy-potato-29402

    09/06/2018, 8:25 PM
    @flaky-receptionist-88878 looking now
  • c

    creamy-potato-29402

    09/06/2018, 8:25 PM
    Can you give the resource quota YAML?
  • f

    flaky-receptionist-88878

    09/06/2018, 8:36 PM
    yes
  • f

    flaky-receptionist-88878

    09/06/2018, 8:36 PM
    ResourceQuota.yaml
  • c

    creamy-potato-29402

    09/06/2018, 8:36 PM
    sick, thanks.
  • c

    creamy-potato-29402

    09/06/2018, 8:36 PM
    Will check it out in a bit.
  • f

    flaky-receptionist-88878

    09/06/2018, 8:37 PM
    cool thanks!
    c
    • 2
    • 2
  • c

    creamy-potato-29402

    09/06/2018, 8:57 PM
    @flaky-receptionist-88878 fixed in the last commit of this PR: https://github.com/pulumi/pulumi-kubernetes/pull/190/commits
  • f

    flaky-receptionist-88878

    09/06/2018, 8:59 PM
    geez that was insanely fast
  • c

    creamy-potato-29402

    09/06/2018, 8:59 PM
    we aim to please! 🙂
  • f

    fresh-umbrella-15520

    09/07/2018, 4:04 AM
    hi, I am getting an error trying to create a launchconfig in my vpc (AWS):
    No default VPC for this user
    I do not want to use a default VPC and I only see the
    vpcClassicLinkId
    arg, but I tried that without luck. Is there another argument I am missing?
  • f

    fresh-umbrella-15520

    09/07/2018, 4:08 AM
    -.ts
  • m

    microscopic-florist-22719

    09/07/2018, 4:08 AM
    Can you try replacing
    webInstanceSg.name
    with
    webInstanceSg.id
    ?
  • f

    fresh-umbrella-15520

    09/07/2018, 4:26 AM
    Will do, thanks
  • f

    fresh-umbrella-15520

    09/07/2018, 4:29 AM
    That solved my issue, not sure why I thought name was the correct value. I must have stared at it too long.
  • m

    microscopic-florist-22719

    09/07/2018, 4:30 AM
    Glad to hear it! The
    LaunchConfiguration
    parameters are not exactly self-explanatory. Even the underlying API docs are... not great: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_CreateLaunchConfiguration.html
  • f

    fresh-umbrella-15520

    09/07/2018, 4:31 AM
    yeah, it was a dumb mistake. I have built thousands of these with terraform and cloudformation.
    b
    • 2
    • 1
  • f

    fresh-umbrella-15520

    09/07/2018, 4:32 AM
    I think learning typescript at the same time, has made me make some of those, but that comes with any new learning. Appreciate the fast response and help
  • m

    microscopic-florist-22719

    09/07/2018, 4:32 AM
    No problem 🙂
  • f

    fresh-umbrella-15520

    09/07/2018, 4:34 AM
    Side note, any chance will you be selling shirts or stickers?
  • m

    microscopic-florist-22719

    09/07/2018, 4:35 AM
    @adamant-restaurant-73893 has you covered: https://info.pulumi.com/community/give-me-a-tshirt
    👍 1
  • c

    creamy-potato-29402

    09/07/2018, 4:35 AM
    The stickers do not suck however
  • f

    fresh-umbrella-15520

    09/07/2018, 4:37 AM
    Cool, myself and @flaky-receptionist-88878 are working on this for k8s and aws items, so maybe we can put something together once we get a good story.
    💯 3
  • c

    creamy-potato-29402

    09/07/2018, 4:45 AM
    Let us know if we can help!
  • g

    glamorous-printer-66548

    09/10/2018, 5:06 AM
    Hi, I’m trying to use
    @pulumi/docker
    to build an image which is subsequently used for a k8s deployment. The image shall be pushed to a private GCR registry. This is a subset of my current code:
    const imageName = 'prediction-container-manager-router';
    
    const image = docker.buildAndPushImage(
      'solvvy-dev/prediction-container-manager-router',
      {
        context: './router',
        dockerfile: './router/Dockerfile'
      },
      'solvvy-dev/prediction-container-manager-router',
      null,
      async () => ({
        registry: '<http://gcr.io|gcr.io>',
        username: 'oauth2accesstoken',
        password: execSync('gcloud auth print-access-token').toString('utf8')
      })
    );
    Pulumi up fails with
    logging in to registry...
    
      pulumi:pulumi:Stack: prediction-container-manager-prediction-container-manager-api-cluster-dev-b
        info: denied: requested access to the resource is denied
        error: [runtime] Docker push of image 'solvvy-dev/prediction-container-manager-router' failed with exit code: 1
    which is not a very helpful error. Is there some example of how to use gcr? Also what should I pass as
    logResource
    / the forth parameter of docker.buildAndPushImage to perhaps get some more useful log output? Currently I’m just passing
    null
    .
  • c

    creamy-potato-29402

    09/10/2018, 5:28 AM
    @glamorous-printer-66548 probably want to talk to @white-balloon-205 — he has actually done a lot of work over the last week to make this work slightly smoother.
  • c

    creamy-potato-29402

    09/10/2018, 5:28 AM
    Don’t know if there’s a PR up yet — let me check.
  • c

    creamy-potato-29402

    09/10/2018, 5:28 AM
    @glamorous-printer-66548 yes! it is! https://github.com/pulumi/pulumi-docker/pull/10
Powered by Linen
Title
c

creamy-potato-29402

09/10/2018, 5:28 AM
@glamorous-printer-66548 yes! it is! https://github.com/pulumi/pulumi-docker/pull/10
View count: 1