Skip to content

Commit 00a76fd

Browse files
committed
refactor: rename example files
1 parent a4d29a1 commit 00a76fd

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

hack/examples/sync.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ for provider in "aws" "docker" "nutanix"; do
3838
done
3939

4040
for provider in "nutanix"; do
41-
for modifier in "failuredomain"; do
41+
for modifier in "failuredomains"; do
4242
for cni in "cilium"; do
4343
for strategy in "helm-addon" "crs"; do
4444
kustomize build --load-restrictor LoadRestrictionsNone \
4545
./hack/examples/overlays/clusters/"${provider}"-with-"${modifier}"/"${cni}"/"${strategy}" \
46-
>"${EXAMPLE_CLUSTERS_DIR}/${provider}-cluster-${modifier}-${cni}-${strategy}.yaml"
46+
>"${EXAMPLE_CLUSTERS_DIR}/${provider}-cluster-with-${modifier}-${cni}-${strategy}.yaml"
4747
done
4848
done
4949
done

test/e2e/config/caren.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,10 @@ providers:
110110
targetName: cluster-template-topology-cilium-helm-addon.yaml
111111
- sourcePath: "../../../examples/capi-quick-start/nutanix-cluster-cilium-crs.yaml"
112112
targetName: cluster-template-topology-cilium-crs.yaml
113-
- sourcePath: "../../../examples/capi-quick-start/nutanix-cluster-failuredomain-cilium-helm-addon.yaml"
114-
targetName: cluster-template-topology-failuredomain-cilium-helm-addon.yaml
115-
- sourcePath: "../../../examples/capi-quick-start/nutanix-cluster-failuredomain-cilium-crs.yaml"
116-
targetName: cluster-template-topology-failuredomain-cilium-crs.yaml
113+
- sourcePath: "../../../examples/capi-quick-start/nutanix-cluster-with-failuredomains-cilium-helm-addon.yaml"
114+
targetName: cluster-template-topology-with-failuredomains-cilium-helm-addon.yaml
115+
- sourcePath: "../../../examples/capi-quick-start/nutanix-cluster-with-failuredomains-cilium-crs.yaml"
116+
targetName: cluster-template-topology-with-failuredomains-cilium-crs.yaml
117117
- sourcePath: "../../../examples/capi-quick-start/nutanix-cluster-calico-helm-addon.yaml"
118118
targetName: cluster-template-topology-calico-helm-addon.yaml
119119
- sourcePath: "../../../examples/capi-quick-start/nutanix-cluster-calico-crs.yaml"

test/e2e/quick_start_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ var _ = Describe("Quick start", func() {
6363
if provider == "Nutanix" && cniProvider == "Cilium" {
6464
flavors = append(
6565
flavors,
66-
fmt.Sprintf("topology-failuredomain-%s-%s", strings.ToLower(cniProvider), strategy),
66+
fmt.Sprintf("topology-with-failuredomains-%s-%s", strings.ToLower(cniProvider), strategy),
6767
)
6868
}
6969
for _, flavor := range flavors {

0 commit comments

Comments
 (0)