-
Notifications
You must be signed in to change notification settings - Fork 154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(e2e): [Test automation] Verify Topology is a supported plugin and E2E scenario follow-up #2191
Open
teknaS47
wants to merge
32
commits into
redhat-developer:main
Choose a base branch
from
teknaS47:topology-plugin-test
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+155
−16
Open
chore(e2e): [Test automation] Verify Topology is a supported plugin and E2E scenario follow-up #2191
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
18a0a85
[Test automation] Verify Topology is a supported plugin and E2E scena…
teknaS47 a759ab8
Namespace removed
teknaS47 63626d0
Merge branch 'main' into topology-plugin-test
teknaS47 d8411a2
[Test automation] Verify Topology is a supported plugin and E2E scena…
teknaS47 58906fd
Namespace removed
teknaS47 053f817
Merge branch 'topology-plugin-test' of https://github.com/teknaS47/ba…
teknaS47 2a9bba4
[Test automation] Verify Topology is a supported plugin and E2E scena…
teknaS47 fa26971
Namespace removed
teknaS47 7fc199a
Merge branch 'topology-plugin-test' of https://github.com/teknaS47/ba…
teknaS47 ec48cc0
Merge branch 'main' into topology-plugin-test
teknaS47 038f308
Merge branch 'main' into topology-plugin-test
teknaS47 4512654
Merge branch 'main' into topology-plugin-test
teknaS47 2ea02bb
Merge branch 'main' into topology-plugin-test
teknaS47 ed11673
Merge branch 'main' into topology-plugin-test
teknaS47 7f84c2a
Sleep test
teknaS47 5f02079
Merge branch 'main' into topology-plugin-test
teknaS47 d065abc
Merge branch 'main' into topology-plugin-test
teknaS47 05eadf8
TLS issue
teknaS47 f9833f4
Merge branch 'topology-plugin-test' of https://github.com/teknaS47/ba…
teknaS47 c8f0562
Merge branch 'main' into topology-plugin-test
teknaS47 f4c1164
pipeline config change
teknaS47 f0e8bc7
Merge branch 'topology-plugin-test' of https://github.com/teknaS47/ba…
teknaS47 bb9e27e
cleanup
teknaS47 25e9dc3
cleanup
teknaS47 d18a9a5
cleanup
teknaS47 cb6fa88
Merge branch 'main' into topology-plugin-test
teknaS47 e851de1
1.4 changes
teknaS47 cd03a29
Merge branch 'topology-plugin-test' of https://github.com/teknaS47/ba…
teknaS47 256413a
fix
teknaS47 45483f8
Merge branch 'main' into topology-plugin-test
teknaS47 d4671ef
Merge branch 'main' into topology-plugin-test
teknaS47 7cc57e0
Merge branch 'main' into topology-plugin-test
teknaS47 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,87 @@ | ||
--- | ||
apiVersion: tekton.dev/v1beta1 | ||
kind: Pipeline | ||
metadata: | ||
name: topology-test | ||
labels: | ||
app.kubernetes.io/instance: topology-test | ||
app.kubernetes.io/name: topology-test | ||
backstage.io/kubernetes-id: developer-hub | ||
spec: | ||
tasks: | ||
- name: deploy | ||
taskSpec: | ||
steps: | ||
- name: oc | ||
image: 'quay.io/openshift/origin-cli:latest' | ||
script: | | ||
#!/bin/sh | ||
oc "$@" | ||
--- | ||
apiVersion: tekton.dev/v1beta1 | ||
kind: PipelineRun | ||
metadata: | ||
name: topology-test-run | ||
labels: | ||
app: topology-test | ||
backstage.io/kubernetes-id: developer-hub | ||
spec: | ||
pipelineRef: | ||
name: topology-test | ||
--- | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: topology-test | ||
labels: | ||
app.kubernetes.io/instance: topology-test | ||
app.kubernetes.io/name: topology-test | ||
backstage.io/kubernetes-id: developer-hub | ||
annotations: | ||
app.openshift.io/vcs-uri: "https://github.com/janus-idp/backstage-showcase" | ||
spec: | ||
replicas: 1 | ||
selector: | ||
matchLabels: | ||
app: topology-test | ||
template: | ||
metadata: | ||
labels: | ||
app: topology-test | ||
backstage.io/kubernetes-id: developer-hub | ||
spec: | ||
containers: | ||
- name: topology | ||
image: nginxinc/nginx-unprivileged:stable-alpine | ||
ports: | ||
- containerPort: 8080 | ||
--- | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: topology-test-service | ||
labels: | ||
app: topology-test | ||
backstage.io/kubernetes-id: developer-hub | ||
spec: | ||
selector: | ||
app: topology-test | ||
ports: | ||
- protocol: TCP | ||
port: 8080 | ||
targetPort: 8080 | ||
--- | ||
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@teknaS47 we shouldn't add page specific methods to UIhelper. can you please move to respective
e2e-tests/playwright/support/pages/
?