Skip to content

Commit

Permalink
Disable Prometheus while VM verifications (#901)
Browse files Browse the repository at this point in the history
  • Loading branch information
ebattat authored Sep 26, 2024
1 parent a3091a4 commit fa2aaab
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ pipeline {
IBM_SECRET_ACCESS_KEY = credentials('perfci_ibm_secret_access_key')
IBM_BUCKET = credentials('perfci_ibm_bucket')
IBM_KEY = credentials('perfci_ibm_key')
GOOGLE_DRIVE_PATH = credentials('perfci_google_drive_path')
GOOGLE_DRIVE_CREDENTIALS = credentials('perfci_google_drive_credentials')
GOOGLE_DRIVE_TOKEN = credentials('perfci_google_drive_token')
GOOGLE_DRIVE_SHARED_DRIVE_ID = credentials('perfci_google_drive_shared_drive_id')
RUN_ARTIFACTS_URL = credentials('perfci_run_artifacts_url')
REDIS = credentials('perfci_redis')
WORKER_DISK_IDS = credentials('perfci_worker_disk_ids')
Expand Down Expand Up @@ -191,6 +195,10 @@ END
-e IBM_SECRET_ACCESS_KEY='${IBM_SECRET_ACCESS_KEY}' \
-e IBM_BUCKET='${IBM_BUCKET}' \
-e IBM_KEY='${IBM_KEY}' \
-e GOOGLE_DRIVE_PATH='${GOOGLE_DRIVE_PATH}' \
-e GOOGLE_DRIVE_CREDENTIALS='${GOOGLE_DRIVE_CREDENTIALS}' \
-e GOOGLE_DRIVE_TOKEN='${GOOGLE_DRIVE_TOKEN}' \
-e GOOGLE_DRIVE_SHARED_DRIVE_ID='${GOOGLE_DRIVE_SHARED_DRIVE_ID}' \
-e RUN_ARTIFACTS_URL='${RUN_ARTIFACTS_URL}' \
-e BUILD_VERSION='${build_version}' \
-e RUN_TYPE='${RUN_TYPE}' \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ pipeline {
CONTAINER_KUBECONFIG_PATH = '/home/jenkins/.kube/config'
WORKER_DISK_PREFIX = 'wwn-0x'
SAVE_ARTIFACTS_LOCAL = 'False'
ENABLE_PROMETHEUS_SNAPSHOT = 'True'
ENABLE_PROMETHEUS_SNAPSHOT = 'False'
DELETE_ALL = 'False' // Not delete the running Windows11 VMs
VERIFICATION_ONLY = 'True'
RUN_TYPE = 'perf_ci'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ pipeline {
IBM_SECRET_ACCESS_KEY = credentials('perfci_ibm_secret_access_key')
IBM_BUCKET = credentials('perfci_ibm_bucket')
IBM_KEY = credentials('perfci_ibm_key')
GOOGLE_DRIVE_PATH = credentials('perfci_google_drive_path')
GOOGLE_DRIVE_CREDENTIALS = credentials('perfci_google_drive_credentials')
GOOGLE_DRIVE_TOKEN = credentials('perfci_google_drive_token')
GOOGLE_DRIVE_SHARED_DRIVE_ID = credentials('perfci_google_drive_shared_drive_id')
RUN_ARTIFACTS_URL = credentials('perfci_run_artifacts_url')
REDIS = credentials('perfci_redis')
WORKER_DISK_IDS = credentials('perfci_worker_disk_ids')
Expand All @@ -38,7 +42,7 @@ pipeline {
CONTAINER_KUBECONFIG_PATH = '/home/jenkins/.kube/config'
WORKER_DISK_PREFIX = 'wwn-0x'
SAVE_ARTIFACTS_LOCAL = 'False'
ENABLE_PROMETHEUS_SNAPSHOT = 'True'
ENABLE_PROMETHEUS_SNAPSHOT = 'False'
DELETE_ALL = 'False' // Not delete the running Windows11 VMs
VERIFICATION_ONLY = 'True'
RUN_TYPE = 'test_ci'
Expand Down Expand Up @@ -167,6 +171,10 @@ END
-e IBM_SECRET_ACCESS_KEY='${IBM_SECRET_ACCESS_KEY}' \
-e IBM_BUCKET='${IBM_BUCKET}' \
-e IBM_KEY='${IBM_KEY}' \
-e GOOGLE_DRIVE_PATH='${GOOGLE_DRIVE_PATH}' \
-e GOOGLE_DRIVE_CREDENTIALS='${GOOGLE_DRIVE_CREDENTIALS}' \
-e GOOGLE_DRIVE_TOKEN='${GOOGLE_DRIVE_TOKEN}' \
-e GOOGLE_DRIVE_SHARED_DRIVE_ID='${GOOGLE_DRIVE_SHARED_DRIVE_ID}' \
-e RUN_ARTIFACTS_URL='${RUN_ARTIFACTS_URL}' \
-e BUILD_VERSION='${build_version}' \
-e RUN_TYPE='${RUN_TYPE}' \
Expand Down

0 comments on commit fa2aaab

Please sign in to comment.