hallowed-australia-10473
11/30/2022, 9:47 PMbrief-pencil-59807
12/01/2022, 11:45 AMVirtual machine scale set
via pulumi, can someone direct me the pulumi function or example how to do this?brief-pencil-59807
12/01/2022, 11:52 AMcolossal-flower-75468
12/01/2022, 3:45 PMfreezing-activity-93019
12/01/2022, 4:48 PMDiagnostics:
pulumi:pulumi:Stack (pulumi-kubernetes-pulumi-kubernetes):
error: an unhandled error occurred: program exited with non-zero exit code: 2
panic: fatal: An assertion has failed: {<nil> <nil> <nil> <nil> <nil> <nil> <nil> <nil> <nil> <nil> flux-system flux-system <nil> <nil> <nil> <nil>}: cannot assign v1.objectMetaPtrType to v1.ObjectMeta
goroutine 42 [running]:
Source code: https://gist.github.com/hbjydev/ba680822b8652812b1c4d238ce5f14f6acceptable-tent-31739
12/01/2022, 4:51 PMgorgeous-architect-28903
12/01/2022, 6:26 PMWithResourceOptions([dependencyResource, providers], func() {
ResourceOne(ctx, name, ...)
ResourceTwo(ctx, name, ...)
})
And have them all automatically get the dependency without having to type it 5 times, or move them around in the tree. Kind of like registering a stack transformation, but not globally.bored-activity-40468
12/01/2022, 9:07 PMfaint-article-37196
12/02/2022, 2:59 AMicy-controller-6092
12/02/2022, 4:38 AMexpected runtime_environment to be one of [SQL-1_0 FLINK-1_6 FLINK-1_8 ZEPPELIN-FLINK-1_0 FLINK-1_11 FLINK-1_13 ZEPPELIN-FLINK-2_0], got FLINK-1_15.
Is there any way I can get around this locally? The remote API will accept the new value, it’s just local validation in Pulumi that is failing. e.g. maybe there is a flag I can use to turn off this local-only client-side validation?agreeable-orange-1262
12/02/2022, 11:05 AMmost-mouse-38002
12/02/2022, 12:05 PMpulumi preview --json --non-interactive
documented anywhere? I just can’t find it.thousands-lizard-52998
12/02/2022, 12:06 PMdamp-painting-47843
12/02/2022, 2:56 PMgreen-kilobyte-86931
12/02/2022, 3:17 PMgifted-room-26715
12/02/2022, 6:18 PMbillowy-nightfall-59212
12/02/2022, 8:59 PMpulumi up
we are running into this error could not query backend for stacks: unexpected end of JSON input
microscopic-piano-27908
12/02/2022, 11:31 PMpulumi up
which will sometimes either take 20+ minutes or time out.hallowed-australia-10473
12/03/2022, 11:03 PMpulumi up
?blue-leather-96987
12/04/2022, 12:01 AMcold-cpu-48402
12/04/2022, 9:12 AMgifted-fall-44000
12/04/2022, 10:48 PMmelodic-branch-55999
12/05/2022, 8:11 AMec2-user 31942 14939 0 Nov30 ? 00:00:00 [pulumi-resource] <defunct>
ec2-user 31943 14939 0 Nov30 ? 00:00:00 [pulumi-resource] <defunct>
ec2-user 31944 14939 0 Nov30 ? 00:00:00 [pulumi-resource] <defunct>
ec2-user 31945 14939 0 Nov30 ? 00:00:00 [pulumi-language] <defunct>
ec2-user 31946 14939 0 Nov30 ? 00:00:00 [pulumi-resource] <defunct>
ec2-user 31947 14939 0 Nov30 ? 00:00:00 [pulumi-resource] <defunct>
the count of above process keeps on increasing and reaches the cgroups limit set at
/sys/fs/cgroup/pids/kubepods/pids.max
due to this there is shortage of resource in the node and the CNI(aws-node) keeps on restarting due to Livlinessprobe failure.
What should we do in overcome this? Any help will be greatly appreciated, this is blocking our GA.bitter-city-18176
12/05/2022, 10:47 AMOriginRequestPolicy
or a CachePolicy
to a CloudFront Distributiongreen-kilobyte-86931
12/05/2022, 11:21 AMearly-plastic-49211
12/05/2022, 5:01 PMapply
return value in recordsets.apply
?
const recordsets = privateEndpoint.customDnsConfigs.apply(x => {
if (typeof x === 'undefined') {
return [];
}
const result = [];
for (const dnsConfig of x) {
const name = dnsConfig.fqdn!.split('.')[0];
const ipAddresses = dnsConfig.ipAddresses!.map(x => {
return {ipv4Address: x};
});
result.push({
name: name,
ipAddresses: ipAddresses
});
}
return result;
});
recordsets.apply(rs => {
for (const x of rs) {
new network.PrivateRecordSet(`resource-pe-dns-${name}`, {
privateZoneName: zone.name,
recordType: "A",
relativeRecordSetName: x.name,
resourceGroupName: resourceGroup,
ttl: 300,
aRecords: x.ipAddresses
});
}
return true;
});
melodic-policeman-1516
12/05/2022, 8:31 PMabundant-computer-36798
12/06/2022, 5:15 AMawsx.elasticloadbalancingv2.NetworkListener
, but this no longer exists. I think it moved from awsx
to aws
at some point, to aws.elasticloadbalancingv2.Listener
. (Could someone verify / explain what falls under awsx
vs aws
?) And then I find out from the docs that now this is deprecated in favor of aws.lb.Listener
, so I should really be using that?
And to further the confusion, I learn that everything under @pulumi/aws
is known as classic, and if I want to stay modern I should actually be using @pulumi/aws-native
instead of any of the options above? Incredibly, although elasticloadbalancingv2
got renamed to lb
in classic, it's back to being called elasticloadbalancingv2
in native!proud-city-30820
12/06/2022, 9:13 AMstocky-ocean-5511
12/06/2022, 2:04 PMstocky-ocean-5511
12/06/2022, 2:04 PMmany-telephone-49025
12/06/2022, 2:12 PMstocky-ocean-5511
12/06/2022, 2:18 PMmany-telephone-49025
12/06/2022, 2:35 PMlimited-rainbow-51650
12/06/2022, 2:37 PMstocky-ocean-5511
12/06/2022, 2:40 PM