Skip to content
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

add 4.18 regress job #60739

Merged
merged 2 commits into from
Jan 27, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
add ingress scale and optional tunning test case
  • Loading branch information
qiliRedHat committed Jan 23, 2025
commit 10adb96bf31b6c01ae476e429e307ddc61f9be2e
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,25 @@ tests:
test:
- chain: openshift-svt-regression-one
workflow: openshift-qe-installer-aws
- always_run: false
as: ingress-scale-test
steps:
allow_skip_on_success: true
cluster_profile: aws-perfscale-qe
env:
BASE_DOMAIN: qe.devcluster.openshift.com
COMPUTE_NODE_REPLICAS: "9"
COMPUTE_NODE_TYPE: m5.2xlarge
IF_MOVE_INGRESS: "false"
IF_MOVE_MONITORING: "false"
IF_MOVE_REGISTRY: "false"
OPENSHIFT_INFRA_NODE_INSTANCE_TYPE: c5.4xlarge
SCRIPT: perfscale_regression_ci/scripts/scalability/ingress-scale/ingress-scale.sh
SCRIPT_1: perfscale_regression_ci/scripts/scalability/ingress-scale/ingress-tunning-options.sh
SET_ENV_BY_PLATFORM: custom
test:
- chain: openshift-svt-regression-one
workflow: openshift-qe-installer-aws
zz_generated_metadata:
branch: master
org: openshift
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,83 @@ presubmits:
secret:
secretName: result-aggregator
trigger: (?m)^/test( | .* )(regression-aws-4.17-nightly-x86-regression-scale-loaded-projects|remaining-required),?($|\s.*)
- agent: kubernetes
always_run: false
branches:
- ^master$
- ^master-
cluster: build01
context: ci/prow/regression-aws-4.18-nightly-x86-ingress-scale-test
decorate: true
decoration_config:
skip_cloning: true
labels:
ci-operator.openshift.io/cloud: aws
ci-operator.openshift.io/cloud-cluster-profile: aws-perfscale-qe
ci-operator.openshift.io/variant: regression-aws-4.18-nightly-x86
ci.openshift.io/generator: prowgen
job-release: "4.18"
pj-rehearse.openshift.io/can-be-rehearsed: "true"
name: pull-ci-openshift-svt-master-regression-aws-4.18-nightly-x86-ingress-scale-test
rerun_command: /test regression-aws-4.18-nightly-x86-ingress-scale-test
spec:
containers:
- args:
- --gcs-upload-secret=/secrets/gcs/service-account.json
- --image-import-pull-secret=/etc/pull-secret/.dockerconfigjson
- --lease-server-credentials-file=/etc/boskos/credentials
- --report-credentials-file=/etc/report/credentials
- --secret-dir=/secrets/ci-pull-credentials
- --target=ingress-scale-test
- --variant=regression-aws-4.18-nightly-x86
command:
- ci-operator
image: ci-operator:latest
imagePullPolicy: Always
name: ""
resources:
requests:
cpu: 10m
volumeMounts:
- mountPath: /etc/boskos
name: boskos
readOnly: true
- mountPath: /secrets/ci-pull-credentials
name: ci-pull-credentials
readOnly: true
- mountPath: /secrets/gcs
name: gcs-credentials
readOnly: true
- mountPath: /secrets/manifest-tool
name: manifest-tool-local-pusher
readOnly: true
- mountPath: /etc/pull-secret
name: pull-secret
readOnly: true
- mountPath: /etc/report
name: result-aggregator
readOnly: true
serviceAccountName: ci-operator
volumes:
- name: boskos
secret:
items:
- key: credentials
path: credentials
secretName: boskos-credentials
- name: ci-pull-credentials
secret:
secretName: ci-pull-credentials
- name: manifest-tool-local-pusher
secret:
secretName: manifest-tool-local-pusher
- name: pull-secret
secret:
secretName: registry-pull-credentials
- name: result-aggregator
secret:
secretName: result-aggregator
trigger: (?m)^/test( | .* )(regression-aws-4.18-nightly-x86-ingress-scale-test|remaining-required),?($|\s.*)
- agent: kubernetes
always_run: false
branches:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ ref:
tag: latest
cli: latest
commands: openshift-svt-regression-one-commands.sh
credentials:
- namespace: test-credentials # this entry injects the custom credential
name: ocp-qe-perfscale-es
mount_path: /secret
env:
- name: PARAMETERS_1
default: ""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ oc config view
oc projects
python --version

ES_PASSWORD=$(cat "/secret/password")
export ES_PASSWORD
ES_USERNAME=$(cat "/secret/username")
export ES_USERNAME

# If running from the one folder, will reset SCRIPT and PARAMETERS variables
export SCRIPT=${SCRIPT_1:-$SCRIPT}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ ref:
tag: latest
cli: latest
commands: openshift-svt-regression-commands.sh
credentials:
- namespace: test-credentials # this entry injects the custom credential
name: ocp-qe-perfscale-es
mount_path: /secret
env:
- name: PARAMETERS
default: ""
Expand Down