@@ -119,6 +119,7 @@ func TestAWSMachineReconciler(t *testing.T) {
119
119
Name : "test" ,
120
120
},
121
121
Spec : clusterv1.MachineSpec {
122
+ ClusterName : "capi-test" ,
122
123
Bootstrap : clusterv1.Bootstrap {
123
124
DataSecretName : pointer .StringPtr ("bootstrap-data" ),
124
125
},
@@ -149,6 +150,7 @@ func TestAWSMachineReconciler(t *testing.T) {
149
150
},
150
151
Machine : & clusterv1.Machine {
151
152
Spec : clusterv1.MachineSpec {
153
+ ClusterName : "capi-test" ,
152
154
Bootstrap : clusterv1.Bootstrap {
153
155
DataSecretName : pointer .StringPtr ("bootstrap-data" ),
154
156
},
@@ -1813,6 +1815,7 @@ func TestAWSMachineReconciler_AWSClusterToAWSMachines(t *testing.T) {
1813
1815
},
1814
1816
},
1815
1817
Spec : clusterv1.MachineSpec {
1818
+ ClusterName : "capi-test" ,
1816
1819
InfrastructureRef : corev1.ObjectReference {
1817
1820
Kind : "AWSMachine" ,
1818
1821
Name : "aws-machine-6" ,
@@ -1852,6 +1855,7 @@ func TestAWSMachineReconciler_AWSClusterToAWSMachines(t *testing.T) {
1852
1855
Name : "aws-test-1" ,
1853
1856
},
1854
1857
Spec : clusterv1.MachineSpec {
1858
+ ClusterName : "capi-test" ,
1855
1859
InfrastructureRef : corev1.ObjectReference {
1856
1860
Kind : "AWSMachine" ,
1857
1861
Name : "aws-machine-1" ,
@@ -1883,6 +1887,7 @@ func TestAWSMachineReconciler_AWSClusterToAWSMachines(t *testing.T) {
1883
1887
Name : "aws-test-2" ,
1884
1888
},
1885
1889
Spec : clusterv1.MachineSpec {
1890
+ ClusterName : "capi-test" ,
1886
1891
InfrastructureRef : corev1.ObjectReference {
1887
1892
Kind : "AWSMachine" ,
1888
1893
Name : "aws-machine-2" ,
@@ -1911,6 +1916,7 @@ func TestAWSMachineReconciler_AWSClusterToAWSMachines(t *testing.T) {
1911
1916
Name : "aws-test-3" ,
1912
1917
},
1913
1918
Spec : clusterv1.MachineSpec {
1919
+ ClusterName : "capi-test" ,
1914
1920
InfrastructureRef : corev1.ObjectReference {
1915
1921
Kind : "AWSMachine" ,
1916
1922
Name : "aws-machine-3" ,
@@ -1947,6 +1953,7 @@ func TestAWSMachineReconciler_AWSClusterToAWSMachines(t *testing.T) {
1947
1953
Kind : "Machine" ,
1948
1954
},
1949
1955
Spec : clusterv1.MachineSpec {
1956
+ ClusterName : "capi-test" ,
1950
1957
InfrastructureRef : corev1.ObjectReference {
1951
1958
Kind : "Machine" ,
1952
1959
Name : "aws-machine-4" ,
@@ -1979,6 +1986,7 @@ func TestAWSMachineReconciler_AWSClusterToAWSMachines(t *testing.T) {
1979
1986
},
1980
1987
},
1981
1988
Spec : clusterv1.MachineSpec {
1989
+ ClusterName : "capi-test" ,
1982
1990
InfrastructureRef : corev1.ObjectReference {
1983
1991
Kind : "AWSMachine" ,
1984
1992
APIVersion : infrav1 .GroupVersion .String (),
@@ -2152,7 +2160,14 @@ func TestAWSMachineReconciler_Reconcile(t *testing.T) {
2152
2160
},
2153
2161
}, Spec : infrav1.AWSMachineSpec {InstanceType : "test" },
2154
2162
},
2155
- ownerMachine : & clusterv1.Machine {ObjectMeta : metav1.ObjectMeta {Name : "capi-test-machine" }},
2163
+ ownerMachine : & clusterv1.Machine {
2164
+ ObjectMeta : metav1.ObjectMeta {
2165
+ Name : "capi-test-machine" ,
2166
+ },
2167
+ Spec : clusterv1.MachineSpec {
2168
+ ClusterName : "capi-test" ,
2169
+ },
2170
+ },
2156
2171
ownerCluster : & clusterv1.Cluster {ObjectMeta : metav1.ObjectMeta {Name : "capi-test-1" }},
2157
2172
expectError : false ,
2158
2173
},
@@ -2170,12 +2185,17 @@ func TestAWSMachineReconciler_Reconcile(t *testing.T) {
2170
2185
},
2171
2186
}, Spec : infrav1.AWSMachineSpec {InstanceType : "test" },
2172
2187
},
2173
- ownerMachine : & clusterv1.Machine {ObjectMeta : metav1.ObjectMeta {
2174
- Labels : map [string ]string {
2175
- clusterv1 .ClusterLabelName : "capi-test-1" ,
2188
+ ownerMachine : & clusterv1.Machine {
2189
+ ObjectMeta : metav1.ObjectMeta {
2190
+ Labels : map [string ]string {
2191
+ clusterv1 .ClusterLabelName : "capi-test-1" ,
2192
+ },
2193
+ Name : "capi-test-machine" , Namespace : "default" ,
2194
+ },
2195
+ Spec : clusterv1.MachineSpec {
2196
+ ClusterName : "capi-test" ,
2176
2197
},
2177
- Name : "capi-test-machine" , Namespace : "default" ,
2178
- }},
2198
+ },
2179
2199
ownerCluster : & clusterv1.Cluster {ObjectMeta : metav1.ObjectMeta {Name : "capi-test-1" }},
2180
2200
expectError : false ,
2181
2201
},
@@ -2193,12 +2213,16 @@ func TestAWSMachineReconciler_Reconcile(t *testing.T) {
2193
2213
},
2194
2214
}, Spec : infrav1.AWSMachineSpec {InstanceType : "test" },
2195
2215
},
2196
- ownerMachine : & clusterv1.Machine {ObjectMeta : metav1.ObjectMeta {
2197
- Labels : map [string ]string {
2198
- clusterv1 .ClusterLabelName : "capi-test-1" ,
2216
+ ownerMachine : & clusterv1.Machine {
2217
+ ObjectMeta : metav1.ObjectMeta {
2218
+ Labels : map [string ]string {
2219
+ clusterv1 .ClusterLabelName : "capi-test-1" ,
2220
+ },
2221
+ Name : "capi-test-machine" , Namespace : "default" ,
2222
+ }, Spec : clusterv1.MachineSpec {
2223
+ ClusterName : "capi-test" ,
2199
2224
},
2200
- Name : "capi-test-machine" , Namespace : "default" ,
2201
- }},
2225
+ },
2202
2226
ownerCluster : & clusterv1.Cluster {
2203
2227
ObjectMeta : metav1.ObjectMeta {Name : "capi-test-1" },
2204
2228
Spec : clusterv1.ClusterSpec {
@@ -2221,12 +2245,17 @@ func TestAWSMachineReconciler_Reconcile(t *testing.T) {
2221
2245
},
2222
2246
}, Spec : infrav1.AWSMachineSpec {InstanceType : "test" },
2223
2247
},
2224
- ownerMachine : & clusterv1.Machine {ObjectMeta : metav1.ObjectMeta {
2225
- Labels : map [string ]string {
2226
- clusterv1 .ClusterLabelName : "capi-test-1" ,
2248
+ ownerMachine : & clusterv1.Machine {
2249
+ ObjectMeta : metav1.ObjectMeta {
2250
+ Labels : map [string ]string {
2251
+ clusterv1 .ClusterLabelName : "capi-test-1" ,
2252
+ },
2253
+ Name : "capi-test-machine" , Namespace : "default" ,
2227
2254
},
2228
- Name : "capi-test-machine" , Namespace : "default" ,
2229
- }},
2255
+ Spec : clusterv1.MachineSpec {
2256
+ ClusterName : "capi-test" ,
2257
+ },
2258
+ },
2230
2259
ownerCluster : & clusterv1.Cluster {
2231
2260
ObjectMeta : metav1.ObjectMeta {Name : "capi-test-1" },
2232
2261
Spec : clusterv1.ClusterSpec {
@@ -2249,12 +2278,17 @@ func TestAWSMachineReconciler_Reconcile(t *testing.T) {
2249
2278
},
2250
2279
}, Spec : infrav1.AWSMachineSpec {InstanceType : "test" },
2251
2280
},
2252
- ownerMachine : & clusterv1.Machine {ObjectMeta : metav1.ObjectMeta {
2253
- Labels : map [string ]string {
2254
- clusterv1 .ClusterLabelName : "capi-test-1" ,
2281
+ ownerMachine : & clusterv1.Machine {
2282
+ ObjectMeta : metav1.ObjectMeta {
2283
+ Labels : map [string ]string {
2284
+ clusterv1 .ClusterLabelName : "capi-test-1" ,
2285
+ },
2286
+ Name : "capi-test-machine" , Namespace : "default" ,
2255
2287
},
2256
- Name : "capi-test-machine" , Namespace : "default" ,
2257
- }},
2288
+ Spec : clusterv1.MachineSpec {
2289
+ ClusterName : "capi-test" ,
2290
+ },
2291
+ },
2258
2292
ownerCluster : & clusterv1.Cluster {
2259
2293
ObjectMeta : metav1.ObjectMeta {Name : "capi-test-1" },
2260
2294
Spec : clusterv1.ClusterSpec {
0 commit comments