incalculable-sundown-82514
02/06/2019, 7:20 PMlittle-river-49422
02/06/2019, 7:21 PMdebug: registering resource: ty=pulumi:pulumi:Stack, name=azure-py-kubernetes-aks-branch-test, custom=False
debug: preparing resource for RPC
debug: Waiting for outstanding RPCs to complete
debug: beginning rpc register resource
debug: recorded new RPC, 1 RPCs outstanding
debug: preparing resource registration: ty=pulumi:pulumi:Stack, name=azure-py-kubernetes-aks-branch-test
debug: resource {} preparing to wait for dependencies
debug: resource {} prepared
debug: resource registration prepared: ty=pulumi:pulumi:Stack, name=azure-py-kubernetes-aks-branch-test
debug: resource registration successful: ty=pulumi:pulumi:Stack, urn=urn:pulumi:aks-branch-test::azure-py-kubernetes::pulumi:pulumi:Stack::azure-py-kubernetes-aks-branch-test debug: All RPC completed, signalling completion
debug: recorded RPC completion, 0 RPCs outstanding
debug: Canceling all outstanding tasks
debug: run_in_stack completed
error: Program failed with an unhandled exception:
error: NoneType: None
error: an unhandled error occurred: Program exited with non-zero exit code: 1
incalculable-sundown-82514
02/06/2019, 7:24 PMNoneType: None
). Do you know where this exception is occurring in your code or do we need to figure it out?little-river-49422
02/06/2019, 7:24 PMincalculable-sundown-82514
02/06/2019, 7:24 PMlittle-river-49422
02/06/2019, 7:26 PMincalculable-sundown-82514
02/06/2019, 7:29 PMlittle-river-49422
02/06/2019, 7:33 PMLOCATION = config.get('location') or 'westeurope'
inflation.py
from helpers import gen_name, gen_pod, LOCATION
def run_inflation():
rg = ResourceGroup(
'rg',
name=gen_name('rg'),
location=LOCATION
)
incalculable-sundown-82514
02/06/2019, 7:33 PMhelpers.py
?little-river-49422
02/06/2019, 7:34 PMfrom helpers import gen_name, gen_pod, get_location
def run_inflation():
rg = ResourceGroup(
'rg',
name=gen_name('rg'),
location=get_location()
)
incalculable-sundown-82514
02/06/2019, 7:36 PMlittle-river-49422
02/06/2019, 7:36 PMincalculable-sundown-82514
02/06/2019, 7:37 PMlittle-river-49422
02/06/2019, 7:37 PMincalculable-sundown-82514
02/06/2019, 7:37 PMlittle-river-49422
02/06/2019, 7:40 PMincalculable-sundown-82514
02/06/2019, 7:42 PMlittle-river-49422
02/06/2019, 7:56 PM