Skip to content
Draft
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
14 changes: 14 additions & 0 deletions .github/workflows/rabbitmq.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,20 @@ jobs:
# --value="${{ steps.create_bucket.outputs.bucket_name }}"
# == End ======= Specific steps for S3 =======

# == Start ======= Specific steps for Allure report =======
- name: Add s3 backet for Allure report
if: matrix.test.allure == true
run: >-
python qubership-test-pipelines/scripts/update_yaml.py
--file='qubership-test-pipelines/${{ matrix.test.template }}'
--path='tests/atpReport/atpStorage/username'
--value='${{secrets.AWS_S3_ACCESS_KEY_ID}}'
&& python qubership-test-pipelines/scripts/update_yaml.py
--file='qubership-test-pipelines/${{ matrix.test.template }}'
--path='tests/atpReport/atpStorage/password'
--value='${{secrets.AWS_S3_ACCESS_KEY_SECRET}}'
# == End ======= Specific steps for Allure report =======

- name: Print install deployment parameters
run: cat qubership-test-pipelines/${{ matrix.test.template }}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,12 @@ tests:
# delete NOTsome_pods_are_not_working_alert after fix
waitTestResultOnJob: true
prometheusUrl: http://vmsingle-k8s.monitoring:8429
atpReport:
enabled: true
atpStorage:
provider: aws
serverUrl: s3.amazonaws.com
bucket: qstp-results
region: us-east-1
username: ""
password: ""
5 changes: 3 additions & 2 deletions workflow-config/rabbitmq_nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,10 @@ jobs:
tls: true
artifact_name: Clean_CURRENT_S3_DRD_TLS

- name: Clean [${service_branch}] with full at
- name: Clean [${service_branch}] with Monitoring and Allure
install_version: ${service_branch}
template: templates/rabbitmq-service/rabbitmq_clean_sc_full_at.yml
template: templates/rabbitmq-service/rabbitmq_clean_sc_monitoring_allure.yml
sequence: install
artifact_name: Clean_CURRENT_full_at
monitoring: true
allure: true
Loading