This repository has been archived by the owner on Oct 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add calico e2e test to aws clusterclass suite
Signed-off-by: F. Gold <fgold@vmware.com>
- Loading branch information
1 parent
369cc66
commit 5c7fbf9
Showing
3 changed files
with
28 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// Copyright 2021 VMware, Inc. All Rights Reserved. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
// nolint:typecheck,nolintlint | ||
package aws_cc | ||
|
||
import ( | ||
"context" | ||
|
||
. "github.com/onsi/ginkgo" | ||
|
||
. "github.com/vmware-tanzu/tanzu-framework/pkg/v1/tkg/test/tkgctl/shared" | ||
) | ||
|
||
var _ = Describe("Functional tests for aws (clusterclass) - Calico", func() { | ||
E2ECommonSpec(context.TODO(), func() E2ECommonSpecInput { | ||
return E2ECommonSpecInput{ | ||
E2EConfig: e2eConfig, | ||
ArtifactsFolder: artifactsFolder, | ||
Cni: "calico", | ||
Plan: "dev", | ||
Namespace: "tkg-system", | ||
OtherConfigs: map[string]string{"clusterclass": "true"}, | ||
} | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters