cool-egg-852
10/25/2019, 5:20 PMquick-action-34599
10/25/2019, 5:25 PMaws ecs update-service
? The image is being built by CI not using pulumiearly-intern-90238
10/25/2019, 7:01 PMhigh-morning-18773
10/25/2019, 10:35 PMbored-cartoon-33302
10/26/2019, 12:38 PMearly-intern-90238
10/26/2019, 2:35 PMearly-intern-90238
10/26/2019, 8:34 PMearly-intern-90238
10/26/2019, 10:01 PMearly-intern-90238
10/26/2019, 10:11 PMwet-sunset-4939
10/28/2019, 11:23 AMwonderful-daybreak-2504
10/28/2019, 12:17 PMtransformations
? it's a blocker for using helm charts currently...rhythmic-finland-36256
10/28/2019, 5:10 PMpulumi.kubernetes.ConfigFile
and disabling kubectl validation for CRD unknown fields (relating to cert-manager
)rhythmic-finland-36256
10/28/2019, 5:40 PMk8s
resource I can use to create an object of a CRD without implementing a full pulumi custom resource
? Looking into specifying some cert-manager
`Issuer`s and `Certificate`s in code without just dropping everything in a yaml file and using ConfigFile
for it.witty-yacht-82771
10/28/2019, 5:43 PMindex.ts
available for testing? I’m currently exporting them as needed and importing in my tests, but obviously that really clutters up each stack’s output variables.thankful-optician-22583
10/28/2019, 6:33 PMthankful-optician-22583
10/28/2019, 6:34 PMthankful-optician-22583
10/28/2019, 7:40 PMbusy-umbrella-36067
10/28/2019, 8:23 PMpanic: fatal: An assertion has failed: Two resources ('urn:pulumi:fuckit::XXXXX::kubernetes:apps/v1:Deployment::squid' and 'urn:pulumi:fuckit::XXXXX::kubernetes:core/v1:Service::squid') aliased to the same: 'urn:pulumi:fuckit::XXXXX::kubernetes:apps/v1:Deployment::squid'
elegant-crayon-4967
10/28/2019, 9:35 PMearly-musician-41645
10/28/2019, 11:42 PMawsx.ec2.Vpc.fromExistingIds
and it works as expected in a different project.
Error: invocation of aws:ec2/getVpc:getVpc returned an error: invoking aws:ec2/getVpc:getVpc: no matching VPC found
Is there a flag or something I'm missing? The VPC id definitely exists.thankful-optician-22583
10/28/2019, 11:47 PMapiVersion: v1
preferences: {}
kind: Config
clusters:
- cluster:
server: ${server}
certificate-authority-data: ${certificate-authority-data}
name: current-cluster
contexts:
- context:
cluster: current-cluster
user: runner-user
name: runner-context
current-context: runner-context
users:
- name: runner-user
user:
token: ${token}
wet-sunset-4939
10/29/2019, 2:35 AMambitious-helmet-24352
10/29/2019, 4:11 PMbetter-rainbow-14549
10/29/2019, 5:18 PMearly-musician-41645
10/29/2019, 6:35 PMconst tentacleVpcId = tentacleConfig.require("vpcId");
console.log("VPC-ID: "+tentacleVpcId);
export const tentacleVpc = awsx.ec2.Vpc.fromExistingIds("tentacle-vpc", {
vpcId: tentacleVpcId,
});
However I get this error:
Error: invocation of aws:ec2/getVpc:getVpc returned an error: invoking aws:ec2/getVpc:getVpc: no matching VPC found
I've checked and rechecked everything (account, credentials, resource ids, config, stack) and still no luck.
I ran a pulumi preview --debug
and I see that there's this output:
Reading AWS VPC: {
Filters: [{
Name: "isDefault",
Values: ["true"]
}]
}
The VPC is not the default one. It's one of many VPCs.
How can I make pulumi get a non-default VPC?rich-lamp-32782
10/30/2019, 12:57 AMbetter-actor-92669
10/30/2019, 9:29 AM<pulumi_gcp.compute.ha_vpn_gateway.HaVpnGateway object at 0x107523430>
in python? I want to assign it to a variable or use it later in a script. Thank you in advance!witty-yacht-82771
10/30/2019, 11:19 AMexport const service = new awsx.ecs.FargateService("click-router", {
assignPublicIp: false,
cluster,
subnets: pubSubnets,
desiredCount: 2,
taskDefinition: taskDef
});
and then in my tests, I’m trying to do:
it("should have 2 desired instances", async () => {
const di = await promise(service.service.desiredCount);
expect(di).to.equal(2);
});
I get the error that the variable di
is undefined. How can I do tests on assigned values prior to deploying?quiet-wolf-18467
quiet-wolf-18467
pulumi:pulumi:Stack devrel-metrics-production
~ ├─ gcp:container:Cluster metrics update [diff: ~minMasterVersion,nodeVersion]
+- ├─ pulumi:providers:kubernetes metrics replace [diff: ~kubeconfig]
+- ├─ kubernetes:core:Namespace community replace [diff: ~metadata,provider]
+- ├─ kubernetes:core:ServiceAccount community replace [diff: ~metadata,provider]
+- ├─ kubernetes:<http://rbac.authorization.k8s.io:Role|rbac.authorization.k8s.io:Role> community replace [diff: ~metadata,provider]
+- └─ kubernetes:<http://rbac.authorization.k8s.io:RoleBinding|rbac.authorization.k8s.io:RoleBinding> community replace [diff: ~metadata,provider,roleRef,subjects]