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

    quaint-queen-37896

    10/19/2018, 12:53 AM
    🙌 3
  • w

    worried-sandwich-8337

    10/19/2018, 6:49 AM
    pulumi looks awesome! For my project, I have been using the serverless framework targeting AWS with APIGateway, Lambda, and DynamoDB. I've also been using serverless-offline and serverless-dynamodb-local plugins for rapid development and debugging. Is there a plan to support offline mode in pulumi? I'm curious to know how to reference a dynamodb table in a function that can be cloud-based or local.
  • t

    tall-monitor-77779

    10/19/2018, 1:44 PM
    lets say I have a golang serverless function I want to want to deploy to AWS, golang functions need to be compiled before uploading, does pulumi provide this capability (similar to the docker build capability)
    w
    • 2
    • 1
  • n

    nutritious-grass-41895

    10/19/2018, 1:50 PM
    Howdy!
    👋 1
  • n

    nutritious-grass-41895

    10/19/2018, 1:51 PM
    does pulumi have a ui ?
    w
    • 2
    • 1
  • b

    bright-motherboard-93404

    10/19/2018, 1:57 PM
    Is there any way to share stack / stack state with other developers without creating an Organization in pulumi?
  • s

    sparse-insurance-40223

    10/19/2018, 2:00 PM
    i just use a separate git repo for state
    b
    • 2
    • 3
  • s

    sparse-insurance-40223

    10/19/2018, 2:01 PM
    pulumi --local file://path/to/git/repo or something along those lines
  • s

    sparse-insurance-40223

    10/19/2018, 2:01 PM
    sets the state folder
  • q

    quiet-wolf-18467

    10/19/2018, 2:02 PM
    Does anyone have any examples of using GCP InstanceTemplate with startupScript?
  • q

    quiet-wolf-18467

    10/19/2018, 2:16 PM
    Nevermind, got it 🙂
  • q

    quiet-wolf-18467

    10/19/2018, 3:27 PM
    What does this mean?
    b
    m
    • 3
    • 9
  • a

    adamant-restaurant-73893

    10/19/2018, 3:44 PM
    Big thanks to Wallaroo's @bright-motherboard-93404 for this post earlier this week: using a little Pulumi power to enable on-demand analytics clusters: https://blog.wallaroolabs.com/2018/10/spinning-up-a-wallaroo-cluster-is-easy/
  • a

    adamant-restaurant-73893

    10/19/2018, 6:54 PM
    Hey all - we'll be at Hashiconf next week. If you're there, and would like to meet, you can find us at Booth S14 in the Pavilion Room. If you want to book a specific time slot, you can hit this link: https://info.pulumi.com/meetings/team-pulumi/hashiconf-catchup
    👍 2
  • o

    orange-tailor-85423

    10/19/2018, 7:11 PM
    Due to lack of TypeScript and general programming... what if I create my GKE cluster. And now I want to create namespaces inside of it
  • o

    orange-tailor-85423

    10/19/2018, 7:11 PM
    how do I reference the cluster I created as an input for the creation of the namespace object
    c
    • 2
    • 47
  • n

    nutritious-grass-41895

    10/19/2018, 7:30 PM
    Does pulumi support the full k8s resources definitions ? not only deployment files but statefulsets etc .. ?
  • n

    nutritious-grass-41895

    10/19/2018, 7:30 PM
    i cant figure what is supported/not supported from the docs
    c
    • 2
    • 1
  • n

    nutritious-grass-41895

    10/19/2018, 7:49 PM
    Can i tell pulumi to fetch the configs from a git repo url directly ? in a multi repo case for example ?
    c
    • 2
    • 18
  • c

    cuddly-leather-18640

    10/19/2018, 7:51 PM
    I’m getting the following error:
    Cannot call '.get' during update or preview
    and I think it’s from the following new TS I added to my index.ts:
    let apiIntentRobotServiceAccount = new k8s.core.v1.ServiceAccount(
      'api-intent-robot-service-account', {
        metadata: {
          name: 'api-intent-robot',
          namespace: context.inferredNamespace
        }
      }
    )
    
    let apiIntentEphemeralRobotRole = new k8s.rbac.v1.Role(
      'api-intent-ephemeral-robot-role',
      {
        metadata: {
          name: 'api-intent-robot-role',
          namespace: EPHEMERAL_NAMESPACE_NAME
        },
        rules: [
          {
            apiGroups: [''],
            resources: ['pods', 'pods/status'],
            verbs: ['get', 'create', 'patch', 'delete', 'list', 'status']
          }
        ]
      }
    )
    
    let apiIntentEphemeralRolebinding = new k8s.rbac.v1.RoleBinding(
      'api-intent-ephemeral-robot-rolebinding',
      {
        metadata: {
          name: 'api-intent-robot-rolebinding',
          namespace: EPHEMERAL_NAMESPACE_NAME
        },
        roleRef: {
          name: apiIntentEphemeralRobotRole.metadata.get().name,
          apiGroup: apiIntentEphemeralRobotRole.apiVersion,
          kind: apiIntentEphemeralRobotRole.kind
        },
        subjects: [
          {
            kind: apiIntentRobotServiceAccount.kind,
            name: apiIntentRobotServiceAccount.metadata.get().name,
          }
        ]
      })
    Am I not allowed to get the name of a resource to use in the spec of another resource?
    c
    w
    g
    • 4
    • 18
  • n

    nutritious-grass-41895

    10/19/2018, 8:04 PM
    How feature complete is the go client as opposed to the js code ?
  • n

    nutritious-grass-41895

    10/19/2018, 8:04 PM
    Meaning am i better off using go or js ?
    c
    b
    w
    • 4
    • 25
  • a

    astonishing-queen-78888

    10/19/2018, 8:13 PM
    Hey Folks, any thoughts on https://github.com/pinax/django-user-accounts/pull/293 ??
  • n

    nutritious-grass-41895

    10/19/2018, 8:19 PM
    If i want to provide a configuration file to override some of the fileds like for example the number of replicas in a k8s deployment file how do i pass that to
    pulimi up
    • 1
    • 1
  • c

    cuddly-leather-18640

    10/19/2018, 8:21 PM
    I got pulumi into a weird state where it thinks certain resources exist in my k8s cluster when they don’t. Is there a way to ask pulumi to forget about these resources?
  • b

    brave-angle-33257

    10/19/2018, 8:36 PM
    pulumi refresh
    ?
    c
    • 2
    • 2
  • q

    quick-action-34599

    10/19/2018, 8:46 PM
    👋 I'm testing the waters a bit and am trying to create a couple services in AWS. Are there any downsides to pulumi spinning up an ELB per service rather than using host-header routing on a single balancer?
  • q

    quiet-wolf-18467

    10/19/2018, 9:07 PM
    ELBs are quite expensive
  • q

    quick-action-34599

    10/19/2018, 9:08 PM
    right.. that's what I was kind of seeing
  • o

    orange-tailor-85423

    10/19/2018, 11:26 PM
    typescript noob - how come a for loop that creates namespaces runs when I do pulumi update but not a for loop in another ts file
Powered by Linen
Title
o

orange-tailor-85423

10/19/2018, 11:26 PM
typescript noob - how come a for loop that creates namespaces runs when I do pulumi update but not a for loop in another ts file
View count: 1