incalculable-sundown-82514
03/21/2019, 8:50 PMincalculable-sundown-82514
03/21/2019, 8:50 PMbrief-school-94535
03/21/2019, 8:50 PMincalculable-sundown-82514
03/21/2019, 8:50 PMincalculable-sundown-82514
03/21/2019, 8:50 PMdev
for your config and it should work OK.brief-school-94535
03/21/2019, 8:50 PMbrief-school-94535
03/21/2019, 8:50 PMbrief-school-94535
03/21/2019, 10:29 PMbrief-school-94535
03/21/2019, 10:30 PMincalculable-sundown-82514
03/21/2019, 10:43 PMbrief-school-94535
03/21/2019, 10:44 PMbrief-school-94535
03/21/2019, 10:51 PMincalculable-sundown-82514
03/21/2019, 10:51 PMbrief-school-94535
03/21/2019, 11:10 PMmicroscopic-pilot-97530
03/21/2019, 11:11 PMpython test.py
, but instead try running pulumi up
microscopic-pilot-97530
03/21/2019, 11:47 PMbrief-school-94535
03/22/2019, 1:13 PMbrief-school-94535
03/22/2019, 1:58 PMbrief-school-94535
03/22/2019, 3:15 PMconf = pulumi.Config(‘gke’)
stack_name = conf.require(‘name’)
No problem but
gcp_project = conf.require(‘gcp:project’)
gcp_zone = conf.require(‘gcp:zone’)
Error with pulumi:pulumi:Stack (gke-k8s):
error: Missing required configuration variable ‘gke:gcp:project’
please set a value using the command pulumi config set gke:gcp:project <value>
error: an unhandled error occurred: Program exited with non-zero exit code: 1
The config values are set in my Pulumi.k8s.yaml file. any advise?alert-monitor-28534
03/22/2019, 4:22 PMbrief-school-94535
03/22/2019, 4:36 PMpulumi_kubernetes
module seems like it’s not seeing the core module. Pylint isn’t balking at it so not sure what’s going on. Any ideas?brief-school-94535
03/22/2019, 7:04 PMproud-artist-4864
03/25/2019, 7:05 AMbillowy-garage-68819
03/26/2019, 3:05 PMbillowy-garage-68819
03/27/2019, 3:03 PMbillowy-garage-68819
03/27/2019, 3:03 PMbillowy-garage-68819
03/27/2019, 3:04 PMbillowy-garage-68819
03/27/2019, 3:04 PMlittle-river-49422
04/02/2019, 7:58 AMPlan apply failed: Job.batch "dbseed" is invalid: spec.template.spec.containers[0].envFrom[0].configMapRef.name: Invalid value: "develop/baseconfigmap-wwykveez": a DNS-1123 subdomain must consist of lower case alphanumeric characters, '-' or '.', and must start and end with an alphanumeric character (e.g. '<http://example.com|example.com>', regex used for validation is '[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*')
which doesnt make a lot of sense. develop - is the namespace, everything after /
is real configmap name. this works for deployments, but not for jobs? I can work around with this bad boy:
config_map.metadata.apply(
lambda metadata: metadata['name'].split('/')[-1]
)
but this doesnt look rightlittle-river-49422
04/02/2019, 12:21 PMlittle-river-49422
04/02/2019, 12:21 PM