icy-dress-83371
07/08/2019, 7:05 PMhigh-translator-22614
07/08/2019, 7:25 PMhigh-translator-22614
07/08/2019, 7:25 PMhigh-translator-22614
07/08/2019, 7:32 PMnutritious-microphone-86225
07/09/2019, 7:46 AMnutritious-microphone-86225
07/09/2019, 7:46 AMhigh-translator-22614
07/10/2019, 1:00 AMawait myout.future()
high-translator-22614
07/10/2019, 1:01 AM.apply()
as a decoratorcolossal-room-15708
07/10/2019, 2:49 AMorg
object here?
org = organizations.Organization("org",
feature_set="ALL"
)
roots=org.roots.apply(
lambda roots: roots[0].id
)
print(roots)
pulumi up
gives me:
Diagnostics:
pulumi:pulumi:Stack (aws-scaffolding-dev):
<pulumi.output.Output object at 0x7f599c0624e0>
high-translator-22614
07/10/2019, 2:57 AMhigh-translator-22614
07/10/2019, 2:58 AMbrief-school-94535
07/11/2019, 11:24 AMpanic errors
when deploying a GKE cluster to GCP. My code hasn't changed and has been working for months. The errors are pointing to some golang/terraform resource issues. I've filed an issue in GitHub here:
https://github.com/pulumi/pulumi/issues/2922 @white-balloon-205 any thoughts?little-river-49422
07/11/2019, 1:51 PMnutritious-microphone-86225
07/12/2019, 9:26 AMlittle-river-49422
07/12/2019, 11:31 AMnutritious-microphone-86225
07/12/2019, 12:35 PMhigh-translator-22614
07/12/2019, 3:34 PMhigh-translator-22614
07/12/2019, 3:39 PMGate
that takes a pile of resources and waits on them all, and then other things can depend on the gate, but that means that anything after the gate will indirectly depend on anything before the gatenutritious-microphone-86225
07/12/2019, 4:05 PMhigh-translator-22614
07/12/2019, 4:06 PMhigh-translator-22614
07/12/2019, 4:07 PMstocky-spoon-28903
07/12/2019, 4:10 PMdepends_on
in the ResourceOptions
for the resource you want to waitfuture-traffic-93788
07/12/2019, 11:45 PMfuture-traffic-93788
07/12/2019, 11:45 PMclass NginxService(Service):
def __init__(self, service_app_name):
app_labels = {
"app": service_app_name
}
metadata = {
"labels": deployment.spec["template"]["metadata"]["labels"],
},
spec = {
"type": "ClusterIP",
"ports": [{"port": 80, "target_port": 80, "protocol": "TCP"}],
"selector": app_labels,
}
super(NginxService, self).__init__(service_app_name, metadata=metadata, spec=spec)
future-traffic-93788
07/12/2019, 11:45 PMValueError: Unexpected type
when Pulumi is converting to protobufhigh-translator-22614
07/12/2019, 11:50 PMfuture-traffic-93788
07/12/2019, 11:50 PMhigh-translator-22614
07/12/2019, 11:51 PMService
is a pulumi-provided resource?future-traffic-93788
07/12/2019, 11:52 PMhigh-translator-22614
07/12/2019, 11:52 PMComponentResource
, less for specialized configuration and more because I work in AWS and in AWS, nothing is a single resource