narrow-jackal-57645
09/02/2020, 2:36 AMmy_personal_account/project_name/prod
to my_org/project_name/prod
Now I want to switch my local code to the new org stack:
pulumi stack select my_org/project_name/prod
# => error: no stack named 'my_org/prod' found
Is this some kind of bug? Or I have missed any important step here. Many thanks in advancenarrow-jackal-57645
09/02/2020, 5:18 AMlet user = new aws.iam.User("totoro", {
name: "totoro",
});
// force new users to reset their password for the initial sign in
new aws.iam.UserLoginProfile(`login-profile-for-totoro`, {
user: user.name,
passwordResetRequired: true,
pgpKey: `WHY_DO_I_HAVE_TO_PROVIDE_THIS?`
}, {
parent: user,
dependsOn: [user]
})
I am wondering why this resource requires me to use pgpKey
to encrypt/decrypt password (/with Keybase.io) when there is already KMS mechanism provided out of the box by Pulumi.
Many thanks in advance
Reported in https://github.com/pulumi/pulumi-aws/issues/1106great-byte-67992
09/02/2020, 6:06 AMbetter-rainbow-14549
09/02/2020, 8:56 AMripe-russia-4239
09/02/2020, 9:19 AMconfig.require()
calls are throwing an error even though I've passed the project name (and stack name, for that matter) to pulumi.runtime.setMocks()
.billowy-laptop-45963
09/02/2020, 3:48 PMpulumi up -t urn:to:stack
it looks like it performs the update but doesn't actually do anything. Has anyone dealt with this before?sticky-receptionist-53934
09/02/2020, 5:24 PMgifted-vase-28337
09/02/2020, 5:46 PMtall-country-24103
09/02/2020, 6:18 PMpython
sdk? I see that ts
has generateKubeconfig
- https://github.com/pulumi/pulumi-eks/blob/master/nodejs/eks/cluster.ts#L182. But nothing for python. Any ideas?bitter-dentist-28132
09/02/2020, 8:21 PMbitter-dentist-28132
09/02/2020, 8:23 PMsticky-knife-56285
09/03/2020, 7:19 AMkind-mechanic-53546
09/03/2020, 8:33 AMgifted-island-55702
09/03/2020, 1:41 PMhandsome-zebra-11018
09/03/2020, 1:59 PMnew k8s.apps.v1.Deployment{
....
containers: [
{
env: [
{
name: "db_host",
value: config.get("db_host")
}
}
}
Similarly I need to pass env variable to docker container.
new docker.Container("container_name", {
.....
envs: [
]
}
But env
in docker.Container
is list of string and not key /value pair.
Any idea how can I pass env variable with Container?handsome-zebra-11018
09/03/2020, 3:02 PMbitter-dentist-28132
09/03/2020, 3:06 PMhelpful-advantage-49286
09/03/2020, 3:56 PMfreezing-addition-26010
09/03/2020, 5:42 PMfreezing-addition-26010
09/03/2020, 5:43 PMfreezing-addition-26010
09/03/2020, 5:43 PMhandsome-zebra-11018
09/03/2020, 6:22 PMaws.ec2.Instance
in an specific VPC ? any example?astonishing-quill-88807
09/03/2020, 6:51 PMsalmon-account-74572
09/03/2020, 7:16 PMPulumi.yaml
? (I'm thinking of the Pulumi equivalent of vagrant global-status
.)little-cartoon-10569
09/03/2020, 8:49 PMelegant-carpet-8859
09/04/2020, 1:18 AMhandsome-zebra-11018
09/04/2020, 5:16 AM--cpu-quota=<value>
while creating a container using pulumi new docker.Container
but there is no option for cpu-quota
All I can see cpuSet
and cpuShares
Can anyone please help how can I passon cpu-quota
to container via pulumi.
In our company, we have enforcement in place, if cpu-quota
is not provided, the container gets evicted automatically from our docker host.lively-kangaroo-29833
09/04/2020, 8:36 AMerror: Publish policy pack failed: [409] This organization does not support Policy as Code.
I'm currently using Pulumi Community Edition, and seems like https://www.pulumi.com/crossguard/ mentions that it is available in any Pulumi Edition. Does anybody have any idea why this is happening?
Thanks!sticky-receptionist-53934
09/04/2020, 9:45 AMsticky-receptionist-53934
09/04/2020, 9:46 AMconst ingress = k8s.core.v1.Service.get(
'ingress',
'istio-system/istio-ingressgateway',
{ provider: k8sProvider }
)
const ip = ingress.status.loadBalancer.ingress[0].ip
sticky-receptionist-53934
09/04/2020, 9:46 AMconst ingress = k8s.core.v1.Service.get(
'ingress',
'istio-system/istio-ingressgateway',
{ provider: k8sProvider }
)
const ip = ingress.status.loadBalancer.ingress[0].ip