mirror of https://github.com/milvus-io/milvus.git
Use local storage & update monitor interval (#15427)
Signed-off-by: Jenny Li <jing.li@zilliz.com>pull/15163/head
parent
3a105cfedf
commit
8c50d2cfe4
|
@ -7,7 +7,7 @@ String cron_string = BRANCH_NAME == "master" ? "50 22 * * * " : ""
|
|||
|
||||
int total_timeout_minutes = 660
|
||||
def imageTag=''
|
||||
def chart_version='3.0.0'
|
||||
def chart_version='3.0.1'
|
||||
pipeline {
|
||||
triggers {
|
||||
cron """${cron_timezone}
|
||||
|
@ -139,6 +139,7 @@ pipeline {
|
|||
--set indexNode.replicas=2 \
|
||||
--set dataNode.replicas=2 \
|
||||
--version ${chart_version} \
|
||||
-f values/nightly.yaml \
|
||||
--set metrics.serviceMonitor.enabled=true"
|
||||
"""
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@ int total_timeout_minutes = 120
|
|||
int e2e_timeout_seconds = 70 * 60
|
||||
def imageTag=''
|
||||
int case_timeout_seconds = 10 * 60
|
||||
def chart_version='3.0.0'
|
||||
def chart_version='3.0.1'
|
||||
pipeline {
|
||||
options {
|
||||
timestamps()
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
metrics:
|
||||
serviceMonitor:
|
||||
enabled: true
|
||||
interval: "5s"
|
||||
scrapeTimeout: "5s"
|
||||
pulsar:
|
||||
bookkeeper:
|
||||
volumes:
|
||||
ledgers:
|
||||
existingStorageClassName: local-path
|
||||
zookeeper:
|
||||
volumes:
|
||||
data:
|
||||
existingStorageClassName: local-path
|
|
@ -1,4 +1,8 @@
|
|||
|
||||
metrics:
|
||||
serviceMonitor:
|
||||
enabled: true
|
||||
interval: "5s"
|
||||
scrapeTimeout: "5s"
|
||||
proxy:
|
||||
resources:
|
||||
requests:
|
||||
|
|
Loading…
Reference in New Issue