Skip to content

Commit d57062f

Browse files
authored
style: fix lint
1 parent 3a7d34f commit d57062f

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

test/e2e/helm_test.go

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -354,19 +354,19 @@ var _ = Describe("Create a proper set of manifests when using helm charts", func
354354
})
355355
It("should deploy core and infra with feature gates enabled", func() {
356356
manifests, err := helmChart.Run(map[string]string{
357-
"configSecret.name": "aws-variables",
358-
"configSecret.namespace": "default",
359-
"infrastructure.aws.version": "v2.4.0",
360-
"infrastructure.aws.manager.featureGates.ClusterTopology": "true",
361-
"infrastructure.aws.manager.featureGates.MachinePool": "true",
362-
"infrastructure.aws.manager.featureGates.EKSEnableIAM": "true",
357+
"configSecret.name": "aws-variables",
358+
"configSecret.namespace": "default",
359+
"infrastructure.aws.version": "v2.4.0",
360+
"infrastructure.aws.manager.featureGates.ClusterTopology": "true",
361+
"infrastructure.aws.manager.featureGates.MachinePool": "true",
362+
"infrastructure.aws.manager.featureGates.EKSEnableIAM": "true",
363363
"infrastructure.aws.manager.featureGates.EKSAllowAddRoles": "true",
364-
"ipam.in-cluster.enabled": "true",
365-
"addon.helm.enabled": "true",
366-
"image.manager.tag": "v0.9.1",
367-
"core.cluster-api.version": "v1.6.2",
368-
"core.cluster-api.manager.featureGates.ClusterTopology": "true",
369-
"core.cluster-api.manager.featureGates.MachinePool": "true",
364+
"ipam.in-cluster.enabled": "true",
365+
"addon.helm.enabled": "true",
366+
"image.manager.tag": "v0.9.1",
367+
"core.cluster-api.version": "v1.6.2",
368+
"core.cluster-api.manager.featureGates.ClusterTopology": "true",
369+
"core.cluster-api.manager.featureGates.MachinePool": "true",
370370
})
371371
Expect(err).ToNot(HaveOccurred())
372372
Expect(manifests).ToNot(BeEmpty())
@@ -391,14 +391,14 @@ var _ = Describe("Create a proper set of manifests when using helm charts", func
391391
})
392392
It("should deploy all providers when manager is defined but another infrastructure spec field is defined", func() {
393393
manifests, err := helmChart.Run(map[string]string{
394-
"core.cluster-api.enabled": "true",
394+
"core.cluster-api.enabled": "true",
395395
"core.cluster-api.manager.featureGates.MachinePool": "true",
396396
"core.cluster-api.manager.featureGates.ClusterTopology": "true",
397-
"controlPlane.kubeadm.enabled": "true",
398-
"bootstrap.kubeadm.enabled": "true",
399-
"infrastructure.docker.enabled": "true",
400-
"ipam.in-cluster.enabled": "true",
401-
"addon.helm.enabled": "true",
397+
"controlPlane.kubeadm.enabled": "true",
398+
"bootstrap.kubeadm.enabled": "true",
399+
"infrastructure.docker.enabled": "true",
400+
"ipam.in-cluster.enabled": "true",
401+
"addon.helm.enabled": "true",
402402
})
403403
Expect(err).ToNot(HaveOccurred())
404404
Expect(manifests).ToNot(BeEmpty())
@@ -408,14 +408,14 @@ var _ = Describe("Create a proper set of manifests when using helm charts", func
408408
})
409409
It("should deploy kubeadm control plane with manager specified", func() {
410410
manifests, err := helmChart.Run(map[string]string{
411-
"core.cluster-api.enabled": "true",
412-
"controlPlane.kubeadm.enabled": "true",
411+
"core.cluster-api.enabled": "true",
412+
"controlPlane.kubeadm.enabled": "true",
413413
"controlPlane.kubeadm.manager.featureGates.MachinePool": "true",
414414
"controlPlane.kubeadm.manager.featureGates.ClusterTopology": "true",
415-
"bootstrap.kubeadm.enabled": "true",
416-
"infrastructure.docker.enabled": "true",
417-
"ipam.in-cluster.enabled": "true",
418-
"addon.helm.enabled": "true",
415+
"bootstrap.kubeadm.enabled": "true",
416+
"infrastructure.docker.enabled": "true",
417+
"ipam.in-cluster.enabled": "true",
418+
"addon.helm.enabled": "true",
419419
})
420420
Expect(err).ToNot(HaveOccurred())
421421
Expect(manifests).ToNot(BeEmpty())

0 commit comments

Comments
 (0)