famous-kite-69533
03/22/2020, 6:55 PMfamous-kite-69533
03/22/2020, 9:35 PMvictorious-scientist-9866
03/23/2020, 12:40 AMvictorious-scientist-9866
03/23/2020, 12:41 AM.htpasswd
file into a Kubernetes Secret to be mounted in a containervictorious-scientist-9866
03/23/2020, 12:45 AMvictorious-scientist-9866
03/23/2020, 2:05 AM.htpasswd
example since the file contents are already hashed/secure but it doesn't work for the example of an image pull secret since the contents are only base64 encoded and can easily be decoded. Ideally, unencrypted secret data wouldn't be commited to the git repository storing my deployment files.big-restaurant-51338
03/23/2020, 12:02 PMcompute.Instance
? I tried this, but I get a KeyError
# actual vm creation
instance = compute.Instance("instance",
machine_type=config.require('type'),
boot_disk={
"initializeParams": {
"image": config.require('image')
}
},
network_interfaces=[
{
"subnetwork": parentStack.get_output('subnet_id'),
}
],
# metadata={
# "startup-script": init_script
# },
zone = config.require('zone'),
tags = ["mytags"]
)
# Register the DNS record
dns_name = parentStack.get_output('private_dns_zone').apply(lambda a: f"instance.{a}")
instance_recordset = dns.RecordSet("instance-recordset",
managed_zone = parentStack.get_output('private_dns_name'),
name = dns_name,
rrdatas = [ instance.network_interfaces[0]['networkIp'] ],
ttl = 3600,
type = "A",
opts=pulumi.ResourceOptions(depends_on=[instance]))
famous-kite-69533
03/23/2020, 12:10 PMk8s.helm.v2.Chart(...)
but even with v2 Pulumi gives me skipping unknown hook: "crd-install"
. How can I ensure the CRDs are installed? I can't find a setting or something like that in the docs. Thanks!limited-librarian-23694
03/23/2020, 4:00 PMpulumi up
, without shelling out to the CLI?busy-umbrella-36067
03/23/2020, 5:27 PMPULUMI_TEST_MODE
mentioned so I’m guessing thats an env var, is there any other way to toggle it? pulumi.runtime.setConfig()
?better-rainbow-14549
03/24/2020, 11:21 AMerror: Running program 'C:\dev\misc\pulumi-test' failed with an unhandled exception:
Error: EBUSY: resource busy or locked, open '\\.\pipe\pulumi2823058552\invoke_req'
better-rainbow-14549
03/24/2020, 11:21 AMsalmon-account-74572
03/24/2020, 4:21 PMpowerline-go
(https://github.com/justjanne/powerline-go/) that shows the currently selected Pulumi stack in my Powerline prompt. 🙂brave-ambulance-98491
03/24/2020, 5:07 PMrefresh
corrupt pulumi state file"?
https://github.com/pulumi/pulumi/issues/3583miniature-art-58368
03/24/2020, 8:08 PMminiature-art-58368
03/24/2020, 8:36 PMminiature-art-58368
03/24/2020, 8:38 PMlimited-librarian-23694
03/24/2020, 11:40 PMget_
methods don't seem to be returning what you'd expect? Specifically I'm calling ec2.get_security_groups and passing a filter that matches fine on the aws CLI, but in Pulumi I can never get it to return any security groups besides the default one.limited-librarian-23694
03/25/2020, 12:06 AMget_
methods like get_ami
and get_security_groups
are querying into the wrong AWS region; i.e. not the same region where pulumi is provisioning resources.... hmmmrefined-airplane-93668
03/25/2020, 1:05 AMrefined-airplane-93668
03/25/2020, 1:07 AMgreen-morning-1318
03/25/2020, 1:19 AMfast-dinner-32080
03/25/2020, 4:29 AMbetter-rainbow-14549
03/25/2020, 3:36 PMpublic readonly serverUri: pulumi.Output<string>;
which is filled out by pulumi after apply but with strict: true
in tsconfig.json it complains that it's "not definitely assigned in constructor" - is there any easy way around that pleasebitter-dentist-28132
03/25/2020, 4:15 PMdependsOn
, will that load balancer only be deleted after all resources that use it are deleted? what about transitive dependencies?big-potato-91793
03/25/2020, 5:43 PMfamous-kite-69533
03/25/2020, 6:44 PMimportant-boots-43281
03/25/2020, 7:01 PMError creating Lambda function: ResourceConflictException: Function already exist:
when we try to create the actual lambda function. The function is actually being created, but it seems like pulumi is trying to create it twice for some reason. The created function isn't destroyed by a pulumi destroy, so it doesn't ever seem to get registered with the state. Any ideas on what I'm doing wrong?billions-lock-73409
03/25/2020, 7:10 PMCOMMENT_ON_PR
flag, but have since disabled it in an attempt to switch to the github app as the GH actions integration is far too verbose.busy-scientist-76678
03/25/2020, 11:09 PMbusy-scientist-76678
03/25/2020, 11:09 PMgentle-diamond-70147
03/25/2020, 11:13 PMbusy-scientist-76678
03/25/2020, 11:14 PMsalmon-account-74572
03/26/2020, 12:16 AMbusy-scientist-76678
03/26/2020, 10:42 AM