tall-monitor-52054
11/05/2018, 10:02 PMcold-train-5848
11/05/2018, 10:43 PMkubernetes:apps:Deployment lds updating warning: 1 Pods failed to run because: [ImagePullBackOff] Back-off pulling image "127.0.0.1:5000/api_gateway_go:f61cb689da..."
.
I suspect it's because the credentials are not passed on.
Is there some magic way to pass Docker private registry credentials to Kubernetes?
Or I need to do something manually similar to what in https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/early-musician-41645
11/06/2018, 1:21 AMglamorous-printer-66548
11/06/2018, 6:01 AMcold-coat-35200
11/06/2018, 7:57 AMfoo:bar:hello: "world"
? as far as I see it can't, only simple keys, like foo:bar: "world"
cold-coat-35200
11/06/2018, 8:01 AMcold-coat-35200
11/06/2018, 8:47 AMsparse-insurance-40223
11/06/2018, 1:29 PMorange-tailor-85423
11/06/2018, 5:16 PMbusy-umbrella-36067
11/06/2018, 8:16 PMincalculable-angle-91273
11/06/2018, 10:24 PM.email
property it says it does not exist. How do I resolve this?hundreds-musician-51496
11/06/2018, 11:41 PMpulumi:pulumi:Stack: (same)
[urn=urn:pulumi:deploy-dev::deploy::pulumi:pulumi:Stack::deploy-deploy-dev]
- docker:image:Image: (delete)
[urn=urn:pulumi:deploy-dev::deploy::docker:image:Image::dashboard-server]
I'm using an ECR on AWS to store images. Is it going to delete the image?adamant-restaurant-73893
11/06/2018, 11:41 PMhttps://www.youtube.com/watch?v=TD5f8ze92Fk▾
hundreds-musician-51496
11/07/2018, 12:12 AMpulumi config <key1> <value>
and new pulumi.Config(<key2>).get(<key3>)
. What is the value of key2
? For example, I want to set the value "foo:bar" to "baz". How would I retrieve "foo:bar" in code?hundreds-musician-51496
11/07/2018, 12:17 AMkey2
is the namespace. So key1
would be foo:bar
, key3
would be bar
and key2
would be foo
.hundreds-musician-51496
11/07/2018, 12:17 AMkey2
is absent, key1
is bar
), then the project name is the namespace.busy-umbrella-36067
11/07/2018, 3:30 PMkubernetes:apps:StatefulSet (XXXXXXX-1252):
error: post-step event returned an error: failed to verify snapshot: child resource urn:pulumi:X-XXXXXXXXdev::XXXXXXXXXX::standard:Deploy$kubernetes:apps/v1:StatefulSet$kubernetes:core/v1:Service::XXXXXXXX-1252 refers to missing parent urn:pulumi:XXXXXXXX-dev::XXXXXXXX::standard:Deploy$kubernetes:apps/v1:StatefulSet::XXXXXXXX-1252
busy-umbrella-36067
11/07/2018, 3:54 PMhelpful-continent-74245
11/07/2018, 3:56 PMbusy-umbrella-36067
11/07/2018, 3:57 PMbusy-umbrella-36067
11/07/2018, 3:57 PMname
therebusy-umbrella-36067
11/07/2018, 3:59 PMconst bucket = new aws.s3.Bucket("my-bucket", { name: "my-bucket" });
helpful-continent-74245
11/07/2018, 3:59 PMbusy-umbrella-36067
11/07/2018, 4:00 PMargs
param, https://pulumi.io/reference/pkg/nodejs/@pulumi/aws/s3/#Buckethundreds-musician-51496
11/07/2018, 5:13 PMPulumi.all(Record<string, Input<T>>)
overloaded to a set of keys - i.e., Pulumi.all(Record<K, Input<T>>)
.
I have a function that returns Output<{http: Listener, https: Listener}>
. Using Pulumi.all
as is, I had to write pulumi.all({ https, http }).apply(({ http, https}) => ({ http, https}));
(where http
and https
are local variables of type Output<Listener>
). Notice the extra apply
.
pulumi.all({http, https})
has type Output<Record<string, Listener>>
, but pulumi.all(...).apply(...)
has type Output<{http: .., https:...}>
which keeps my keys.
Or maybe I want Pick
? Record
confuses me still.hundreds-musician-51496
11/07/2018, 5:17 PMpulumi.all({http, https}): Output<{http: ..., https: ,,,}>
adamant-restaurant-73893
11/07/2018, 6:13 PMhundreds-musician-51496
11/07/2018, 6:32 PMadamant-restaurant-73893
11/07/2018, 6:51 PMhttps://www.youtube.com/watch?v=TD5f8ze92Fk▾
hundreds-musician-51496
11/07/2018, 6:52 PMhundreds-musician-51496
11/07/2018, 6:52 PM