-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(e2e): [e2e] Fix and Enable topoloy test case on AKS and GKE (#2215
) * [Test automation] Verify Topology is a supported plugin and E2E scenario follow-up * Namespace removed * [Test automation] Verify Topology is a supported plugin and E2E scenario follow-up * Namespace removed * [Test automation] Verify Topology is a supported plugin and E2E scenario follow-up * Namespace removed * Sleep test * TLS issue * pipeline config change * cleanup * cleanup * cleanup * 1.4 changes * fix * Requested changes * Requested changes * Adding Ingress resource for k8s * [Test automation] Verify Topology is a supported plugin and E2E scenario follow-up * [Test automation] Verify Topology is a supported plugin and E2E scenario follow-up * Sleep test * TLS issue * cleanup * cleanup * Requested changes * Adding Ingress resource for k8s * Adding Ingress test * Fixing Ingress test * Fixing Ingress test * Testing on AKS * Testing on AKS fix * Testing on AKS * Testing on AKS fix * Removing AKS test
- Loading branch information
Showing
6 changed files
with
57 additions
and
28 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
.ibm/pipelines/resources/topology_test/topology-test-ingress.yaml
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,19 @@ | ||
apiVersion: networking.k8s.io/v1 | ||
kind: Ingress | ||
metadata: | ||
name: topology-test-route | ||
labels: | ||
app: topology-test | ||
backstage.io/kubernetes-id: developer-hub | ||
spec: | ||
rules: | ||
- host: topology-test-route | ||
http: | ||
paths: | ||
- path: / | ||
pathType: Prefix | ||
backend: | ||
service: | ||
name: topology-test-service | ||
port: | ||
number: 8080 |
14 changes: 14 additions & 0 deletions
14
.ibm/pipelines/resources/topology_test/topology-test-route.yaml
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,14 @@ | ||
apiVersion: route.openshift.io/v1 | ||
kind: Route | ||
metadata: | ||
name: topology-test-route | ||
labels: | ||
app: topology-test | ||
backstage.io/kubernetes-id: developer-hub | ||
spec: | ||
to: | ||
kind: Service | ||
name: topology-test-service | ||
port: | ||
targetPort: 8080 | ||
wildcardPolicy: None |
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
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