flat-chef-39475
04/06/2021, 11:45 PMjolly-vr-53742
04/07/2021, 3:06 AMkubeletExtraConfig:
kubeReserved:
memory: "64Mi"
kubeReservedCgroup: "/kube-reserved"
systemReserved:
memory: "13Mi"
evictionHard:
memory.available: "25Mi"
featureGates:
DynamicKubeletConfig: true
jolly-vr-53742
04/07/2021, 3:12 AMNo value exists in scope for the shorthand property 'kubeletExtraArgs'. Either declare one or provide an initializer.ts(18004)
flat-mechanic-75334
04/07/2021, 6:13 AMbland-lamp-16797
04/07/2021, 9:52 AMPULUMI_CONFIG_PASSPHRASE_FILE
, how safe would be so store ciphertext publicly?
Didn't look at code/docs, which encryption does it use?
This question also applys if i store it with KMS (gcp/aws)?jolly-lunch-12979
04/07/2021, 3:24 PMPulumi.AzureNative.Web.WebApp
is causing pulumi preview
to seemingly hang indefinitely. It prints the resource and shows there's a diff, but then never finishes. -v=9
shows a ton of Registering resource monitor end
at the end of the logs which sounds like it's doing everything it needs to, but just never finishing up the preview. Any ideas on what to do?jolly-lunch-12979
04/07/2021, 3:44 PMbumpy-summer-9075
04/07/2021, 3:57 PMbumpy-summer-9075
04/07/2021, 5:54 PMconst vpcId = terraformState.outputs["vpc_id"];
const infraVPC = await aws.ec2.getVpc({ id: vpcId });
const vpcId = terraformState.outputs["vpc_id"];
const infraVPC = await aws.ec2.getVpc({ id: vpcId.get() });
since getVpc
doesn't accept Inputs/Ouputs, how can I achieve this?lemon-machine-35564
04/07/2021, 6:09 PMstderr: error: could not load plugin for aws provider 'urn:pulumi:development-johnstonbl01::nacelle-services-dilithium::pulumi:providers:aws::default_3_35_0_alpha_1617104857': no resource plugin 'aws-v3.35.0-alpha.1617104857' found in the workspace or on your $PATH, install the plugin using pulumi plugin install resource aws v3.35.0-alpha.1617104857
glamorous-helmet-50600
04/07/2021, 9:36 PMprehistoric-ocean-52185
04/07/2021, 10:34 PMpulumi refresh
, will bucket B reflect in state file? Thanks in advance.mammoth-school-22886
04/08/2021, 12:04 AMsticky-translator-17495
04/08/2021, 7:36 AMrefined-gigabyte-47060
04/08/2021, 11:12 AMred-salesclerk-85731
04/08/2021, 12:47 PMgreen-musician-49057
04/08/2021, 2:14 PMbetter-shampoo-48884
04/08/2021, 2:25 PMdamp-school-17708
04/08/2021, 3:10 PMDatadog is not authorized to perform action sts:AssumeRole Account affected:...
I wonder if this snippet:
<https://www.pulumi.com/docs/reference/pkg/datadog/aws/integration/>
Calls also their APIs messing around stuff, the Role doesn't change at all so I am a bit puzzled on what is breaking the integration
gorgeous-match-99659
04/08/2021, 3:33 PMbetter-shampoo-48884
04/08/2021, 3:34 PMbumpy-summer-9075
04/08/2021, 3:44 PMtall-shoe-66375
04/08/2021, 7:57 PMtall-shoe-66375
04/09/2021, 4:30 AMred-lighter-44012
04/09/2021, 6:42 AMnarrow-battery-9106
04/09/2021, 9:19 AM<https://github.com/pulumi/pulumi-tf-provider-boilerplate>
to setup bridge to yandex.cloud.
I was able to generate all the necessary files for sdk and depend on it in my go infra. But it keeps saying that there is not resource found for yandex provider
How should I fix that?narrow-battery-9106
04/09/2021, 9:59 AM<https://github.com/aladmit/pulumi-yandex>
thousands-camera-45384
04/09/2021, 1:29 PMbumpy-summer-9075
04/09/2021, 2:07 PMarn:aws:sns:us-east-1:1234:foo
will send a HTTP call to example.com/myservice/foo-sns-handler
Now, I need Pulumi to subscribe to that topic once that service is deployed, something like
new aws.sns.TopicSubscription(
'my-topic',
{
topic: 'arn:aws:sns:us-east-1:1234:foo',
endpoint: `${myServiceEndpoint}/foo-sns-handler`,
protocol: 'https',
},
I would like to avoid having to define the SNS topic in my service and in Pulumi, ideally there would be a single place where the "topic -> handler" relation is defined.
Does that make sense? Any ideas?
--
In other words, I'm looking for a way to have a service declare the resources it needs, and have pulumi handle those resources during deployment (doesn't have to be an SNS topic, could be S3 buckets or any other pulumi resources)adamant-cricket-25794
04/09/2021, 2:53 PM