Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,8 @@ tests:
- ref: keda-e2e-cma-apply-kc
- ref: keda-e2e-setup
- ref: keda-e2e-run
- ref: http-addon-e2e-setup
- ref: http-addon-e2e-run
- ref: tls-scanner-run
- ref: keda-e2e-clean
- ref: keda-e2e-cma-teardown
Expand Down
13 changes: 13 additions & 0 deletions ci-operator/step-registry/http-addon/OWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
approvers:
- Fedosin
- jkyros
- joelsmith
- linkvt
- maxcao13

reviewers:
- Fedosin
- jkyros
- joelsmith
- linkvt
- maxcao13
13 changes: 13 additions & 0 deletions ci-operator/step-registry/http-addon/e2e/OWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
approvers:
- Fedosin
- jkyros
- joelsmith
- linkvt
- maxcao13

reviewers:
- Fedosin
- jkyros
- joelsmith
- linkvt
- maxcao13
13 changes: 13 additions & 0 deletions ci-operator/step-registry/http-addon/e2e/run/OWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
approvers:
- Fedosin
- jkyros
- joelsmith
- linkvt
- maxcao13

reviewers:
- Fedosin
- jkyros
- joelsmith
- linkvt
- maxcao13
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash
set -o errexit
set -o nounset
set -o pipefail

make e2e-test-openshift-ci
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"path": "http-addon/e2e/run/http-addon-e2e-run-ref.yaml",
"owners": {
"approvers": [
"Fedosin",
"jkyros",
"joelsmith",
"linkvt",
"maxcao13"
],
"reviewers": [
"Fedosin",
"jkyros",
"joelsmith",
"linkvt",
"maxcao13"
]
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
ref:
as: http-addon-e2e-run
cli: latest
commands: http-addon-e2e-run-commands.sh
from: custom-metrics-autoscaler-http-add-on-tests
resources:
requests:
cpu: 100m
dependencies:
- env: IMAGE_GRPC_ECHO
name: custom-metrics-autoscaler-http-add-on-grpc-echo
documentation: |-
Runs the HTTP Add-on e2e OpenShift test suite from the prebuilt test
image, against a previously installed HTTP Add-on.
13 changes: 13 additions & 0 deletions ci-operator/step-registry/http-addon/e2e/setup/OWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
approvers:
- Fedosin
- jkyros
- joelsmith
- linkvt
- maxcao13

reviewers:
- Fedosin
- jkyros
- joelsmith
- linkvt
- maxcao13
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash
set -o errexit
set -o nounset
set -o pipefail

make e2e-deps-external
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"path": "http-addon/e2e/setup/http-addon-e2e-setup-ref.yaml",
"owners": {
"approvers": [
"Fedosin",
"jkyros",
"joelsmith",
"linkvt",
"maxcao13"
],
"reviewers": [
"Fedosin",
"jkyros",
"joelsmith",
"linkvt",
"maxcao13"
]
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
ref:
as: http-addon-e2e-setup
cli: latest
commands: http-addon-e2e-setup-commands.sh
from: custom-metrics-autoscaler-http-add-on-tests
resources:
requests:
cpu: 100m
documentation: |-
Installs the HTTP Add-on e2e suite's external test dependencies
(e.g. cert-manager) on an OpenShift cluster.
KEDA and the HTTP Add-on itself are not installed by this step as
both should already be installed, e.g. by the CMA operator via the
shared KedaController CR.