Michael Haken

Results 6 comments of Michael Haken

I think the default action of throwing a terminating error is bad. For example, I'm writing a module to use with HDFS which happens in a 2 part interaction. The...

+1 same problem, looks like publib for java needs to be updated to use the new maven central apis.

I don't see an ingress rule being created that allows from the SG itself, by default I don't see any ingress rule created at all.

Is this also the case when you set `VpcSubnets = new SubnetSelection[] { new SubnetSelection() { SubnetType = SubnetType.PRIVATE_ISOLATED } },` ?

Create a cluster like this: ```csharp Cluster testcluster = new Cluster(new NestedStack(this, "EKS2Stack"), "TESTEKSCluster", new ClusterProps(){ Vpc = this.NetworkStack.Vpc, VpcSubnets = new SubnetSelection[] { new SubnetSelection() { SubnetType = SubnetType.PRIVATE_ISOLATED...

Yes, would like to be able to do a helm push to a private ECR repo. Currently, I'm doing this: ```csharp Repository repo = new Repository(this, name + "HelmRepo", new...