Skip to content

Commit 61e89e4

Browse files
committed
test: Add new management cluster environment
1 parent d928879 commit 61e89e4

File tree

9 files changed

+732
-10
lines changed

9 files changed

+732
-10
lines changed

.github/workflows/e2e-self-hosted.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,8 @@ env:
1515
VSPHERE_USERNAME: ${{ secrets.VSPHERE_USERNAME }}
1616
VSPHERE_PASSWORD: ${{ secrets.VSPHERE_PASSWORD }}
1717
CONTROL_PLANE_ENDPOINT_IP: ${{ secrets.CONTROL_PLANE_ENDPOINT_IP }}
18-
NGROK_AUTHTOKEN: ${{ secrets.NGROK_AUTHTOKEN }}
19-
NGROK_API_KEY: ${{ secrets.NGROK_API_KEY }}
2018
RANCHER_HOSTNAME: ${{ secrets.NGROK_DOMAIN }}
21-
MANAGEMENT_CLUSTER_ENVIRONMENT: "kind"
19+
MANAGEMENT_CLUSTER_ENVIRONMENT: "internal-kind"
2220
CPI_IMAGE_K8S_VERSION: v1.31.0
2321
GINKGO_LABEL_FILTER: "local"
2422
TAG: v0.0.1

test/e2e/const.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,9 @@ var (
6969
//go:embed data/rancher/nginx-ingress.yaml
7070
NginxIngress []byte
7171

72+
//go:embed data/rancher/ingress-nginx-lb.yaml
73+
NginxIngressLoadBalancer []byte
74+
7275
//go:embed data/chartmuseum/deployment.yaml
7376
ChartMuseum []byte
7477

@@ -140,6 +143,7 @@ const (
140143
ManagementClusterEnvironmentEKS ManagementClusterEnvironmentType = "eks"
141144
ManagementClusterEnvironmentIsolatedKind ManagementClusterEnvironmentType = "isolated-kind"
142145
ManagementClusterEnvironmentKind ManagementClusterEnvironmentType = "kind"
146+
ManagementClusterEnvironmentInternalKind ManagementClusterEnvironmentType = "internal-kind"
143147
)
144148

145149
const (

0 commit comments

Comments
 (0)