sparse-intern-71089
12/10/2020, 5:03 PMbillowy-army-68599
helm template
command, it creates a temporary directory but then it can't find it. I think it might be related to an old helm version on your machine, but I can't be sure
- as luck would have it, I'm doing a workshop tonight on installing this very thing! Have a look at this content: https://pulumi.awsworkshop.io/50_eks_platform/30_deploy_ingress_controller.html i'm sure it'll fix this issueelegant-island-39916
12/10/2020, 5:50 PMCustomResourceDefintion
. Will report to maintainers. In the meantime if anyone has an error along the lines of:
CustomResourceDefinition got an unexpected keyword argument 'status'
Add a transformer to remove it, like so:
def remove_cdr_status(obj):
if not isinstance(obj, dict):
return
if not obj["kind"] == "CustomResourceDefinition":
return
del obj["status"]
helm.Chart(
"alb",
config=helm.ChartOpts(
repo="eks",
chart="aws-load-balancer-controller",
version="1.1.0",
namespace=alb_ingress_namespace.metadata.name,
transformations=[remove_cdr_status],
# <https://github.com/aws/eks-charts/blob/master/stable/aws-load-balancer-controller/values.yaml>
values={
"clusterName": cluster.name,
"autoDiscoverAwsRegion": "true",
"autoDiscoverAwsVpcID": "true",
},
),
opts=ResourceOptions(provider=cluster.provider),
)
elegant-island-39916
12/10/2020, 5:51 PMbillowy-army-68599
billowy-army-68599
billowy-army-68599
elegant-island-39916
12/10/2020, 5:53 PMelegant-island-39916
12/10/2020, 5:55 PMbillowy-army-68599