From af096fa73364cb5be0cc3995d15965652375a12e Mon Sep 17 00:00:00 2001 From: Jugwan Eom Date: Mon, 13 Nov 2023 11:32:22 +0000 Subject: [PATCH] cluster-api-aws: fix machinedeployment subnet filter Fixes incorrect filtering rules when reusing existing VPCs and Subnets. --- cluster-api-aws/Chart.yaml | 2 +- cluster-api-aws/templates/machine-deployment.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cluster-api-aws/Chart.yaml b/cluster-api-aws/Chart.yaml index b9427191..8a561972 100644 --- a/cluster-api-aws/Chart.yaml +++ b/cluster-api-aws/Chart.yaml @@ -4,6 +4,6 @@ description: A chart to install Kubernetes cluster using Cluster API Provider AW type: application -version: 0.9.0 +version: 0.10.0 appVersion: "2.2.1" diff --git a/cluster-api-aws/templates/machine-deployment.yaml b/cluster-api-aws/templates/machine-deployment.yaml index cc94c65f..c671ed90 100644 --- a/cluster-api-aws/templates/machine-deployment.yaml +++ b/cluster-api-aws/templates/machine-deployment.yaml @@ -75,7 +75,7 @@ spec: - name: "tag:sigs.k8s.io/cluster-api-provider-aws/role" values: - "private" - - name: "tag:Name" + - name: "tag-key" values: - "*{{ $envAll.Values.cluster.name }}*" ---